Update contrib.
2 * Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
27 #include <banamedplugins.h>
33 #include <convnames.h>
35 #include <techview/eikon.hrh>
40 #include <techview/eikrted.h>
41 #include <techview/eikedwin.h>
43 #include <techview/eikdialg.h>
44 #include <techview/eikdlgtb.h>
45 #include <techview/eikrted.h>
46 #include <techview/eiksbfrm.h>
47 #include <techview/eikconso.h>
51 #include "TestNrl.hrh"
52 #include <testnrl.rsg>
53 #include <techview/eikon.rsg>
60 // forward declarations
62 //class CEikScrollBarFrame;
64 const TInt EGranularity=4;
67 _LIT(KLitResourceFileNameAppendage, "_NAME.RSC");
69 _LIT(KPanicText, "NonRom_Test");
72 class TDummyObserver: public MMsvSessionObserver
75 virtual void HandleSessionEventL(TMsvSessionEvent, TAny*, TAny*, TAny*) {};
80 // class CNRLTestControl
83 class CNRLTestControl : public CCoeControl
87 void ConstructL(const TRect& aRect);
90 TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
91 void PrintToScreen (TRefByValue<const TDesC> aFmt,...);
92 void PrintLineToScreen (TRefByValue<const TDesC> aFmt,...);
94 private: // from CCoeControl
95 void Draw(const TRect&) const;
98 CEikConsoleScreen* iConsole;
102 CNRLTestControl::~CNRLTestControl ()
108 void CNRLTestControl::ConstructL (const TRect& aRect)
111 Window().SetShadowDisabled(ETrue);
112 Window().SetBackgroundColor(KRgbGray);
116 TRect consoleSize = aRect;
117 consoleSize.Shrink(1,1);
118 iConsole=new(ELeave) CEikConsoleScreen;
119 iConsole->ConstructL(_L("TEST"),TPoint(1,1),consoleSize.Size(),CEikConsoleScreen::ENoInitialCursor,EEikConsWinInPixels);
122 void CNRLTestControl::ActivateL ()
124 CCoeControl::ActivateL();
125 iConsole->SetKeepCursorInSight(ETrue);
126 iConsole->SetHistorySizeL(500,5);
127 iConsole->SetScrollBarVisibilityL(CEikScrollBarFrame::EOff,CEikScrollBarFrame::EOn);
128 iConsole->Write(_L("\nStarting tests for Non-Rom Localisation\nThis test requires some user interaction\n"));
129 iConsole->FlushChars();
130 iConsole->DrawCursor();
131 iConsole->SetAtt(ATT_NORMAL);
134 void CNRLTestControl::Draw(const TRect& /* aRect*/) const
136 CWindowGc& gc = SystemGc();
138 //rect.Shrink(10,10);
144 TKeyResponse CNRLTestControl::OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType)
146 if (aType!=EEventKey)
147 return(EKeyWasConsumed);
148 TInt modifiers=aKeyEvent.iModifiers;
149 TInt code=aKeyEvent.iCode;
153 TRect range = iConsole->Selection(); // get current selected range
158 if (modifiers & EModifierShift)
160 range.iTl = iConsole->CursorPos();
161 iConsole->SetSelection(range);
164 iConsole->SelectCursor();
168 if (modifiers & EModifierShift)
170 range.iTl = iConsole->CursorPos();
171 iConsole->SetSelection(range);
174 iConsole->SelectCursor();
178 if (modifiers & EModifierShift)
180 range.iTl = iConsole->CursorPos();
181 iConsole->SetSelection(range);
184 iConsole->SelectCursor();
188 if (modifiers & EModifierShift)
190 range.iTl = iConsole->CursorPos();
191 iConsole->SetSelection(range);
194 iConsole->SelectCursor();
202 iConsole->SelectCursor(); // forget previous selection
204 chr.Format(_L("%c"),code);
205 iConsole->Write(chr);
206 iConsole->FlushChars();
210 return(EKeyWasConsumed);
214 void CNRLTestControl::PrintToScreen(TRefByValue<const TDesC> aFmt,...)
219 buf.FormatList(aFmt,list);
220 iConsole->Write(buf);
223 void CNRLTestControl::PrintLineToScreen(TRefByValue<const TDesC> aFmt,...)
228 buf.FormatList(aFmt,list);
229 iConsole->Write(buf);
230 iConsole->Write(KNewLine);
237 // ---------------------- CNRLTestAppView definition ----------------
241 class CNRLTestAppUi : public CEikAppUi ,private CBaNamedPlugins::MFallBackName
245 void CreateControlL();
249 void TestLocaleL(const TDesC& aTestHeader);
250 void TestCollation(const TDesC& aTestHeader);
251 void TestResourcesL(const TDesC& aTestHeader);
252 void TestCharSetNamesL(const TDesC& aTestHeader);
253 void TestFEPNamesL(const TDesC& aTestHeader);
254 void TestDisplayMessagingL(const TDesC& aTestHeader);
255 void TestBIFL(const TDesC& aTestHeader);
256 void TestPrinterNameL(const TDesC& aTestHeader);
257 void TestLocalisableBitmapL(const TDesC& aTestHeader);
260 private: // from CEikAppUi -- framework
261 void HandleCommandL(TInt aCommand);
263 virtual HBufC* FallBackNameL(const TDesC& aFullResourceFileName) const;
265 void WriteTestHeader(const TDesC& aTestHeader) const;
266 void Pass(const TDesC& aTestHeader);
267 void FailL(const TDesC& aTestHeader);
268 void ReportEndResult() const;
270 CNRLTestControl* iNRLTestControl;
271 CDesCArray* iFailedTests;
274 void CNRLTestAppUi::ConstructL()
281 // The cleanup operation of the TCleanupItem
283 LOCAL_C void DestroyResourceFileArray(TAny* aArrayOfResourceFiles)
285 RArray<CBaNamedPlugins::TResourceFile>& arrayOfResourceFiles=*STATIC_CAST(RArray<CBaNamedPlugins::TResourceFile>*, aArrayOfResourceFiles);
286 for (TInt i=arrayOfResourceFiles.Count()-1; i>=0; --i)
288 const CBaNamedPlugins::TResourceFile& resourceFile=arrayOfResourceFiles[i];
289 delete resourceFile.iFullFileName;
290 delete resourceFile.iIdentifier;
292 arrayOfResourceFiles.Close();
297 void CNRLTestAppUi::CreateControlL()
299 iNRLTestControl=new(ELeave) CNRLTestControl;
300 iNRLTestControl->ConstructL(ClientRect());
301 AddToStackL(iNRLTestControl);
302 iNRLTestControl->ActivateL();
303 iFailedTests=new(ELeave) CDesCArrayFlat(3);
306 CNRLTestAppUi::~CNRLTestAppUi()
308 RemoveFromStack(iNRLTestControl);
309 delete iNRLTestControl;
310 for (TInt i=0; i<iFailedTests->Count();i++)
311 iFailedTests->Delete(i);
315 void CNRLTestAppUi::HandleCommandL(TInt aCommand)
331 _LIT(KTestAnnouncer,"----------------");
332 _LIT(KLocaleTestTitle,"Locale ");
333 _LIT(KResourceTestTitle,"Application Resource ");
334 _LIT(KCharSetNamesTest,"Charset Names ");
335 _LIT(KFEPNameTestTitle,"FEP Names ");
336 _LIT(KCollationTestTitle, "Collation Table ");
337 _LIT(KTDisplayMessaging,"Messaging Resources ");
338 _LIT(KBIFTestTitle,"BIF Files ");
339 _LIT(KPrinterNameTestTitle,"Printer Names ");
340 _LIT(KLocalisableBimap,"Bitmap Files ");
341 _LIT(KOriginalBitmapPath,"z:\\resource\\apps\\testnrl.mbm");
342 _LIT(KNonROM,"Non-ROM");
344 void CNRLTestAppUi::WriteTestHeader(const TDesC& aTestHeader) const
346 iNRLTestControl->PrintToScreen(KNewLine);
347 iNRLTestControl->PrintToScreen(aTestHeader);
348 iNRLTestControl->PrintLineToScreen (_L("Test"));
349 iNRLTestControl->PrintToScreen(KNewLine);
354 void CNRLTestAppUi::StartTestsL ()
356 TestLocaleL(KLocaleTestTitle);
357 TestResourcesL (KResourceTestTitle);
358 TestCharSetNamesL(KCharSetNamesTest);
359 TestCollation(KCollationTestTitle);
360 TestFEPNamesL(KFEPNameTestTitle);
361 TestDisplayMessagingL(KTDisplayMessaging);
362 TestBIFL(KBIFTestTitle);
363 TestPrinterNameL (KPrinterNameTestTitle);
364 TestLocalisableBitmapL (KLocalisableBimap);
370 void CNRLTestAppUi::TestLocaleL (const TDesC& aTestHeader)
373 // print on console that we are starting the Locale Testing
374 // just checking it is not enough, need to display as well that
375 // the result is as expected.
376 //Test a few other things besides the
377 // locale number, some thing like a currency symbol. == $$$
379 WriteTestHeader(aTestHeader);
380 iNRLTestControl->PrintLineToScreen(_L("Have to ensure that the correct locale is picked up"));
381 iNRLTestControl->PrintLineToScreen(_L("Expected Locale with language extension"));
384 (void)HAL::Get(HAL::ELanguageIndex,language);
385 iNRLTestControl->PrintLineToScreen(_L("%d"),language);
386 iNRLTestControl->PrintToScreen(_L("Current Locales language extension: "));
389 currentLangId = TInt(User::Language());
390 iNRLTestControl->PrintLineToScreen(_L("%d"),currentLangId);
392 if (currentLangId == 95 )
394 TCurrencySymbol theCurrencySymbol;
395 _LIT(KExpectedCurrencySymbol,"$$$");
396 if(theCurrencySymbol==KExpectedCurrencySymbol)
398 iNRLTestControl->PrintLineToScreen(_L("The correct locale was loaded"));
404 iNRLTestControl->PrintToScreen(_L("The correct locale was not loaded"));
409 void CNRLTestAppUi::TestResourcesL(const TDesC& aTestHeader)
411 WriteTestHeader(aTestHeader);
412 iNRLTestControl->PrintLineToScreen (_L("Reading information from resource file..."));
414 TResourceReader resourceReader;
415 CCoeEnv::Static()->CreateResourceReaderLC(resourceReader,R_NRL_COLLATE);
416 CDesCArray* collation=new(ELeave) CDesCArrayFlat(3);
417 CleanupStack::PushL(collation);
418 TInt n=resourceReader.ReadUint16();
420 for (TInt i=0;i<n;i++)
421 collation->AppendL(resourceReader.ReadTPtrC());
423 for (TInt j=0;j<n;j++)
425 iNRLTestControl->PrintLineToScreen((*collation)[j]);
428 _LIT(KResourceData,"David");
430 collation->Find(KResourceData,resourceTest,ECmpCollated);
431 if(resourceTest!=collation->MdcaCount())
439 CleanupStack::PopAndDestroy(2);//resourceReader,collation
442 void CNRLTestAppUi::TestCharSetNamesL(const TDesC& aTestHeader)
444 WriteTestHeader(aTestHeader);
445 RFs& aSession = iCoeEnv->FsSession();
446 CArrayFix<CCnvCharacterSetConverter::SCharacterSet>* charsetArray=CCnvCharacterSetConverter::CreateArrayOfCharacterSetsAvailableLC(aSession);
447 MDesCArray* nameArry=CCnvCharacterSetNames::NewL(aSession,charsetArray->Array());
448 TInt index=((CCnvCharacterSetNames*)nameArry)->IndexOfIdentifier(KCharacterSetIdentifierAscii);
451 TPtrC bigFive=nameArry->MdcaPoint(index);
453 findNonROM=bigFive.Find(KNonROM);
454 if(findNonROM!=KErrNotFound)
456 iNRLTestControl->PrintToScreen(KNewLine);
457 iNRLTestControl->PrintLineToScreen(bigFive);
465 CleanupStack::PopAndDestroy();//charsetArray
470 void CNRLTestAppUi::TestCollation(const TDesC& aTestHeader)
472 WriteTestHeader(aTestHeader);
473 iNRLTestControl->PrintToScreen(_L("This test locale has it's own collation table\n"));
474 iNRLTestControl->PrintToScreen(_L("Set Collation values in the order E-D-C-B-A\n"));
475 iNRLTestControl->PrintToScreen(_L("Loading a few names which have been sorted using collation\n"));
476 iNRLTestControl->PrintToScreen(_L("David should appear before BeiBei\n\n"));
477 TResourceReader resourceReader;
478 CCoeEnv::Static()->CreateResourceReaderLC(resourceReader,R_NRL_COLLATE);
479 CDesCArray* collation=new(ELeave) CDesCArrayFlat(3);
480 CleanupStack::PushL(collation);
481 TInt n=resourceReader.ReadUint16();
483 for (TInt i=0;i<n;i++)
484 collation->AppendL(resourceReader.ReadTPtrC());
485 //David is the first name stored in the array before the array is sorted.
486 //When the array is sorted, David should still be the first name
487 // because this locales collation table reverses the ordering between A & E
488 TPtrC david = (*collation)[0];
489 collation->Sort(ECmpCollated);
490 for (TInt j=0;j<n;j++)
492 iNRLTestControl->PrintLineToScreen((*collation)[j]);
497 // searching for Davids name in the array,
498 // according to the new collation rules David's name should be
499 // the first itm in the array.
501 collation->Find(david,coltest,ECmpCollated);
502 // if coltest=0 then Davids is the first item,
503 // the new collation table was used.
513 CleanupStack::PopAndDestroy(2);//resourceReader,collation
517 void CNRLTestAppUi::TestFEPNamesL(const TDesC& aTestHeader)
519 WriteTestHeader(aTestHeader);
520 iNRLTestControl->PrintLineToScreen (_L("Fep Names are stored in resource files in the fep directory in system"));
521 iNRLTestControl->PrintLineToScreen (_L("Compiled new resources with the word Non-ROM added into a few test fep names"));
523 RArray<CBaNamedPlugins::TResourceFile> arrayOfResourceFiles;
524 CleanupStack::PushL(TCleanupItem(DestroyResourceFileArray, &arrayOfResourceFiles));//arrayOfResourceFiles
525 RFs& fileServerSession=iCoeEnv->FsSession();
526 TInt numberofsession=fileServerSession.ResourceCount();
528 TParse* parser=new(ELeave) TParse;
529 CleanupStack::PushL(parser);//parser
530 TFileName* fileName=new(ELeave) TFileName;
531 CleanupStack::PushL(fileName);//fileName
534 RArray<TUid> uidsOfAvailableFeps;
535 CleanupClosePushL(uidsOfAvailableFeps);
536 CDesCArray* fileNamesOfAvailableFeps = new(ELeave) CDesCArrayFlat(EGranularity);
537 CleanupDeletePushL(fileNamesOfAvailableFeps);//fileNamesOfAvailableFeps
538 iCoeEnv->AvailableFepsL(uidsOfAvailableFeps,fileNamesOfAvailableFeps);//it is allocated some memory here!!!
542 for (i=fileNamesOfAvailableFeps->MdcaCount()-1; i>=0; --i)
544 const TPtrC fullFileNameOfDll(fileNamesOfAvailableFeps->MdcaPoint(i));
545 *fileName=TParsePtrC(fullFileNameOfDll).Name();
546 fileName->Append(KLitResourceFileNameAppendage);
547 User::LeaveIfError(parser->SetNoWild(*fileName, &fullFileNameOfDll, NULL));
548 CBaNamedPlugins::TResourceFile resourceFile;
549 resourceFile.iFullFileName=parser->FullName().AllocLC();
550 resourceFile.iIdentifier=fullFileNameOfDll.AllocLC();
551 resourceFile.iUid=uidsOfAvailableFeps[i];
552 resourceFile.iFormat=CBaNamedPlugins::TResourceFile::EFormatTbuf;
553 User::LeaveIfError(arrayOfResourceFiles.Append(resourceFile));
554 CleanupStack::Pop(2, resourceFile.iFullFileName);//iFullFileName,iIdentifier
556 CleanupStack::PopAndDestroy(4, parser);//parser,fileName,uidsOfAvailableFeps,fileNamesOfAvailableFeps
558 CBaNamedPlugins::CParameters* parameters=CBaNamedPlugins::CParameters::NewLC(fileServerSession, arrayOfResourceFiles.Array());
559 parameters->SetFallBackName(*this);
560 CBaNamedPlugins* namedPlugins=CBaNamedPlugins::NewL(*parameters);//numberofsession increased after this
561 numberofsession=fileServerSession.ResourceCount();
562 const TInt numberOfAvailableFeps=namedPlugins->MdcaCount();
565 for (i=0; i<numberOfAvailableFeps; ++i)
567 TPtrC fepNames = namedPlugins->MdcaPoint(i);
568 RDebug::Print(fepNames);
570 findNonROM=fepNames.Find(KNonROM);
571 if (findNonROM!=KErrNotFound)
573 iNRLTestControl->PrintLineToScreen(fepNames);
586 CleanupStack::PopAndDestroy(2, &arrayOfResourceFiles);//arrayOfResourceFiles,parameters
589 HBufC* CNRLTestAppUi::FallBackNameL(const TDesC& aFullResourceFileName) const
591 const TPtrC nameAndExtension(TParsePtrC(aFullResourceFileName).NameAndExt());
592 __ASSERT_DEBUG(nameAndExtension.Right(KLitResourceFileNameAppendage().Length())==KLitResourceFileNameAppendage, User::Panic(KPanicText,-1));
593 return nameAndExtension.Left(nameAndExtension.Length()-KLitResourceFileNameAppendage().Length()).AllocL();
596 void CNRLTestAppUi::TestDisplayMessagingL(const TDesC& aTestHeader)
598 WriteTestHeader(aTestHeader);
599 iNRLTestControl->PrintLineToScreen (_L("MTM are stored in resource files in the MTM directory in System"));
600 iNRLTestControl->PrintLineToScreen (_L("Compiled new resources with the word Non-ROM added into the MTM resources"));
603 CMsvSession *session=CMsvSession::OpenSyncL(obs);
604 CleanupStack::PushL(session);
605 CClientMtmRegistry *reg=CClientMtmRegistry::NewL(*session);
606 CleanupStack::PushL(reg);
607 TInt count=reg->NumRegisteredMtmDlls();
613 const CMtmDllInfo& info=reg->RegisteredMtmDllInfo(reg->MtmTypeUid(count));
614 TPtrC mtmNames = info.HumanReadableName();
616 findNonROM=mtmNames.Find(KNonROM);
617 if (findNonROM!=KErrNotFound)
619 iNRLTestControl->PrintLineToScreen (mtmNames);
625 CleanupStack::PopAndDestroy(reg);
627 CMsvEntry *entry=session->GetEntryL(KMsvRootIndexEntryId);
628 CleanupStack::PushL(entry);
630 entry->SetEntryL(KMsvDraftEntryId);
631 iNRLTestControl->PrintLineToScreen (entry->Entry().iDetails);
634 entry->SetEntryL(KMsvGlobalInBoxIndexEntryId);
635 iNRLTestControl->PrintLineToScreen (entry->Entry().iDetails);
637 entry->SetEntryL(KMsvGlobalOutBoxIndexEntryId);
638 iNRLTestControl->PrintLineToScreen (entry->Entry().iDetails);
640 entry->SetEntryL(KMsvSentEntryId);
641 iNRLTestControl->PrintLineToScreen (entry->Entry().iDetails);
643 CleanupStack::PopAndDestroy(entry);
644 CleanupStack::PopAndDestroy(session);
658 void CNRLTestAppUi::TestBIFL (const TDesC& aTestHeader)
660 WriteTestHeader(aTestHeader);
661 iNRLTestControl->PrintLineToScreen(_L("BIF files are now stored as resources in System\\BIf directory"));
662 iNRLTestControl->PrintLineToScreen(_L("Compiled new BIF resources with the phrase Non-ROM added ... "));
664 RFs& gFs=iCoeEnv->FsSession();
666 iNRLTestControl->PrintLineToScreen(_L("Opening & Searching DB"));
668 CBIODatabase* bioDB = CBIODatabase::NewL(gFs);
669 CleanupStack::PushL( bioDB );
670 iNRLTestControl->PrintLineToScreen(_L("Opened DB Successfully!"));
674 for (TInt i=0; i < bioDB->BIOCount(); i++)
676 const CBioInfoFileReader& bifReader = bioDB->BifReader(i);
679 desc.Set(bifReader.Description());
681 findNonROM=desc.Find((KNonROM));
682 if (findNonROM!=KErrNotFound)
684 iNRLTestControl->PrintLineToScreen(desc);
697 CleanupStack::PopAndDestroy(); // bioDB
701 void CNRLTestAppUi::TestPrinterNameL (const TDesC& aTestHeader)
704 WriteTestHeader(aTestHeader);
706 CDesCArray* list=new(ELeave) CDesCArrayFlat(EGranularity);
707 CleanupStack::PushL(list);
709 CPrintSetup* aPrintSetup = CPrintSetup::NewL();
710 CleanupStack::PushL(aPrintSetup);
711 aPrintSetup->AddPrinterDriverDirL( KDefaultPrinterDriverPath );
712 RFs& filesession = iCoeEnv->FsSession();
713 CPrinterModelList* aModelList;
714 aModelList = aPrintSetup->ModelNameListL(filesession);
715 CEikonEnv::GetPrinterNamesL(aModelList,*list);
717 aPrintSetup->FreeModelList();
719 TInt foundNonRomResource=0;
721 for (TInt i=0; i < list->Count(); ++i)
724 desc.Set((*list)[i]);
726 findNonROM = desc.Find((KNonROM));
727 if (findNonROM!=KErrNotFound)
729 iNRLTestControl->PrintLineToScreen (desc);
730 foundNonRomResource=1;
733 if (foundNonRomResource)
739 CleanupStack::PopAndDestroy(2); // list, aPrintSetup, aModelList
743 void CNRLTestAppUi::TestLocalisableBitmapL(const TDesC& aTestHeader)
745 WriteTestHeader(aTestHeader);
747 TFileName filename(KOriginalBitmapPath);
749 aBitmap=iEikonEnv->CreateBitmapL(filename,1);
751 nonROM=aBitmap->IsRomBitmap();
758 iNRLTestControl->PrintLineToScreen(_L("Right, the bitmap loaded should not be in ROM"));
766 void CNRLTestAppUi::Pass(const TDesC& aTestHeader)
768 iNRLTestControl->PrintToScreen(KNewLine);
769 iNRLTestControl->PrintLineToScreen(KTestAnnouncer);
770 iNRLTestControl->PrintLineToScreen(_L("Expected new %S loaded"),&aTestHeader);
771 iNRLTestControl->PrintLineToScreen(KTestAnnouncer);
774 void CNRLTestAppUi::FailL(const TDesC& aTestHeader)
776 iNRLTestControl->PrintToScreen(KNewLine);
777 iNRLTestControl->PrintLineToScreen(KTestAnnouncer);
778 iNRLTestControl->PrintLineToScreen(_L("Unexpected old %S loaded"),&aTestHeader);
779 iNRLTestControl->PrintLineToScreen(KTestAnnouncer);
780 iFailedTests->AppendL(aTestHeader);
784 void CNRLTestAppUi::ReportEndResult() const
786 TInt failedTestsCount = iFailedTests->Count();
787 if (failedTestsCount)
789 // Print a list of the Tests Failed
790 iNRLTestControl->PrintLineToScreen(_L("The following tests failed\n"));
791 for (TInt i=0; i<failedTestsCount; ++i)
793 iNRLTestControl->PrintLineToScreen ((*iFailedTests)[i]);
798 // No Tests Failed, say that new resources were loaded where expected to
804 // --------------------- CNRLTestAppDoc class Definition ------------
807 class CNRLTestAppDoc : public CEikDocument
810 CNRLTestAppDoc(CEikApplication& aApp);
812 CEikAppUi* CreateAppUiL();
816 CNRLTestAppDoc::CNRLTestAppDoc(CEikApplication& aApp):CEikDocument(aApp)
818 // Nothing else to do, just call the base class constructor
822 CEikAppUi* CNRLTestAppDoc::CreateAppUiL()
824 return new (ELeave) CNRLTestAppUi;
827 // ------------------------------ CNRLTestApp -----------------------
831 const TUid KTestNRLid = {0x1000AC5D};
833 class CNRLTestApp : public CEikApplication
836 CApaDocument* CreateDocumentL();
837 TUid AppDllUid() const;
841 TUid CNRLTestApp::AppDllUid() const
846 CApaDocument* CNRLTestApp::CreateDocumentL()
848 return new (ELeave) CNRLTestAppDoc(*this);
851 ////////////////////////////////////////////////////////////////////////////////////////////
854 static CApaApplication* NewApplication()
856 return new CNRLTestApp;
861 return EikStart::RunApplication(&NewApplication);