21
|
1 |
/*
|
|
2 |
* Copyright (c) 2002-2005 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0""
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: drop-down list control
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#include <aknlayoutscalable_apps.cdl.h>
|
|
20 |
#include <peninputgeneralitutnew.rsg>
|
|
21 |
#include <peninputitutconfig_chinese.rsg>
|
|
22 |
#include <skinlayout.cdl.h>
|
|
23 |
#include <AknsDrawUtils.h>
|
|
24 |
#include <AknsUtils.h>
|
|
25 |
#include <AknUtils.h>
|
|
26 |
#include <peninputrawkeybutton.h>
|
|
27 |
#include <peninputrepeatbutton.h>
|
|
28 |
#include <peninputcommonbutton.h>
|
|
29 |
#include "peninputrepeatbuttonex.h"
|
|
30 |
#include <AknFepGlobalEnums.h>
|
|
31 |
#include <aknfeppeninputenums.h>
|
|
32 |
#include <peninputdropdownlist.h>
|
|
33 |
#include <peninputlayoutchoicelist.h>
|
|
34 |
#include <peninputscrollablelist.h>
|
|
35 |
#include <s32mem.h>
|
|
36 |
#include <peninputlabel.h>
|
|
37 |
#include <peninputlayoutinputmodechoice.h>
|
|
38 |
#include <peninputlayoutbubblectrl.h>
|
|
39 |
|
|
40 |
#include "peninputgenericitutlayout.h"
|
|
41 |
#include "peninputgenericitutdatamgr.h"
|
|
42 |
#include "peninputgenericitutuimgrbase.h"
|
|
43 |
#include "peninputgenericitutuistatebase.h"
|
|
44 |
#include "peninputitutchnuimgr.h"
|
|
45 |
#include "peninputitutwesternuimgr.h"
|
|
46 |
#include "peninputgenericitutconverter.h"
|
|
47 |
#include "peninputgenericitutwindowmanager.h"
|
|
48 |
|
|
49 |
const TInt KChineseSpell = 100;
|
|
50 |
const TInt KWesternSpell = 101;
|
|
51 |
|
|
52 |
|
|
53 |
CGenericItutUiLayout* CGenericItutUiLayout::NewL(MLayoutOwner* aLayoutOwner,
|
|
54 |
const TAny* aInitData)
|
|
55 |
{
|
|
56 |
CGenericItutUiLayout* layout = new (ELeave) CGenericItutUiLayout(aLayoutOwner);
|
|
57 |
|
|
58 |
CleanupStack::PushL(layout);
|
|
59 |
layout->ConstructL(aInitData);
|
|
60 |
CleanupStack::Pop(layout);
|
|
61 |
|
|
62 |
return layout;
|
|
63 |
}
|
|
64 |
|
|
65 |
CGenericItutUiLayout::CGenericItutUiLayout(MLayoutOwner* aLayoutOwner)
|
|
66 |
:CFepUiLayout(aLayoutOwner)
|
|
67 |
{
|
|
68 |
}
|
|
69 |
|
|
70 |
CGenericItutUiLayout::~CGenericItutUiLayout()
|
|
71 |
{
|
|
72 |
delete iDataMgr;
|
|
73 |
delete iChnUiMgr;
|
|
74 |
delete iWesternUiMgr;
|
|
75 |
delete iWindowMgr;
|
|
76 |
}
|
|
77 |
|
|
78 |
void CGenericItutUiLayout::ConstructL(const TAny* aInitData)
|
|
79 |
{
|
|
80 |
BaseConstructL();
|
|
81 |
|
|
82 |
TPeninputLayoutData* layoutData = (TPeninputLayoutData*)aInitData;
|
|
83 |
|
|
84 |
iDataMgr = CGenericItutDataMgr::NewL(this, layoutData->iPtiEngine );
|
|
85 |
|
|
86 |
|
|
87 |
SetScreenSize(TItutDataConverter::AnyToSize(iDataMgr->RequestData(EScreenSize)));
|
|
88 |
|
|
89 |
SetRect(TItutDataConverter::AnyToRect(iDataMgr->RequestData(ELayoutRect)));
|
|
90 |
|
|
91 |
// western ui mgr is default ui mgr
|
|
92 |
iWindowMgr = CGenericItutWindowManager::NewL(this, iDataMgr);
|
|
93 |
iDataMgr->AddSubscriber(iWindowMgr);
|
|
94 |
iWesternUiMgr = CWesternItutUiMgr::NewL(this, iDataMgr, iWindowMgr);
|
|
95 |
}
|
|
96 |
|
|
97 |
|
|
98 |
void CGenericItutUiLayout::SimulateRawEvent(TInt aScanCode, TRawEvent::TType aType)
|
|
99 |
{
|
|
100 |
TRawEvent event;
|
|
101 |
event.Set(aType,aScanCode);
|
|
102 |
|
|
103 |
TPtrC eventPtr(reinterpret_cast<const TUint16*>(&event),sizeof(event)/sizeof(TUint16));
|
|
104 |
|
|
105 |
SignalOwner(ESignalSimulateEvent,eventPtr);
|
|
106 |
}
|
|
107 |
|
|
108 |
// ---------------------------------------------------------------------------
|
|
109 |
// Simulate raw event to window server immediately.
|
|
110 |
// simulating raw event command won't be scheduled by AO
|
|
111 |
// because it won't be added into CPeninputAnimObj::iAnimCmd.
|
|
112 |
// ---------------------------------------------------------------------------
|
|
113 |
//
|
|
114 |
void CGenericItutUiLayout::SimulateImmeRawEvent( TInt aScanCode, TRawEvent::TType aType )
|
|
115 |
{
|
|
116 |
TRawEvent event;
|
|
117 |
event.Set(aType,aScanCode);
|
|
118 |
TPtrC eventPtr(reinterpret_cast<const TUint16*>(&event),sizeof(event)/sizeof(TUint16));
|
|
119 |
SignalOwner( ESignalImmeSimulateEvent, eventPtr );
|
|
120 |
}
|
|
121 |
|
|
122 |
void CGenericItutUiLayout::HandleControlEvent(TInt aEventType,
|
|
123 |
CFepUiBaseCtrl* aCtrl,
|
|
124 |
const TDesC& aEventData)
|
|
125 |
{
|
|
126 |
TBool handled = EFalse;
|
|
127 |
|
|
128 |
if (UiMgr())
|
|
129 |
{
|
|
130 |
TRAP_IGNORE(handled = UiMgr()->HandleCtrlEventL(aEventType,
|
|
131 |
aCtrl,
|
|
132 |
aEventData));
|
|
133 |
}
|
|
134 |
|
|
135 |
if (handled)
|
|
136 |
{
|
|
137 |
return;
|
|
138 |
}
|
|
139 |
|
|
140 |
TRAP_IGNORE(iWindowMgr->HandleCtrlEventL(aEventType,
|
|
141 |
aCtrl,
|
|
142 |
aEventData));
|
|
143 |
}
|
|
144 |
|
|
145 |
TInt CGenericItutUiLayout::OnAppEditorTextComing(const TFepInputContextFieldData& aData)
|
|
146 |
{
|
|
147 |
TInt err = iWindowMgr->OnAppEditorTextComing(aData);
|
|
148 |
|
|
149 |
if (UiMgr()->CurrentState() &&
|
|
150 |
UiMgr()->CurrentState()->StateType() == CGenericItutUiMgrBase::EStateSpelling)
|
|
151 |
{
|
|
152 |
TRAP_IGNORE(UiMgr()->HandleCommandL(EItutCmdCheckIcfEmpty, NULL));
|
|
153 |
}
|
|
154 |
|
|
155 |
return err;
|
|
156 |
}
|
|
157 |
|
|
158 |
|
|
159 |
TInt CGenericItutUiLayout::HandleCommand(TInt aCmd, TUint8* aData)
|
|
160 |
{
|
|
161 |
if ( KErrNone == CFepUiLayout::HandleCommand( aCmd, aData ) )
|
|
162 |
{
|
|
163 |
return KErrNone;
|
|
164 |
}
|
|
165 |
|
|
166 |
TUint* data = (TUint*) aData;
|
|
167 |
|
|
168 |
switch(aCmd)
|
|
169 |
{
|
|
170 |
case ECmdPenInputLanguage:
|
|
171 |
{
|
|
172 |
TRAP_IGNORE(SetInputLanguageL(*data));
|
|
173 |
}
|
|
174 |
break;
|
|
175 |
case ECmdPenInputRange:
|
|
176 |
{
|
|
177 |
iDataMgr->SetLatinOnly( *data );
|
|
178 |
}
|
|
179 |
break;
|
|
180 |
case ECmdPenInputFingerInputMode:
|
|
181 |
{
|
|
182 |
TRAP_IGNORE(SetInputModeL(*data));
|
|
183 |
}
|
|
184 |
break;
|
|
185 |
case ECmdPenInputFingerKeyPress:
|
|
186 |
case ECmdPenInputFingerLongKeyPress:
|
|
187 |
case EItutExtCmdCustomerState:
|
|
188 |
case EItutExtCmdSetLayout:
|
|
189 |
case EItutExtCmdDimKey:
|
|
190 |
case EItutExtCmdHideKey:
|
|
191 |
case EItutExtCmdAddKey:
|
|
192 |
case EItutExtCmdSizeChanged:
|
|
193 |
case EItutExtCmdSetIcfData:
|
|
194 |
case ECmdPenInputCase:
|
|
195 |
case ECmdPenInputFingerMatchSelection:
|
|
196 |
{
|
|
197 |
if (UiMgr())
|
|
198 |
{
|
|
199 |
TInt handled = KErrNone;
|
|
200 |
TRAP_IGNORE(handled = UiMgr()->HandleCommandL(aCmd, aData));
|
|
201 |
return handled;
|
|
202 |
}
|
|
203 |
}
|
|
204 |
break;
|
|
205 |
case ECmdPenInputFingerSpelling:
|
|
206 |
{
|
|
207 |
|
|
208 |
if ( iWesternUiMgr )
|
|
209 |
{
|
|
210 |
TInt handled = KErrNone;
|
|
211 |
TRAP_IGNORE( handled = iWesternUiMgr->HandleCommandL( aCmd, aData ));
|
|
212 |
return handled;
|
|
213 |
}
|
|
214 |
}
|
|
215 |
break;
|
|
216 |
case ECmdPenInputFingerMatchList:
|
|
217 |
{
|
|
218 |
if (UiMgr())
|
|
219 |
{
|
|
220 |
TInt handled = KErrNone;
|
|
221 |
TRAP_IGNORE(handled = UiMgr()->HandleCommandL(aCmd, aData));
|
|
222 |
return handled;
|
|
223 |
}
|
|
224 |
}
|
|
225 |
break;
|
|
226 |
case ECmdPenInputSetTextAlignment:
|
|
227 |
{
|
|
228 |
iDataMgr->SetIcfTextAlignment(*data);
|
|
229 |
iDataMgr->SetTextAlignment();
|
|
230 |
}
|
|
231 |
break;
|
|
232 |
case ECmdPenInputNoFreeSpace:
|
|
233 |
{
|
|
234 |
TRAP_IGNORE(ChineseUiManager()->HandleCommandL(ECmdPenInputNoFreeSpace, NULL));
|
|
235 |
}
|
|
236 |
case ECmdPenInputSetPromptText:
|
|
237 |
case ECmdPenInputFingerMatchIndicator:
|
|
238 |
case ECmdPenInputSendEditMenuData:
|
|
239 |
case ECmdPenInputEnableSettingBtn:
|
|
240 |
case ECmdPenInputDimArrowKeys:
|
|
241 |
case ECmdPenInputRotation:
|
|
242 |
{
|
|
243 |
TRAP_IGNORE(iWindowMgr->HandleCommandL(aCmd, aData));
|
|
244 |
}
|
|
245 |
break;
|
|
246 |
case ECmdPenInputIsSecretText:
|
|
247 |
{
|
|
248 |
TRAP_IGNORE(iWindowMgr->HandleCommandL(aCmd, aData));
|
|
249 |
*data ? iIsSecret = ETrue: iIsSecret = EFalse;
|
|
250 |
if (UiMgr())
|
|
251 |
{
|
|
252 |
TInt handled = KErrNone;
|
|
253 |
TRAP_IGNORE(handled = UiMgr()->HandleCommandL(aCmd, aData));
|
|
254 |
return handled;
|
|
255 |
}
|
|
256 |
}
|
|
257 |
break;
|
|
258 |
case ECmdPenInputEnableIndicatorButton:
|
|
259 |
{
|
|
260 |
TRAP_IGNORE(iWindowMgr->HandleCommandL(aCmd, aData));
|
|
261 |
}
|
|
262 |
break;
|
|
263 |
case ECmdPenInputSymbolOfHardKeyOne:
|
|
264 |
case ECmdPenInputInEditWordQueryDlg:
|
|
265 |
{
|
|
266 |
TRAP_IGNORE(iWindowMgr->HandleCommandL(aCmd, aData));
|
|
267 |
}
|
|
268 |
break;
|
|
269 |
case ECmdPenInputIsNumberGrouping:
|
|
270 |
{
|
|
271 |
TRAP_IGNORE(iWindowMgr->HandleCommandL(aCmd, aData));
|
|
272 |
}
|
|
273 |
break;
|
|
274 |
case ECmdPenInputEditorNumericKeyMap:
|
|
275 |
{
|
|
276 |
iDataMgr->SetNumericKeymap( *data );
|
|
277 |
}
|
|
278 |
break;
|
|
279 |
case ECmdPenInputEditorCustomNumericKeyMap:
|
|
280 |
{
|
|
281 |
iDataMgr->SetNumericKeymapData( (TInt*) data );
|
|
282 |
}
|
|
283 |
break;
|
|
284 |
case ECmdPenInputPermittedRange:
|
|
285 |
{
|
|
286 |
iDataMgr->SetNumericOnly( *data );
|
|
287 |
}
|
|
288 |
break;
|
|
289 |
case ECmdPenInputCharacterPreview:
|
|
290 |
{
|
|
291 |
iWindowMgr->ShowBubble(*aData);
|
|
292 |
}
|
|
293 |
break;
|
|
294 |
case ECmdPeninputSpellLanguageMode:
|
|
295 |
{
|
|
296 |
if ( *data == KChineseSpell )
|
|
297 |
{
|
|
298 |
iDataMgr->SetChineseSpellFlag( ETrue );
|
|
299 |
return KErrNone;
|
|
300 |
}
|
|
301 |
|
|
302 |
if ( *data == KWesternSpell )
|
|
303 |
{
|
|
304 |
iDataMgr->SetChineseSpellFlag( EFalse );
|
|
305 |
return KErrNone;
|
|
306 |
}
|
|
307 |
}
|
|
308 |
break;
|
|
309 |
case ECmdPeninputSpellICFDisplayContent:
|
|
310 |
{
|
|
311 |
TRAP_IGNORE( iWindowMgr->HandleCommandL( aCmd, aData ));
|
|
312 |
}
|
|
313 |
break;
|
|
314 |
default:
|
|
315 |
break;
|
|
316 |
}
|
|
317 |
|
|
318 |
return KErrNone;
|
|
319 |
}
|
|
320 |
|
|
321 |
TInt CGenericItutUiLayout::PenInputType()
|
|
322 |
{
|
|
323 |
return EPluginInputModeItut;
|
|
324 |
}
|
|
325 |
|
|
326 |
TInt CGenericItutUiLayout::SizeChanged(const TAny* /*pData*/)
|
|
327 |
{
|
|
328 |
|
|
329 |
// For avoiding that NULL pointer is called
|
|
330 |
// add UiMgr() and CurrentState() condition
|
|
331 |
if( !( UiMgr() && UiMgr()->CurrentState()))
|
|
332 |
{
|
|
333 |
return KErrBadHandle;
|
|
334 |
}
|
|
335 |
|
|
336 |
TBool overLap = UiMgr()->CurrentState()->StateType()
|
|
337 |
== CGenericItutUiMgrBase::EStateMatchSelection ? ETrue: EFalse;
|
|
338 |
|
|
339 |
iDataMgr->ReadLafInfo();
|
|
340 |
|
|
341 |
// set layout rect
|
|
342 |
SetRect(TItutDataConverter::AnyToRect(iDataMgr->RequestData(ELayoutRect)));
|
|
343 |
|
|
344 |
iWindowMgr->SizeChanged(overLap);
|
|
345 |
|
|
346 |
return KErrNone;
|
|
347 |
}
|
|
348 |
|
|
349 |
void CGenericItutUiLayout::SubmitText(const TDesC& aEventData)
|
|
350 |
{
|
|
351 |
SignalOwner(ESignalKeyEvent, aEventData);
|
|
352 |
}
|
|
353 |
|
|
354 |
TInt CGenericItutUiLayout::OnSkinChange()
|
|
355 |
{
|
|
356 |
CFepUiLayout::OnSkinChange();
|
|
357 |
|
|
358 |
TInt err = iWindowMgr->OnSkinChange();
|
|
359 |
|
|
360 |
return err;
|
|
361 |
}
|
|
362 |
|
|
363 |
|
|
364 |
TBool CGenericItutUiLayout::PressOnCtrls(TPoint aPt)
|
|
365 |
{
|
|
366 |
const RPointerArray<CFepUiBaseCtrl>& ctrllist = RootControl()->ControlList();
|
|
367 |
|
|
368 |
for (TInt i = 0; i < ctrllist.Count(); i++)
|
|
369 |
{
|
|
370 |
if (!ctrllist[i]->Hiden() && ctrllist[i]->Rect().Contains(aPt))
|
|
371 |
{
|
|
372 |
return ETrue;
|
|
373 |
}
|
|
374 |
}
|
|
375 |
|
|
376 |
return EFalse;
|
|
377 |
}
|
|
378 |
|
|
379 |
CGenericItutUiMgrBase* CGenericItutUiLayout::UiMgr()
|
|
380 |
{
|
|
381 |
if (iDataMgr->IsChinese())
|
|
382 |
{
|
|
383 |
iCurrentUiMgr = ChineseUiManager();
|
|
384 |
}
|
|
385 |
else
|
|
386 |
{
|
|
387 |
iCurrentUiMgr = iWesternUiMgr;
|
|
388 |
}
|
|
389 |
|
|
390 |
return iCurrentUiMgr;
|
|
391 |
}
|
|
392 |
|
|
393 |
void CGenericItutUiLayout::SetInputModeL(TInt aMode)
|
|
394 |
{
|
|
395 |
// Input mode can not be set to EnativeNumber in Thai
|
|
396 |
TInt inputLanguage = iDataMgr->InputLanguage();
|
|
397 |
if ( aMode == ENativeNumber && inputLanguage == ELangThai )
|
|
398 |
{
|
|
399 |
aMode = ENumber;
|
|
400 |
}
|
|
401 |
|
|
402 |
TBool numericOnlyChanged = iDataMgr->IsCharFlagChanged() ? ETrue : EFalse;
|
|
403 |
//only number mode need judge it
|
|
404 |
|
|
405 |
// both EStrokeFind and EStroke will be stored as Estroke /////
|
|
406 |
if ( aMode != iDataMgr->InputMode() ||
|
|
407 |
aMode == EStroke || aMode == EStrokeFind ||
|
|
408 |
aMode == EZhuyin || aMode == EZhuyinFind ||
|
|
409 |
numericOnlyChanged )
|
|
410 |
{
|
|
411 |
// deactivate original uimgr first
|
|
412 |
if (iCurrentUiMgr
|
|
413 |
&& iCurrentUiMgr->CurrentState()
|
|
414 |
&& iCurrentUiMgr->CurrentState()->StateType() != CGenericItutUiMgrBase::EStateSpelling)
|
|
415 |
{
|
|
416 |
iCurrentUiMgr->DeactivateUI();
|
|
417 |
}
|
|
418 |
|
|
419 |
iDataMgr->SetInputModeL(aMode);
|
|
420 |
|
|
421 |
UiMgr()->ActivateUiL();
|
|
422 |
}
|
|
423 |
}
|
|
424 |
|
|
425 |
void CGenericItutUiLayout::SetInputLanguageL(TInt aLanguage)
|
|
426 |
{
|
|
427 |
TInt previousLang = iDataMgr->InputLanguage();
|
|
428 |
iDataMgr->SetLanguageL(aLanguage);
|
|
429 |
iWindowMgr->SetLanguageL(aLanguage);
|
|
430 |
|
|
431 |
if (previousLang != aLanguage)
|
|
432 |
{
|
|
433 |
// When state is spelling, don¡¯t apply LAF Data
|
|
434 |
if(iCurrentUiMgr
|
|
435 |
&& iCurrentUiMgr->CurrentState()
|
|
436 |
&& iCurrentUiMgr->CurrentState()->StateType() == CGenericItutUiMgrBase::EStateSpelling)
|
|
437 |
{
|
|
438 |
return;
|
|
439 |
}
|
|
440 |
//
|
|
441 |
|
|
442 |
ApplyVariantLafDataL();
|
|
443 |
}
|
|
444 |
}
|
|
445 |
|
|
446 |
void CGenericItutUiLayout::OnDeActivate()
|
|
447 |
{
|
|
448 |
TRAP_IGNORE(UiMgr()->HandleCommandL(ECmdPenInputDeActive, NULL));
|
|
449 |
|
|
450 |
CFepUiLayout::OnDeActivate();
|
|
451 |
}
|
|
452 |
void CGenericItutUiLayout::OnActivate()
|
|
453 |
{
|
|
454 |
CFepUiLayout::OnActivate();
|
|
455 |
|
|
456 |
iWindowMgr->OnActivate();
|
|
457 |
}
|
|
458 |
|
|
459 |
CFepUiLayout* CGenericItutUiLayout::UiLayout()
|
|
460 |
{
|
|
461 |
return this;
|
|
462 |
}
|
|
463 |
|
|
464 |
|
|
465 |
void CGenericItutUiLayout::EnterMatchSelectionState(TBool aOn)
|
|
466 |
{
|
|
467 |
TBuf<4> buf;
|
|
468 |
buf.Append(reinterpret_cast<TText*>(&aOn), sizeof(TBool)/sizeof(TText));
|
|
469 |
SignalOwner(ESignalEnterMatchSelection, buf);
|
|
470 |
}
|
|
471 |
|
|
472 |
void CGenericItutUiLayout::HandleAppInfoChange(const TDesC& aInfo,
|
|
473 |
TPeninputAppInfo aType)
|
|
474 |
{
|
|
475 |
if ( aType == EAppIndicatorMsg )
|
|
476 |
{
|
|
477 |
TRAP_IGNORE(iWindowMgr->HandleAppInfoChangeL(aInfo));
|
|
478 |
}
|
|
479 |
/* Teleca change begin, 19.05.2009 ssal */
|
|
480 |
if ( aType == EAppByteWarningMsg || aType == EAppMessageTypeChangeMsg)
|
|
481 |
{
|
|
482 |
TRAP_IGNORE(iWindowMgr->DisplayWarningNote(aInfo));
|
|
483 |
}
|
|
484 |
/* Teleca change end, 19.05.2009 ssal */
|
|
485 |
}
|
|
486 |
|
|
487 |
void CGenericItutUiLayout::ShowArrowBtn(TInt aShowFlag)
|
|
488 |
{
|
|
489 |
iWindowMgr->ShowArrowBtn(aShowFlag);
|
|
490 |
}
|
|
491 |
|
|
492 |
void CGenericItutUiLayout::ApplyVariantLafDataL(TBool aResolutionChange)
|
|
493 |
{
|
|
494 |
iWindowMgr->ApplyVariantLafDataL(aResolutionChange);
|
|
495 |
}
|
|
496 |
|
|
497 |
CGenericItutWindowManager* CGenericItutUiLayout::UiManager()
|
|
498 |
{
|
|
499 |
return iWindowMgr;
|
|
500 |
}
|
|
501 |
|
|
502 |
CFepUiBaseCtrl* CGenericItutUiLayout::Control(TInt aCtrlId)
|
|
503 |
{
|
|
504 |
return iWindowMgr->Control(aCtrlId);
|
|
505 |
}
|
|
506 |
|
|
507 |
CGenericItutUiMgrBase* CGenericItutUiLayout::ChineseUiManager()
|
|
508 |
{
|
|
509 |
if (!iChnUiMgr)
|
|
510 |
{
|
|
511 |
TRAP_IGNORE( iChnUiMgr = CChnItutUiMgr::NewL(this, iDataMgr, iWindowMgr) );
|
|
512 |
}
|
|
513 |
|
|
514 |
return iChnUiMgr;
|
|
515 |
|
|
516 |
}
|
|
517 |
|
|
518 |
// End Of File
|