Update contrib.
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include "testlauncher.pan"
18 #include "testlauncherappUi.h"
19 #include "testlauncherappView.h"
20 #include "testlauncher.hrh"
21 #include "testlauncherquerydialog.h"
22 #include "testlistcontainer.h"
25 #include <aknnotewrappers.h>
26 #include <stringloader.h>
27 #include <testlauncher.rsg>
30 void CHelloWorldBasicAppUi::ConstructL()
32 // Initialise app UI with standard value.
33 BaseConstructL(CAknAppUi::EAknEnableSkin);
36 iAppView = CHelloWorldBasicAppView::NewL(ClientRect());
38 iAppContainer = new (ELeave) CFileListContainer;
39 iAppContainer->SetMopParent(this);
40 iAppContainer->ConstructL(ClientRect());
41 AddToStackL(iAppContainer);
44 CHelloWorldBasicAppUi::CHelloWorldBasicAppUi()
49 CHelloWorldBasicAppUi::~CHelloWorldBasicAppUi()
54 RemoveFromStack(iAppContainer);
58 // Handles keyevents. In this application keyevents are
59 // caught in CFileListContainer::OfferKeyEventL()
60 TKeyResponse CHelloWorldBasicAppUi::HandleKeyEventL(const TKeyEvent& /*aKeyEvent*/,TEventCode /*aType*/)
62 return EKeyWasNotConsumed;
65 // Takes care of command handling.
66 void CHelloWorldBasicAppUi::HandleCommandL(TInt aCommand)
75 case EHelloWorldBasicCommand1:
77 HBufC* defCmd = HBufC::NewLC(16);
78 *defCmd = _L("testexecute.exe ");
80 CHelloWorldQueryDialog* dlg = new (ELeave) CHelloWorldQueryDialog(usrCmd, defCmd);
81 dlg->ExecuteLD(R_DIALOG_TEXT_EDIT_QUERY);
82 CleanupStack::PopAndDestroy(defCmd);
85 TPtrC exe = lex.NextToken();
86 TPtrC arg = lex.Remainder();
89 TInt err = p.Create(exe, arg);
92 CEikonEnv::Static()->InfoMsg(_L("Unable to create process"));
100 case EHelloWorldBasicCommand2:
102 TPtrC exe = _L("testexecute.exe");
103 TPtrC arg = _L("c:\\uibench_s60\\te_uibench_s60.script");
106 TInt err = p.Create(exe, arg);
109 CEikonEnv::Static()->InfoMsg(_L("Unable to create process"));
118 case EHelloWorldBasicCommand3:
120 TPtrC exe = _L("testexecute.exe");
121 TPtrC arg = _L("c:\\ui_bench_s60\\");
124 TInt err = p.Create(exe, arg);
127 CEikonEnv::Static()->InfoMsg(_L("Unable to create process"));
134 case EHelloWorldBasicCommand4:
136 TPtrC exe = _L("testexecute.exe");
137 TPtrC arg = _L("c:\\ui_bench_s60\\");
140 TInt err = p.Create(exe, arg);
143 CEikonEnv::Static()->InfoMsg(_L("Unable to create process"));
151 case EAknSoftkeySelect:
153 iAppContainer->LaunchCurrentL();
157 Panic(EHelloWorldBasicUi);
162 // Called by the framework when the application status pane
163 // size is changed. Passes the new client rectangle to the
165 void CHelloWorldBasicAppUi::HandleStatusPaneSizeChange()
167 CAknAppUi::HandleStatusPaneSizeChange(); //call to upper class
168 iAppContainer->SetRect(ClientRect());
169 iAppView->SetRect(ClientRect());