Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <stdio.h>
21 :
22 : #include <vcl/svapp.hxx>
23 : #include <svtools/colorcfg.hxx>
24 : #include <svl/eitem.hxx>
25 : #include <svl/intitem.hxx>
26 : #include <svl/itempool.hxx>
27 :
28 : #include <rtl/textenc.h>
29 : #include <svx/ucsubset.hxx>
30 : #include <sfx2/objsh.hxx>
31 : #include <vcl/msgbox.hxx>
32 : #include <vcl/settings.hxx>
33 : #include <svl/stritem.hxx>
34 :
35 : #include <cuires.hrc>
36 : #include <dialmgr.hxx>
37 : #include "cuicharmap.hxx"
38 : #include <sfx2/request.hxx>
39 : #include <sfx2/sfxsids.hrc>
40 : #include <sfx2/app.hxx>
41 : #include <editeng/fontitem.hxx>
42 : #include "macroass.hxx"
43 :
44 : // class SvxCharacterMap =================================================
45 :
46 0 : SvxCharacterMap::SvxCharacterMap( vcl::Window* pParent, bool bOne_, const SfxItemSet* pSet )
47 : : SfxModalDialog(pParent, "SpecialCharactersDialog", "cui/ui/specialcharacters.ui")
48 : , bOne( bOne_ )
49 0 : , pSubsetMap( NULL )
50 : {
51 0 : get(m_pShowSet, "showcharset");
52 0 : get(m_pShowChar, "showchar");
53 0 : m_pShowChar->SetCentered(true);
54 0 : get(m_pShowText, "showtext");
55 0 : m_pShowText->SetMaxTextLen(CHARMAP_MAXLEN);
56 0 : get(m_pOKBtn, "ok");
57 0 : get(m_pFontText, "fontft");
58 0 : get(m_pFontLB, "fontlb");
59 0 : m_pFontLB->SetStyle(m_pFontLB->GetStyle() | WB_SORT);
60 0 : get(m_pSubsetText, "subsetft");
61 0 : get(m_pSubsetLB, "subsetlb");
62 : //lock the size request of this widget to the width of all possible entries
63 0 : fillAllSubsets(*m_pSubsetLB);
64 0 : m_pSubsetLB->set_width_request(m_pSubsetLB->get_preferred_size().Width());
65 0 : get(m_pCharCodeText, "charcodeft");
66 : //lock the size request of this widget to the width of the original .ui string
67 0 : m_pCharCodeText->set_width_request(m_pCharCodeText->get_preferred_size().Width());
68 0 : get(m_pSymbolText, "symboltext");
69 :
70 0 : SFX_ITEMSET_ARG( pSet, pItem, SfxBoolItem, FN_PARAM_1, false );
71 0 : if ( pItem )
72 0 : bOne = pItem->GetValue();
73 :
74 0 : init();
75 :
76 0 : SFX_ITEMSET_ARG( pSet, pCharItem, SfxInt32Item, SID_ATTR_CHAR, false );
77 0 : if ( pCharItem )
78 0 : SetChar( pCharItem->GetValue() );
79 :
80 0 : SFX_ITEMSET_ARG( pSet, pDisableItem, SfxBoolItem, FN_PARAM_2, false );
81 0 : if ( pDisableItem && pDisableItem->GetValue() )
82 0 : DisableFontSelection();
83 :
84 0 : SFX_ITEMSET_ARG( pSet, pFontItem, SvxFontItem, SID_ATTR_CHAR_FONT, false );
85 0 : SFX_ITEMSET_ARG( pSet, pFontNameItem, SfxStringItem, SID_FONT_NAME, false );
86 0 : if ( pFontItem )
87 : {
88 0 : vcl::Font aTmpFont( pFontItem->GetFamilyName(), pFontItem->GetStyleName(), GetCharFont().GetSize() );
89 0 : aTmpFont.SetCharSet( pFontItem->GetCharSet() );
90 0 : aTmpFont.SetPitch( pFontItem->GetPitch() );
91 0 : SetCharFont( aTmpFont );
92 : }
93 0 : else if ( pFontNameItem )
94 : {
95 0 : vcl::Font aTmpFont( GetCharFont() );
96 0 : aTmpFont.SetName( pFontNameItem->GetValue() );
97 0 : SetCharFont( aTmpFont );
98 : }
99 :
100 0 : CreateOutputItemSet( pSet ? *pSet->GetPool() : SfxGetpApp()->GetPool() );
101 0 : }
102 :
103 :
104 :
105 0 : SvxCharacterMap::~SvxCharacterMap()
106 : {
107 0 : }
108 :
109 :
110 :
111 :
112 :
113 :
114 0 : void SvxCharacterMap::SetChar( sal_UCS4 c )
115 : {
116 0 : m_pShowSet->SelectCharacter( c );
117 0 : }
118 :
119 :
120 :
121 0 : sal_UCS4 SvxCharacterMap::GetChar() const
122 : {
123 0 : return m_pShowSet->GetSelectCharacter();
124 : }
125 :
126 :
127 :
128 0 : OUString SvxCharacterMap::GetCharacters() const
129 : {
130 0 : return m_pShowText->GetText();
131 : }
132 :
133 :
134 :
135 :
136 0 : void SvxCharacterMap::DisableFontSelection()
137 : {
138 0 : m_pFontText->Disable();
139 0 : m_pFontLB->Disable();
140 0 : }
141 :
142 0 : short SvxCharacterMap::Execute()
143 : {
144 0 : short nResult = SfxModalDialog::Execute();
145 0 : if ( nResult == RET_OK )
146 : {
147 0 : SfxItemSet* pSet = GetItemSet();
148 0 : if ( pSet )
149 : {
150 0 : const SfxItemPool* pPool = pSet->GetPool();
151 0 : const vcl::Font& rFont( GetCharFont() );
152 0 : pSet->Put( SfxStringItem( pPool->GetWhich(SID_CHARMAP), GetCharacters() ) );
153 0 : pSet->Put( SvxFontItem( rFont.GetFamily(), rFont.GetName(),
154 0 : rFont.GetStyleName(), rFont.GetPitch(), rFont.GetCharSet(), pPool->GetWhich(SID_ATTR_CHAR_FONT) ) );
155 0 : pSet->Put( SfxStringItem( pPool->GetWhich(SID_FONT_NAME), rFont.GetName() ) );
156 0 : pSet->Put( SfxInt32Item( pPool->GetWhich(SID_ATTR_CHAR), GetChar() ) );
157 : }
158 : }
159 :
160 0 : return nResult;
161 : }
162 :
163 :
164 : // class SvxShowText =====================================================
165 :
166 0 : SvxShowText::SvxShowText(vcl::Window* pParent, bool bCenter)
167 : : Control(pParent)
168 : , mnY(0)
169 0 : , mbCenter(bCenter)
170 0 : {}
171 :
172 0 : extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeSvxShowText(vcl::Window *pParent, VclBuilder::stringmap &)
173 : {
174 0 : return new SvxShowText(pParent);
175 : }
176 :
177 :
178 :
179 0 : void SvxShowText::Paint( const Rectangle& )
180 : {
181 0 : Color aTextCol = GetTextColor();
182 :
183 0 : const StyleSettings& rStyleSettings = Application::GetSettings().GetStyleSettings();
184 0 : const Color aWindowTextColor( rStyleSettings.GetDialogTextColor() );
185 0 : SetTextColor( aWindowTextColor );
186 :
187 0 : const OUString aText = GetText();
188 0 : const Size aSize = GetOutputSizePixel();
189 :
190 0 : long nAvailWidth = aSize.Width();
191 0 : long nWinHeight = GetOutputSizePixel().Height();
192 :
193 0 : bool bGotBoundary = true;
194 0 : bool bShrankFont = false;
195 0 : vcl::Font aOrigFont(GetFont());
196 0 : Size aFontSize(aOrigFont.GetSize());
197 0 : Rectangle aBoundRect;
198 :
199 0 : for (long nFontHeight = aFontSize.Height(); nFontHeight > 0; nFontHeight -= 5)
200 : {
201 0 : if( !GetTextBoundRect( aBoundRect, aText ) || aBoundRect.IsEmpty() )
202 : {
203 0 : bGotBoundary = false;
204 0 : break;
205 : }
206 0 : if (!mbCenter)
207 0 : break;
208 : //only shrink in the single glyph large view mode
209 0 : long nTextWidth = aBoundRect.GetWidth();
210 0 : if (nAvailWidth > nTextWidth)
211 0 : break;
212 0 : vcl::Font aFont(aOrigFont);
213 0 : aFontSize.Height() = nFontHeight;
214 0 : aFont.SetSize(aFontSize);
215 0 : Control::SetFont(aFont);
216 0 : mnY = ( nWinHeight - GetTextHeight() ) / 2;
217 0 : bShrankFont = true;
218 0 : }
219 :
220 0 : Point aPoint( 2, mnY );
221 : // adjust position using ink boundary if possible
222 0 : if( !bGotBoundary )
223 0 : aPoint.X() = (aSize.Width() - GetTextWidth( aText )) / 2;
224 : else
225 : {
226 : // adjust position before it gets out of bounds
227 0 : aBoundRect += aPoint;
228 :
229 : // shift back vertically if needed
230 0 : int nYLDelta = aBoundRect.Top();
231 0 : int nYHDelta = aSize.Height() - aBoundRect.Bottom();
232 0 : if( nYLDelta <= 0 )
233 0 : aPoint.Y() -= nYLDelta - 1;
234 0 : else if( nYHDelta <= 0 )
235 0 : aPoint.Y() += nYHDelta - 1;
236 :
237 0 : if( mbCenter )
238 : {
239 : // move glyph to middle of cell
240 0 : aPoint.X() = -aBoundRect.Left()
241 0 : + (aSize.Width() - aBoundRect.GetWidth()) / 2;
242 : }
243 : else
244 : {
245 : // shift back horizontally if needed
246 0 : int nXLDelta = aBoundRect.Left();
247 0 : int nXHDelta = aSize.Width() - aBoundRect.Right();
248 0 : if( nXLDelta <= 0 )
249 0 : aPoint.X() -= nXLDelta - 1;
250 0 : else if( nXHDelta <= 0 )
251 0 : aPoint.X() += nXHDelta - 1;
252 : }
253 : }
254 :
255 0 : DrawText( aPoint, aText );
256 0 : SetTextColor( aTextCol );
257 0 : if (bShrankFont)
258 0 : Control::SetFont(aOrigFont);
259 0 : }
260 :
261 :
262 :
263 0 : void SvxShowText::SetFont( const vcl::Font& rFont )
264 : {
265 0 : long nWinHeight = GetOutputSizePixel().Height();
266 0 : vcl::Font aFont = rFont;
267 0 : aFont.SetWeight( WEIGHT_NORMAL );
268 0 : aFont.SetAlign( ALIGN_TOP );
269 0 : aFont.SetSize( PixelToLogic( Size( 0, nWinHeight/2 ) ) );
270 0 : aFont.SetTransparent( true );
271 0 : Control::SetFont( aFont );
272 0 : mnY = ( nWinHeight - GetTextHeight() ) / 2;
273 :
274 0 : Invalidate();
275 0 : }
276 :
277 0 : Size SvxShowText::GetOptimalSize() const
278 : {
279 0 : const vcl::Font &rFont = GetFont();
280 0 : const Size rFontSize = rFont.GetSize();
281 0 : long nWinHeight = LogicToPixel(rFontSize).Height() * 2;
282 0 : return Size( GetTextWidth( GetText() ) + 2 * 12, nWinHeight );
283 : }
284 :
285 0 : void SvxShowText::Resize()
286 : {
287 0 : Control::Resize();
288 0 : SetFont(GetFont()); //force recalculation of size
289 0 : }
290 :
291 :
292 :
293 0 : void SvxShowText::SetText( const OUString& rText )
294 : {
295 0 : Control::SetText( rText );
296 0 : Invalidate();
297 0 : }
298 :
299 :
300 :
301 0 : SvxShowText::~SvxShowText()
302 0 : {}
303 :
304 : // class SvxCharacterMap =================================================
305 :
306 0 : void SvxCharacterMap::init()
307 : {
308 0 : aFont = GetFont();
309 0 : aFont.SetTransparent( true );
310 0 : aFont.SetFamily( FAMILY_DONTKNOW );
311 0 : aFont.SetPitch( PITCH_DONTKNOW );
312 0 : aFont.SetCharSet( RTL_TEXTENCODING_DONTKNOW );
313 :
314 0 : if (bOne)
315 : {
316 0 : m_pSymbolText->Hide();
317 0 : m_pShowText->Hide();
318 : }
319 :
320 0 : OUString aDefStr( aFont.GetName() );
321 0 : OUString aLastName;
322 0 : int nCount = GetDevFontCount();
323 0 : for ( int i = 0; i < nCount; i++ )
324 : {
325 0 : OUString aFontName( GetDevFont( i ).GetName() );
326 0 : if ( aFontName != aLastName )
327 : {
328 0 : aLastName = aFontName;
329 0 : sal_uInt16 nPos = m_pFontLB->InsertEntry( aFontName );
330 0 : m_pFontLB->SetEntryData( nPos, reinterpret_cast<void*>(i) );
331 : }
332 0 : }
333 : // the font may not be in the list =>
334 : // try to find a font name token in list and select found font,
335 : // else select topmost entry
336 0 : bool bFound = (m_pFontLB->GetEntryPos( aDefStr ) == LISTBOX_ENTRY_NOTFOUND );
337 0 : if( !bFound )
338 : {
339 0 : sal_Int32 nIndex = 0;
340 0 : do
341 : {
342 0 : OUString aToken = aDefStr.getToken(0, ';', nIndex);
343 0 : if ( m_pFontLB->GetEntryPos( aToken ) != LISTBOX_ENTRY_NOTFOUND )
344 : {
345 0 : aDefStr = aToken;
346 0 : bFound = true;
347 0 : break;
348 0 : }
349 : }
350 0 : while ( nIndex >= 0 );
351 : }
352 :
353 0 : if ( bFound )
354 0 : m_pFontLB->SelectEntry( aDefStr );
355 0 : else if ( m_pFontLB->GetEntryCount() )
356 0 : m_pFontLB->SelectEntryPos(0);
357 0 : FontSelectHdl(m_pFontLB);
358 :
359 0 : m_pOKBtn->SetClickHdl( LINK( this, SvxCharacterMap, OKHdl ) );
360 0 : m_pFontLB->SetSelectHdl( LINK( this, SvxCharacterMap, FontSelectHdl ) );
361 0 : m_pSubsetLB->SetSelectHdl( LINK( this, SvxCharacterMap, SubsetSelectHdl ) );
362 0 : m_pShowSet->SetDoubleClickHdl( LINK( this, SvxCharacterMap, CharDoubleClickHdl ) );
363 0 : m_pShowSet->SetSelectHdl( LINK( this, SvxCharacterMap, CharSelectHdl ) );
364 0 : m_pShowSet->SetHighlightHdl( LINK( this, SvxCharacterMap, CharHighlightHdl ) );
365 0 : m_pShowSet->SetPreSelectHdl( LINK( this, SvxCharacterMap, CharPreSelectHdl ) );
366 :
367 0 : if( SvxShowCharSet::getSelectedChar() == ' ')
368 0 : m_pOKBtn->Disable();
369 : else
370 0 : m_pOKBtn->Enable();
371 0 : }
372 :
373 :
374 :
375 0 : void SvxCharacterMap::SetCharFont( const vcl::Font& rFont )
376 : {
377 : // first get the underlying info in order to get font names
378 : // like "Times New Roman;Times" resolved
379 0 : vcl::Font aTmp( GetFontMetric( rFont ) );
380 :
381 0 : if ( m_pFontLB->GetEntryPos( aTmp.GetName() ) == LISTBOX_ENTRY_NOTFOUND )
382 0 : return;
383 :
384 0 : m_pFontLB->SelectEntry( aTmp.GetName() );
385 0 : aFont = aTmp;
386 0 : FontSelectHdl(m_pFontLB);
387 :
388 : // for compatibility reasons
389 0 : ModalDialog::SetFont( aFont );
390 : }
391 :
392 :
393 :
394 0 : IMPL_LINK_NOARG(SvxCharacterMap, OKHdl)
395 : {
396 0 : OUString aStr = m_pShowText->GetText();
397 :
398 0 : if ( aStr.isEmpty() )
399 : {
400 0 : sal_UCS4 cChar = m_pShowSet->GetSelectCharacter();
401 : // using the new UCS4 constructor
402 0 : OUString aOUStr( &cChar, 1 );
403 0 : m_pShowText->SetText( aOUStr );
404 : }
405 0 : EndDialog( sal_True );
406 0 : return 0;
407 : }
408 :
409 0 : void SvxCharacterMap::fillAllSubsets(ListBox &rListBox)
410 : {
411 0 : SubsetMap aAll(NULL);
412 0 : rListBox.Clear();
413 0 : bool bFirst = true;
414 0 : while (const Subset *s = aAll.GetNextSubset(bFirst))
415 : {
416 0 : rListBox.InsertEntry( s->GetName() );
417 0 : bFirst = false;
418 0 : }
419 0 : }
420 :
421 :
422 :
423 0 : IMPL_LINK_NOARG(SvxCharacterMap, FontSelectHdl)
424 : {
425 0 : sal_uInt16 nPos = m_pFontLB->GetSelectEntryPos(),
426 0 : nFont = (sal_uInt16)reinterpret_cast<sal_uLong>(m_pFontLB->GetEntryData( nPos ));
427 0 : aFont = GetDevFont( nFont );
428 0 : aFont.SetWeight( WEIGHT_DONTKNOW );
429 0 : aFont.SetItalic( ITALIC_NONE );
430 0 : aFont.SetWidthType( WIDTH_DONTKNOW );
431 0 : aFont.SetPitch( PITCH_DONTKNOW );
432 0 : aFont.SetFamily( FAMILY_DONTKNOW );
433 :
434 : // notify children using this font
435 0 : m_pShowSet->SetFont( aFont );
436 0 : m_pShowChar->SetFont( aFont );
437 0 : m_pShowText->SetFont( aFont );
438 :
439 : // setup unicode subset listbar with font specific subsets,
440 : // hide unicode subset listbar for symbol fonts
441 : // TODO: get info from the Font once it provides it
442 0 : delete pSubsetMap;
443 0 : pSubsetMap = NULL;
444 0 : m_pSubsetLB->Clear();
445 :
446 0 : bool bNeedSubset = (aFont.GetCharSet() != RTL_TEXTENCODING_SYMBOL);
447 0 : if( bNeedSubset )
448 : {
449 0 : FontCharMapPtr pFontCharMap( new FontCharMap() );
450 0 : m_pShowSet->GetFontCharMap( pFontCharMap );
451 0 : pSubsetMap = new SubsetMap( pFontCharMap );
452 :
453 : // update subset listbox for new font's unicode subsets
454 : // TODO: is it worth to improve the stupid linear search?
455 0 : bool bFirst = true;
456 : const Subset* s;
457 0 : while( NULL != (s = pSubsetMap->GetNextSubset( bFirst )) )
458 : {
459 0 : sal_uInt16 nPos_ = m_pSubsetLB->InsertEntry( s->GetName() );
460 0 : m_pSubsetLB->SetEntryData( nPos_, (void*)s );
461 : // NOTE: subset must live at least as long as the selected font
462 0 : if( bFirst )
463 0 : m_pSubsetLB->SelectEntryPos( nPos_ );
464 0 : bFirst = false;
465 : }
466 0 : if( m_pSubsetLB->GetEntryCount() <= 1 )
467 0 : bNeedSubset = false;
468 : }
469 :
470 0 : m_pSubsetText->Enable(bNeedSubset);
471 0 : m_pSubsetLB->Enable(bNeedSubset);
472 :
473 0 : return 0;
474 : }
475 :
476 :
477 :
478 0 : IMPL_LINK_NOARG(SvxCharacterMap, SubsetSelectHdl)
479 : {
480 0 : sal_uInt16 nPos = m_pSubsetLB->GetSelectEntryPos();
481 0 : const Subset* pSubset = reinterpret_cast<const Subset*> (m_pSubsetLB->GetEntryData(nPos));
482 0 : if( pSubset )
483 : {
484 0 : sal_UCS4 cFirst = pSubset->GetRangeMin();
485 0 : m_pShowSet->SelectCharacter( cFirst );
486 : }
487 0 : m_pSubsetLB->SelectEntryPos( nPos );
488 0 : return 0;
489 : }
490 :
491 :
492 :
493 0 : IMPL_LINK_NOARG(SvxCharacterMap, CharDoubleClickHdl)
494 : {
495 0 : if (bOne)
496 : {
497 0 : sal_UCS4 cChar = m_pShowSet->GetSelectCharacter();
498 0 : m_pShowText->SetText(OUString(&cChar, 1));
499 : }
500 0 : EndDialog( sal_True );
501 0 : return 0;
502 : }
503 :
504 :
505 :
506 0 : IMPL_LINK_NOARG(SvxCharacterMap, CharSelectHdl)
507 : {
508 0 : if ( !bOne )
509 : {
510 0 : OUString aText = m_pShowText->GetText();
511 0 : Selection aSelection = m_pShowText->GetSelection();
512 0 : aSelection.Justify();
513 0 : long nLen = aSelection.Len();
514 :
515 0 : if ( aText.getLength() != CHARMAP_MAXLEN || nLen > 0 )
516 : {
517 0 : sal_UCS4 cChar = m_pShowSet->GetSelectCharacter();
518 : // using the new UCS4 constructor
519 0 : OUString aOUStr( &cChar, 1 );
520 :
521 0 : long nPos = aSelection.Min();
522 0 : if( aText.getLength() )
523 : {
524 0 : m_pShowText->SetText( aText.copy( 0, nPos ) + aOUStr + aText.copy( nPos + nLen ) );
525 : }
526 : else
527 0 : m_pShowText->SetText( aOUStr );
528 :
529 0 : m_pShowText->SetSelection( Selection( nPos + 1 ) );
530 0 : }
531 :
532 : }
533 0 : m_pOKBtn->Enable();
534 0 : return 0;
535 : }
536 :
537 :
538 :
539 0 : IMPL_LINK_NOARG(SvxCharacterMap, CharHighlightHdl)
540 : {
541 0 : OUString aText;
542 0 : sal_UCS4 cChar = m_pShowSet->GetSelectCharacter();
543 0 : bool bSelect = (cChar > 0);
544 :
545 : // show char sample
546 0 : if ( bSelect )
547 : {
548 : // using the new UCS4 constructor
549 0 : aText = OUString( &cChar, 1 );
550 :
551 0 : const Subset* pSubset = NULL;
552 0 : if( pSubsetMap )
553 0 : pSubset = pSubsetMap->GetSubsetByUnicode( cChar );
554 0 : if( pSubset )
555 0 : m_pSubsetLB->SelectEntry( pSubset->GetName() );
556 : else
557 0 : m_pSubsetLB->SetNoSelection();
558 : }
559 0 : m_pShowChar->SetText( aText );
560 0 : m_pShowChar->Update();
561 :
562 : // show char code
563 0 : if ( bSelect )
564 : {
565 : char aBuf[32];
566 0 : snprintf( aBuf, sizeof(aBuf), "U+%04X", static_cast<unsigned>(cChar) );
567 0 : if( cChar < 0x0100 )
568 0 : snprintf( aBuf+6, sizeof(aBuf)-6, " (%u)", static_cast<unsigned>(cChar) );
569 0 : aText = OUString::createFromAscii(aBuf);
570 : }
571 0 : m_pCharCodeText->SetText( aText );
572 :
573 0 : return 0;
574 : }
575 :
576 :
577 :
578 0 : IMPL_LINK_NOARG(SvxCharacterMap, CharPreSelectHdl)
579 : {
580 : // adjust subset selection
581 0 : if( pSubsetMap )
582 : {
583 0 : sal_UCS4 cChar = m_pShowSet->GetSelectCharacter();
584 0 : const Subset* pSubset = pSubsetMap->GetSubsetByUnicode( cChar );
585 0 : if( pSubset )
586 0 : m_pSubsetLB->SelectEntry( pSubset->GetName() );
587 : }
588 :
589 0 : m_pOKBtn->Enable();
590 0 : return 0;
591 0 : }
592 :
593 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|