sl@0: // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Shell to launch test code sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "W32STD.H" sl@0: #include "../SERVER/w32cmd.h" sl@0: #include sl@0: #include sl@0: #include "../test/tlib/testbase.h" sl@0: #include "../test/TClick/CLICK.H" sl@0: sl@0: #define __USING_PROCESS_ sl@0: sl@0: #if !defined(__USING_PROCESS_) sl@0: #define RP_FILENAME_SET _L(".DLL") sl@0: #endif sl@0: sl@0: #define THE_PASSWORD _L("pass") sl@0: #define INDEX_FOR_SHELL_TEST 0 sl@0: #define SHELL_TEST_NAME _L("ShellTest") sl@0: #define INDEX_FOR_RESTART_TEST 1 sl@0: #define RESTART_TEST_NAME _L("RestartTest") sl@0: #define INDEX_FOR_RESTART_EVENT_TEST 2 sl@0: #define RESTART_EVENT_TEST_NAME _L("RestartEventTest") sl@0: sl@0: const TInt EDoubleClickTime=500000; sl@0: const TInt EDoubleClickDistance=16; sl@0: sl@0: #ifndef __USING_PROCESS_ sl@0: LOCAL_D const TUint KHeapSize=0x400000; sl@0: #endif sl@0: sl@0: enum TShellPanic sl@0: { sl@0: EShellPanicRunningProcessCancel, sl@0: EShellPanicTemp, sl@0: EShellPanicRunningProcessNullPtr, sl@0: EShellPanicPassword, sl@0: }; sl@0: sl@0: typedef TInt (*DllTestAppEntryPoint)(TAny *aParam); sl@0: sl@0: class CShellClient; sl@0: sl@0: class RShellWsSession : public RWsSession sl@0: { sl@0: public: sl@0: static void Shutdown(); sl@0: void SendShutdown(); sl@0: }; sl@0: sl@0: class MProcessObserver sl@0: { sl@0: public: sl@0: virtual void ProcessDied()=0; sl@0: }; sl@0: sl@0: class CRunningProcess : public CActive sl@0: { sl@0: public: sl@0: CRunningProcess(MProcessObserver* aObserver); sl@0: ~CRunningProcess(); sl@0: void ConstructL(const TDesC& aName); sl@0: void ConstructTestExecuteL(const TDesC &aName); sl@0: void Link(CRunningProcess** aRpPtr); sl@0: #if defined(__USING_PROCESS_) sl@0: inline RProcess& Process() {return iProcess;} sl@0: #else sl@0: inline RThread& Process() {return iProcess;} sl@0: #endif sl@0: private: sl@0: virtual void DoCancel(); sl@0: virtual void RunL(); sl@0: private: sl@0: #if defined(__WINS__) sl@0: RLibrary iLib; sl@0: #endif sl@0: #if defined(__USING_PROCESS_) sl@0: RProcess iProcess; sl@0: #else sl@0: RThread iProcess; sl@0: #endif sl@0: CRunningProcess* iNext; sl@0: CRunningProcess** iPrevPtr; sl@0: TParse iFileName; sl@0: MProcessObserver* iObserver; sl@0: }; sl@0: sl@0: class CShellErrorDialog : public CTDialog sl@0: { sl@0: public: sl@0: CShellErrorDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc); sl@0: void ButtonPressL(TInt aButton); sl@0: void ConstructLD(); sl@0: private: sl@0: CTWindowGroup *iGroupWin; sl@0: CWindowGc *iGc; sl@0: }; sl@0: sl@0: class CTCalibWindow : public CTWin sl@0: { sl@0: public: sl@0: CTCalibWindow(); sl@0: void InitWin(); sl@0: void DrawPoint(const TPoint &aPoint, const TDesC &aText); sl@0: void Draw(); sl@0: void PointerL(const TPointerEvent &aPointer,const TTime& aTime); sl@0: private: sl@0: TInt iCount; sl@0: TDigitizerCalibration iCalibPoints; sl@0: TDigitizerCalibration iReturnValues; sl@0: }; sl@0: sl@0: sl@0: class CListWindow : public CTTitledWindow sl@0: { sl@0: public: sl@0: CListWindow(); sl@0: void CloseWindow(); sl@0: void ConstructL(CTWinBase &parent, TBool aExitOnEscape); sl@0: void Draw(); sl@0: virtual void SelectedL(TInt aIndex)=0; sl@0: virtual void WinKeyL(const TKeyEvent &aKey,const TTime& aTime); sl@0: void SetExt(const TPoint &aPos, const TSize &aSize); sl@0: void SetSize(const TSize &); sl@0: protected: sl@0: virtual TPtrC GetText(TInt aLine)=0; sl@0: virtual TInt ListCount()=0; sl@0: void SetSize(); sl@0: void PointerL(const TPointerEvent &aPointer,const TTime& aTime); sl@0: private: sl@0: void Resized(const TSize &aSize); sl@0: void SetListPos(TInt aNewPos); sl@0: TInt TextRowHeight() const; sl@0: void RowBox(TRect &aRect, TInt aRow) const; sl@0: private: sl@0: TRgb iColorMap[4]; sl@0: TInt iListPos; sl@0: TTime iPrevTime; sl@0: TBool iExitOnEscape; sl@0: }; sl@0: sl@0: class CShellWindow : public CListWindow, public MProcessObserver sl@0: { sl@0: public: sl@0: CShellWindow(); sl@0: ~CShellWindow(); sl@0: void ConstructL(CTWinBase &parent); sl@0: TBool RunClientL(const TDesC &aName,TBool aTestExecute); sl@0: void SelectedL(TInt aIndex); sl@0: virtual void WinKeyL(const TKeyEvent &aKey,const TTime& aTime); sl@0: void ForegroundAppDialogL(); sl@0: void HeapCountDialogL(); sl@0: void SetPointerZone(TInt aZone); sl@0: void SetAutoLaunch(TBool aAutoLaunch); sl@0: // Virtual function defined in CTBaseWin and overriden in CListWindow sl@0: void PointerL(const TPointerEvent &aPointer,const TTime& aTime); sl@0: // Virtual function defined in CTBaseWin and overriden in CTTitledWindow sl@0: void FocusChanged(TBool aState); sl@0: private: sl@0: void DoShellTests(); sl@0: void BugHunt(); sl@0: void CheckTerminate(); sl@0: //Pure virtual functions defined in CListWindow sl@0: TPtrC GetText(TInt aLine); sl@0: TInt ListCount(); sl@0: //Pure virtual function defined in MProcessObserver sl@0: void ProcessDied(); sl@0: //Simulates SwitchOffEvent sl@0: void SimulateSwitchOffEvent(); sl@0: #ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP sl@0: //Simulates RestartSystemEvent sl@0: void SimulateRestartEvent(); sl@0: //Simulates RestartSystemEvent and test the receiving of off event sl@0: void SimulateAndReceiveRestartEvent(); sl@0: #endif sl@0: sl@0: private: sl@0: TBool iFailModeEnabled; sl@0: TInt iPointerZone; sl@0: CRunningProcess *iProcessList; sl@0: CArrayFixFlat iFileNames; sl@0: CTPointerCursor *iPointerCursor; sl@0: RSoundPlugIn iClick; sl@0: TInt iCaptureKey; sl@0: TBool iAutoLaunch; sl@0: TInt iNumWindowGroups; sl@0: TBool iIsFocused; sl@0: }; sl@0: sl@0: class CTIconWindow : public CTBlankWindow sl@0: { sl@0: public: sl@0: CTIconWindow(TInt aType); sl@0: void InitWinL(); sl@0: void SetExtentL(); sl@0: private: sl@0: TInt iType; sl@0: }; sl@0: sl@0: class CTPasswordWindow: public CTTitledWindow sl@0: { sl@0: public: sl@0: CTPasswordWindow(); sl@0: void InitWin(); sl@0: void Draw(); sl@0: private: sl@0: TPoint iTextPos; sl@0: }; sl@0: sl@0: class CTaskListWindow : public CListWindow sl@0: { sl@0: public: sl@0: CTaskListWindow(); sl@0: void ConstructL(CTWinBase &parent); sl@0: void SelectedL(TInt aIndex); sl@0: private: sl@0: virtual TPtrC GetText(TInt aLine); sl@0: virtual TInt ListCount(); sl@0: private: sl@0: CArrayFixFlat iWindowHandles; sl@0: CArrayFixFlat iWindowThreadNames; sl@0: TBuf iLatestText; sl@0: }; sl@0: sl@0: class CShellWindowGroup : public CTWindowGroup sl@0: { sl@0: public: sl@0: CShellWindowGroup(CTClient *aClient); sl@0: ~CShellWindowGroup(); sl@0: void ConstructL(); sl@0: void KeyL(const TKeyEvent &aKey,const TTime& aTime); sl@0: void ErrorMessage(const TWsErrorMessage &aErrorMessage, const TTime &); sl@0: void ScreenDeviceChangedL(); sl@0: private: sl@0: TUint32 iCapHandle1; sl@0: TUint32 iCapHandle2; sl@0: TUint32 iCapHandle3; sl@0: TUint32 iCapHandle4; sl@0: }; sl@0: sl@0: class CIconWindowGroup : public CTWindowGroup sl@0: { sl@0: public: sl@0: CIconWindowGroup(CTClient *aClient); sl@0: void ConstructL(); sl@0: }; sl@0: sl@0: class CPasswordWindowGroup : public CTWindowGroup sl@0: { sl@0: public: sl@0: CPasswordWindowGroup(CTClient *aClient); sl@0: ~CPasswordWindowGroup(); sl@0: void ConstructL(); sl@0: void KeyL(const TKeyEvent &aKey,const TTime&aTime); sl@0: void Cancel(); sl@0: void PasswordL(const TTime &aTime); sl@0: private: sl@0: CTPasswordWindow *iWin; sl@0: TBool iPasswordMode; sl@0: }; sl@0: sl@0: class CShellClient : public CTClient sl@0: { sl@0: public: sl@0: CShellClient(); sl@0: ~CShellClient(); sl@0: void ConstructL(); sl@0: void KeyL(const TKeyEvent &aKey,const TTime& aTime); sl@0: void Exit(); sl@0: void CreateTestWindowL(CTWin *aWin, const TPoint &aPos); sl@0: void CreateTestWindowL(CTWin *win, const TPoint &aPos, CTWinBase *parent); sl@0: void ErrorDialog(const TDesC &aTitle, TInt aErr); sl@0: void ScreenDeviceChangedL(); sl@0: public: sl@0: RFs iFs; sl@0: private: sl@0: TInt iNum; sl@0: CTWindowGroup *iIconGroup; sl@0: CTIconWindow *iIconWin1; sl@0: CTIconWindow *iIconWin2; sl@0: CTPointerCursor *iPointerCursor; sl@0: CPasswordWindowGroup *iPasswordGroup; sl@0: }; sl@0: sl@0: class ROverrideProtectionInRSessionBase : public RWsSession sl@0: { sl@0: public: sl@0: inline TInt Send(TInt aFunction) const {return(RSessionBase::Send(aFunction,TIpcArgs()));}; sl@0: }; sl@0: sl@0: const TInt Xmove=8; sl@0: const TInt Ymove=6; sl@0: sl@0: const TInt ENumPointerCursors=2; sl@0: sl@0: void DrawShellDragCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *aParam); sl@0: void DrawShellListCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *aParam); sl@0: sl@0: TSpriteCreateParams spriteParams1(TSize(32,32),TPoint(-16,-16),DrawShellListCursor,NULL,EFalse,CGraphicsContext::EDrawModeXOR); sl@0: TSpriteCreateParams spriteParams2(TSize(32,32),TPoint(-16,-16),DrawShellDragCursor,NULL,ETrue,CGraphicsContext::EDrawModePEN); sl@0: sl@0: TSpriteCreateParams *PointerParams[ENumPointerCursors]={&spriteParams1,&spriteParams2}; sl@0: sl@0: sl@0: void Panic(TInt aPanic) sl@0: { sl@0: User::Panic(_L("Shell"),aPanic); sl@0: } sl@0: sl@0: void RShellWsSession::Shutdown() sl@0: { sl@0: RShellWsSession ShellSession; sl@0: ShellSession.Connect(); sl@0: ShellSession.SendShutdown(); sl@0: } sl@0: sl@0: void RShellWsSession::SendShutdown() sl@0: { sl@0: SendReceive(EWservMessShutdown,TIpcArgs(EWservShutdownCheck)); sl@0: } sl@0: sl@0: // sl@0: // Sprite drawing functions // sl@0: // sl@0: sl@0: void DrawPointerCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *) sl@0: { sl@0: aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 0 : 2)); sl@0: aGc->SetBrushStyle(CGraphicsContext::ESolidBrush); sl@0: aGc->SetPenStyle(CGraphicsContext::ENullPen); sl@0: aGc->DrawRect(TRect(aSize)); sl@0: aGc->SetPenStyle(CGraphicsContext::ESolidPen); sl@0: aGc->SetPenColor(TRgb::Gray4(3)); sl@0: aGc->SetBrushColor(TRgb::Gray4(3)); sl@0: aGc->DrawRect(TRect(0,aSize.iHeight/2-1,aSize.iWidth,aSize.iHeight/2+2)); sl@0: aGc->DrawRect(TRect(aSize.iWidth/2-1,0,aSize.iWidth/2+2,aSize.iHeight)); sl@0: if (!aDoMask) sl@0: { sl@0: aGc->SetPenColor(TRgb::Gray4(0)); sl@0: aGc->DrawLine(TPoint(0,aSize.iHeight/2),TPoint(aSize.iWidth,aSize.iHeight/2)); sl@0: aGc->DrawLine(TPoint(aSize.iWidth/2,0),TPoint(aSize.iWidth/2,aSize.iHeight)); sl@0: } sl@0: } sl@0: sl@0: void DrawShellDragCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool aDoMask, TAny *) sl@0: { sl@0: aGc->SetBrushColor(TRgb::Gray4(aDoMask ? 0 : 2)); sl@0: aGc->SetBrushStyle(CGraphicsContext::ESolidBrush); sl@0: aGc->SetPenStyle(CGraphicsContext::ENullPen); sl@0: aGc->DrawRect(TRect(aSize)); sl@0: aGc->SetPenStyle(CGraphicsContext::ESolidPen); sl@0: aGc->SetPenColor(TRgb::Gray4(aDoMask ? 3 : 1)); sl@0: for(TInt y=0;yDrawLine(TPoint(xfact,y),TPoint(aSize.iWidth-xfact,y)); sl@0: } sl@0: } sl@0: sl@0: void DrawShellListCursor(CBitmapContext *aGc,TInt , const TSize &aSize, TBool , TAny *) sl@0: { sl@0: aGc->SetBrushColor(TRgb::Gray4(0)); sl@0: aGc->SetBrushStyle(CGraphicsContext::ESolidBrush); sl@0: aGc->SetPenStyle(CGraphicsContext::ENullPen); sl@0: aGc->DrawRect(TRect(aSize)); sl@0: aGc->SetBrushColor(TRgb::Gray4(3)); sl@0: aGc->DrawRect(TRect(0,aSize.iHeight/2-1,aSize.iWidth,aSize.iHeight/2+2)); sl@0: aGc->DrawRect(TRect(aSize.iWidth/2-1,0,aSize.iWidth/2+2,aSize.iHeight)); sl@0: } sl@0: sl@0: // sl@0: // Calibration window // sl@0: // sl@0: sl@0: CTCalibWindow::CTCalibWindow() sl@0: { sl@0: } sl@0: sl@0: void CTCalibWindow::InitWin() sl@0: { sl@0: UserHal::CalibrationPoints(iCalibPoints); sl@0: AssignGC(*Client()->iGc); sl@0: iWin.SetOrdinalPosition(0,1); sl@0: iWin.Activate(); sl@0: } sl@0: sl@0: void CTCalibWindow::DrawPoint(const TPoint &aPoint, const TDesC &aText) sl@0: { sl@0: iGc->MoveTo(aPoint); sl@0: iGc->MoveBy(TPoint(0,-20)); sl@0: iGc->DrawLineBy(TPoint(0,40)); sl@0: iGc->MoveBy(TPoint(-20,-20)); sl@0: iGc->DrawLineBy(TPoint(40,0)); sl@0: iGc->DrawText(aText, aPoint+TPoint(4,-4)); sl@0: } sl@0: sl@0: void CTCalibWindow::Draw() sl@0: { sl@0: iGc->Clear(); sl@0: DrawPoint(iCalibPoints.iTl,_L("1")); sl@0: DrawPoint(iCalibPoints.iBl,_L("2")); sl@0: DrawPoint(iCalibPoints.iTr,_L("3")); sl@0: DrawPoint(iCalibPoints.iBr,_L("4")); sl@0: } sl@0: sl@0: void CTCalibWindow::PointerL(const TPointerEvent &aPointer,const TTime& ) sl@0: { sl@0: if (aPointer.iType==TPointerEvent::EButton1Down) sl@0: { sl@0: switch(iCount++) sl@0: { sl@0: case 0: sl@0: iReturnValues.iTl=aPointer.iPosition; sl@0: break; sl@0: case 1: sl@0: iReturnValues.iBl=aPointer.iPosition; sl@0: break; sl@0: case 2: sl@0: iReturnValues.iTr=aPointer.iPosition; sl@0: break; sl@0: case 3: sl@0: iReturnValues.iBr=aPointer.iPosition; sl@0: UserHal::SetXYInputCalibration(iReturnValues); sl@0: delete this; sl@0: break; sl@0: } sl@0: } sl@0: } sl@0: sl@0: // sl@0: // Error dialog // sl@0: // sl@0: sl@0: CShellErrorDialog::CShellErrorDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc) : CTDialog(), sl@0: iGroupWin(aGroupWin), sl@0: iGc(aGc) sl@0: { sl@0: } sl@0: sl@0: void CShellErrorDialog::ButtonPressL(TInt aButton) sl@0: { sl@0: if (aButton==0) sl@0: CTDialog::ButtonPressL(aButton); sl@0: } sl@0: sl@0: void CShellErrorDialog::ConstructLD() sl@0: { sl@0: CTDialog::ConstructLD(*iGroupWin, *iGc); sl@0: } sl@0: sl@0: // sl@0: // Offscreen icon->button window // sl@0: // sl@0: sl@0: CTIconWindow::CTIconWindow(TInt aType) : iType(aType) sl@0: { sl@0: } sl@0: sl@0: void CTIconWindow::InitWinL() sl@0: { sl@0: SetExtentL(); sl@0: iWin.SetShadowDisabled(ETrue); sl@0: Activate(); sl@0: } sl@0: sl@0: void CTIconWindow::SetExtentL() sl@0: { sl@0: enum {ENumYKeys=5}; sl@0: enum {ENumXKeys=9}; sl@0: TRect digRect(Client()->iScreen->PointerRect()); sl@0: TSize scrSize(Client()->iScreen->SizeInPixels()); sl@0: TInt ypos=0; sl@0: TInt count=0; sl@0: iWin.RemoveAllKeyRects(); sl@0: if (iType==0) sl@0: { sl@0: for (;count err; sl@0: err.Format(TRefByValue(_L("Error %d")),aErr); sl@0: DisplayDialog(this, aTitle, err,_L("")); sl@0: } sl@0: sl@0: CListWindow::CListWindow() : CTTitledWindow(), iPrevTime(0) sl@0: { sl@0: iColorMap[0]=TRgb::Gray4(0); sl@0: iColorMap[1]=TRgb::Gray4(3); sl@0: iColorMap[2]=TRgb::Gray4(3); sl@0: iColorMap[3]=TRgb::Gray4(0); sl@0: } sl@0: sl@0: void CListWindow::CloseWindow() sl@0: { sl@0: CTClient *client=((CShellClient *)Client()); sl@0: CTWin::Delete(this); sl@0: client->ResetFocus(); sl@0: } sl@0: sl@0: void CListWindow::SetExt(const TPoint &aPos, const TSize &) sl@0: { sl@0: SetPos(aPos); sl@0: } sl@0: sl@0: void CListWindow::SetSize(const TSize &) sl@0: { sl@0: } sl@0: sl@0: void CListWindow::SetSize() sl@0: { sl@0: iSize.iHeight=ListCount()*(iFont->HeightInPixels()+1)+iTitleHeight+2; sl@0: iSize.iWidth=iFont->TextWidthInPixels(*Client()->Title())+30; sl@0: for(TInt index=0;indexTextWidthInPixels(GetText(index)); sl@0: if (wid>iSize.iWidth) sl@0: iSize.iWidth=wid; sl@0: } sl@0: iSize.iWidth+=4; sl@0: iWin.SetSize(iSize); sl@0: Resized(iSize); sl@0: } sl@0: sl@0: void CListWindow::ConstructL(CTWinBase &parent, TBool aExitOnEscape) sl@0: { sl@0: iExitOnEscape=aExitOnEscape; sl@0: CTTitledWindow::ConstructL(parent); sl@0: } sl@0: sl@0: void CListWindow::SetListPos(TInt aNewPos) sl@0: { sl@0: if (aNewPos>=0 && aNewPosHeightInPixels()+1); sl@0: } sl@0: sl@0: void CListWindow::RowBox(TRect &aRect, TInt aRow) const sl@0: { sl@0: aRect.iTl.iX=2; sl@0: aRect.iTl.iY=iTitleHeight+TextRowHeight()*aRow; sl@0: aRect.iBr.iX=iSize.iWidth-2; sl@0: aRect.iBr.iY=aRect.iTl.iY+TextRowHeight(); sl@0: } sl@0: sl@0: void CListWindow::Draw() sl@0: { sl@0: CTTitledWindow::Draw(); sl@0: iGc->SetPenColor(TRgb::Gray16(0)); sl@0: TPoint pos(2,iTitleHeight+iFont->AscentInPixels()+2); sl@0: TInt gap=TextRowHeight(); sl@0: for(TInt index=0;indexDrawText(GetText(index), pos); sl@0: if (index==iListPos) sl@0: { sl@0: TRect rect; sl@0: RowBox(rect,index); sl@0: iGc->MapColors(rect,iColorMap); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void CListWindow::Resized(const TSize &aSize) sl@0: { sl@0: SetDragRect(TRect(0,0,aSize.iWidth,iTitleHeight)); sl@0: } sl@0: sl@0: // sl@0: // CShellWindow class // sl@0: // sl@0: sl@0: CShellWindow::CShellWindow() : CListWindow(), iFileNames(4) sl@0: { sl@0: } sl@0: sl@0: CShellWindow::~CShellWindow() sl@0: { sl@0: if (iCaptureKey) sl@0: Client()->iGroup->GroupWin()->CancelCaptureKey(iCaptureKey); sl@0: delete iPointerCursor; sl@0: while(iProcessList) sl@0: delete iProcessList; sl@0: } sl@0: sl@0: void CShellWindow::SetPointerZone(TInt aZone) sl@0: { sl@0: TRAPD(err,iPointerCursor->UpdateL(0, PointerParams[aZone])); sl@0: if (err!=KErrNone) sl@0: ((CShellClient *)Client())->ErrorDialog(_L("Error Changing Pointer"), err); sl@0: else sl@0: iPointerZone=aZone; sl@0: } sl@0: sl@0: void CShellWindow::SetAutoLaunch(TBool aAutoLaunch) sl@0: { sl@0: iAutoLaunch=aAutoLaunch; sl@0: if (aAutoLaunch) sl@0: iNumWindowGroups=Client()->iWs.NumWindowGroups(); sl@0: } sl@0: sl@0: void CShellWindow::PointerL(const TPointerEvent &aPointer,const TTime& aTime) sl@0: { sl@0: TInt zone=(aPointer.iPosition.iYiFs,dllListFileName.FullName(),EFileShareReadersOnly|EFileStreamText)); sl@0: #else sl@0: User::LeaveIfError(dllList.Open(((CShellClient *)Client())->iFs,_L("Z:\\SYSTEM\\DATA\\DLL_LIST.TXT"),EFileShareReadersOnly|EFileStreamText)); sl@0: #endif sl@0: TBuf8<0x200> dllNames; sl@0: User::LeaveIfError(dllList.Read(dllNames)); sl@0: dllList.Close(); sl@0: TPtrC8 name(dllNames); sl@0: FOREVER sl@0: { sl@0: TInt pos=name.Locate('\r'); sl@0: if (pos==KErrNotFound) sl@0: break; sl@0: if (pos<=KMaxFileName) sl@0: { sl@0: TFileName buf; sl@0: buf.Copy(name.Left(pos)); sl@0: iFileNames.AppendL(buf); sl@0: } sl@0: name.Set(name.Mid(pos+2)); sl@0: }; sl@0: SetSize(); sl@0: BaseWin()->PointerFilter(EPointerFilterMove|EPointerFilterDrag,0); sl@0: iPointerCursor=new(ELeave) CTPointerCursor(Client()->iWs); sl@0: iPointerCursor->ConstructL(0); sl@0: SetPointerZone(0); sl@0: iWin.SetCustomPointerCursor(iPointerCursor->PointerCursor()); sl@0: iClick=RSoundPlugIn(Client()->iWs); sl@0: User::LeaveIfError(iClick.Construct(TUid::Uid(CLICK_THIRD_UID))); sl@0: TBool isChangeAble; sl@0: if (iClick.IsLoaded(isChangeAble)) sl@0: { sl@0: TInt ret=Client()->iGroup->GroupWin()->CaptureKey(3,EModifierCtrl|EModifierShift|EModifierFunc sl@0: ,EModifierCtrl|EModifierShift|EModifierFunc); //Ctrl-Alt-Shift-C sl@0: User::LeaveIfError(ret); sl@0: iCaptureKey=ret; sl@0: } sl@0: } sl@0: sl@0: TBool CShellWindow::RunClientL(const TDesC &aName,TBool aTestExecute) sl@0: { sl@0: if (aName.Length()!=0) sl@0: { sl@0: CRunningProcess* rp=new(ELeave) CRunningProcess(this); sl@0: rp->Link(&iProcessList); sl@0: CActiveScheduler::Add(rp); sl@0: TInt err=KErrNone; //To stop a warning sl@0: if (aTestExecute) sl@0: { sl@0: TRAP(err,rp->ConstructTestExecuteL(aName)); sl@0: } sl@0: else sl@0: { sl@0: TRAP(err,rp->ConstructL(aName)); sl@0: } sl@0: if (err!=KErrNone) sl@0: { sl@0: delete rp; sl@0: User::Leave(err); sl@0: } sl@0: return ETrue; sl@0: } sl@0: return EFalse; sl@0: } sl@0: sl@0: void CShellWindow::SelectedL(TInt aIndex) sl@0: { sl@0: TPtrC name=GetText(aIndex); sl@0: if (aIndex==INDEX_FOR_SHELL_TEST && name==SHELL_TEST_NAME) sl@0: { sl@0: DoShellTests(); sl@0: return; sl@0: } sl@0: #ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP sl@0: else if (aIndex==INDEX_FOR_RESTART_TEST && name==RESTART_TEST_NAME) sl@0: { sl@0: SimulateRestartEvent(); sl@0: return; sl@0: } sl@0: else if (aIndex==INDEX_FOR_RESTART_EVENT_TEST && name==RESTART_EVENT_TEST_NAME) sl@0: { sl@0: SimulateAndReceiveRestartEvent(); sl@0: return; sl@0: } sl@0: #endif sl@0: TRAPD(err,RunClientL(GetText(aIndex),EFalse)); sl@0: if (err==KErrNotFound) sl@0: { sl@0: TRAP(err,RunClientL(GetText(aIndex),ETrue)); sl@0: } sl@0: if (err!=KErrNone) sl@0: ((CShellClient *)Client())->ErrorDialog(_L("Error launching process"), err); sl@0: } sl@0: sl@0: TPtrC CShellWindow::GetText(TInt aLine) sl@0: { sl@0: return(TPtrC(iFileNames[aLine])); sl@0: } sl@0: sl@0: TInt CShellWindow::ListCount() sl@0: { sl@0: return(iFileNames.Count()); sl@0: } sl@0: sl@0: void CShellWindow::ForegroundAppDialogL() sl@0: { sl@0: TInt focusGroup; sl@0: TName winName; sl@0: TThreadId threadId; sl@0: User::LeaveIfError(focusGroup=Client()->iWs.GetFocusWindowGroup()); sl@0: User::LeaveIfError(Client()->iWs.GetWindowGroupClientThreadId(focusGroup, threadId)); sl@0: User::LeaveIfError(Client()->iWs.GetWindowGroupNameFromIdentifier(focusGroup,winName)); sl@0: RThread thread; sl@0: User::LeaveIfError(thread.Open(threadId)); sl@0: CShellErrorDialog *dialog=new(ELeave) CShellErrorDialog(Client()->iGroup, iGc); sl@0: dialog->ConstructLD(); sl@0: dialog->SetTitle(_L("The Foreground App Is")); sl@0: dialog->SetLine1(thread.FullName()); sl@0: thread.Close(); sl@0: dialog->SetLine2(winName); sl@0: dialog->SetNumButtons(1); sl@0: dialog->SetButtonText(0,_L("Okay")); sl@0: if (dialog->Display()!=0) sl@0: Panic(0); sl@0: dialog=NULL; sl@0: } sl@0: sl@0: void CShellWindow::HeapCountDialogL() sl@0: { sl@0: CShellErrorDialog *dialog=new(ELeave) CShellErrorDialog(Client()->iGroup, iGc); sl@0: dialog->ConstructLD(); sl@0: dialog->SetTitle(_L("Wserv Heap Count")); sl@0: TBuf<0x20> line1; sl@0: line1.Format(TRefByValue(_L("Count=%d")),Client()->iWs.HeapCount()); sl@0: dialog->SetLine1(line1); sl@0: dialog->SetNumButtons(1); sl@0: dialog->SetButtonText(0,_L("Okay")); sl@0: if (dialog->Display()!=0) sl@0: Panic(0); sl@0: dialog=NULL; sl@0: } sl@0: sl@0: void CShellWindow::WinKeyL(const TKeyEvent &aKey,const TTime& aTime) sl@0: { sl@0: TBool funcKeyPressed=aKey.iModifiers&EModifierFunc; sl@0: if (aKey.iModifiers&EModifierCtrl) sl@0: { sl@0: switch(aKey.iCode) sl@0: { sl@0: case EKeyLeftArrow: sl@0: { sl@0: TInt col=Client()->iWs.GetBackgroundColor().Gray16(); sl@0: if (col>0) sl@0: Client()->iWs.SetBackgroundColor(TRgb::Gray16(col-1)); sl@0: } sl@0: break; sl@0: case EKeyRightArrow: sl@0: { sl@0: TInt col=Client()->iWs.GetBackgroundColor().Gray16(); sl@0: if (col<15) sl@0: Client()->iWs.SetBackgroundColor(TRgb::Gray16(col+1)); sl@0: } sl@0: break; sl@0: case EKeyTab: sl@0: if (funcKeyPressed) sl@0: ForegroundAppDialogL(); sl@0: else sl@0: { sl@0: Group()->GroupWin()->SetOrdinalPosition(0); sl@0: ((CShellClient *)Client())->CreateTestWindowL(new(ELeave) CTaskListWindow(), TPoint(50,30)); sl@0: Client()->ResetFocus(); sl@0: } sl@0: break; sl@0: case 1: //Ctrl-A sl@0: case 17: //Ctrl-Q sl@0: SetPos(TPoint(3,(Client()->iScreen->SizeInPixels().iHeight-Size().iHeight)/2)); sl@0: break; sl@0: case 2: //Ctrl-B sl@0: case 23: //Ctrl-W sl@0: SetPos(TPoint((Client()->iScreen->SizeInPixels().iWidth-Size().iWidth)/2,(Client()->iScreen->SizeInPixels().iHeight-Size().iHeight)/2)); sl@0: break; sl@0: case 3: //Ctrl-C sl@0: case 5: //Ctrl-E sl@0: if (funcKeyPressed && aKey.iModifiers&EModifierShift && aKey.iCode==3) //Ctrl-Alt-Sh-C sl@0: iClick.CommandReply(EClickCommandToggleOutput,TPtrC8(NULL,0)); sl@0: else sl@0: SetPos(TPoint(Client()->iScreen->SizeInPixels().iWidth-Size().iWidth-3,(Client()->iScreen->SizeInPixels().iHeight-Size().iHeight)/2)); sl@0: break; sl@0: case 18: //Ctrl-R sl@0: { sl@0: CWsScreenDevice* screen=Client()->iScreen; sl@0: TPixelsAndRotation sizeAndRotation; sl@0: screen->GetScreenModeSizeAndRotation(0,sizeAndRotation); sl@0: Client()->iWs.SetPointerCursorArea(0,TRect(sizeAndRotation.iPixelSize)); sl@0: screen->SetCurrentRotations(0,CFbsBitGc::EGraphicsOrientationNormal); sl@0: screen->SetScreenMode(0); sl@0: CArrayFixFlat *rotations=new(ELeave) CArrayFixFlat(1); sl@0: CleanupStack::PushL(rotations); sl@0: TInt numModes=screen->NumScreenModes(); sl@0: TInt ii,err; sl@0: for (ii=1;iiGetRotationsList(ii,rotations); sl@0: if (err==KErrNone) sl@0: screen->SetCurrentRotations(ii,REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,(*rotations)[0])); sl@0: } sl@0: CleanupStack::PopAndDestroy(); sl@0: } sl@0: break; sl@0: default: sl@0: goto not_used; sl@0: } sl@0: } sl@0: else if (funcKeyPressed) sl@0: { sl@0: switch(aKey.iCode) sl@0: { sl@0: case 'c': sl@0: { sl@0: CTCalibWindow *win=new(ELeave) CTCalibWindow(); sl@0: win->ConstructL(*Client()->iGroup); sl@0: } sl@0: break; sl@0: case 's': // Sleep sl@0: User::After(2000000); sl@0: break; sl@0: case 'd': sl@0: DisplayDialog(_L("Dialog test"),_L("Line of text"),_L("")); sl@0: break; sl@0: case 'o': sl@0: UserHal::SwitchOff(); sl@0: break; sl@0: case 'f': sl@0: if (iFailModeEnabled) sl@0: ((CShellClient *)Client())->iWs.HeapSetFail(RHeap::ENone,0); sl@0: else sl@0: ((CShellClient *)Client())->iWs.HeapSetFail(RHeap::ERandom,20); sl@0: iFailModeEnabled=!iFailModeEnabled; sl@0: break; sl@0: case 'x': sl@0: case 'X': sl@0: if (aKey.iModifiers&EModifierShift) sl@0: RShellWsSession::Shutdown(); sl@0: else sl@0: ((CShellClient *)Client())->Exit(); sl@0: break; sl@0: case 'l': sl@0: Client()->iWs.LogMessage(_L("Hello, this is log test")); sl@0: break; sl@0: case 'h': sl@0: HeapCountDialogL(); sl@0: break; sl@0: case 'b': sl@0: BugHunt(); sl@0: break; sl@0: case EKeyLeftArrow: sl@0: AdjustSize(-Xmove,0,aKey.iModifiers); sl@0: break; sl@0: case EKeyRightArrow: sl@0: AdjustSize(Xmove,0,aKey.iModifiers); sl@0: break; sl@0: case EKeyUpArrow: sl@0: AdjustSize(0,-Ymove,aKey.iModifiers); sl@0: break; sl@0: case EKeyDownArrow: sl@0: AdjustSize(0,Ymove,aKey.iModifiers); sl@0: break; sl@0: default: sl@0: goto not_used; sl@0: } sl@0: } sl@0: else sl@0: goto not_used; sl@0: return; sl@0: not_used: sl@0: CListWindow::WinKeyL(aKey,aTime); sl@0: } sl@0: sl@0: void CShellWindow::FocusChanged(TBool aState) sl@0: { sl@0: CListWindow::FocusChanged(aState); sl@0: iIsFocused=aState; sl@0: CheckTerminate(); sl@0: } sl@0: sl@0: void CShellWindow::DoShellTests() sl@0: // sl@0: //Doing testing that can only be done from the shell sl@0: // sl@0: { sl@0: /*Group()->GroupWin()->EnableReceiptOfFocus(EFalse); sl@0: BaseWin()->SetSizeErr(TSize(160,220)); sl@0: Group()->GroupWin()->EnableReceiptOfFocus(ETrue); sl@0: */ sl@0: SimulateSwitchOffEvent(); sl@0: } sl@0: sl@0: /** sl@0: Sends the raw events to the current registered window session. sl@0: Since no Window Group is allowed to request the off events, sl@0: WServ shall handle these raw events. sl@0: */ sl@0: void CShellWindow::SimulateSwitchOffEvent() sl@0: { sl@0: TRawEvent rawEvent; sl@0: rawEvent.Set(TRawEvent::ESwitchOff); sl@0: Client()->iWs.SimulateRawEvent(rawEvent); sl@0: Client()->iWs.Flush(); sl@0: } sl@0: sl@0: #ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-0404 sl@0: @SYMTestCaseDesc Restart system event can be successfully sent through WServ sl@0: @SYMPREQ PREQ1089 sl@0: @SYMREQ REQ6883 sl@0: @SYMTestStatus Implemented sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Test restart system event in WServ sl@0: @SYMTestActions The test code will simulate a 'restart event'. sl@0: @SYMTestExpectedResults The system should restart (manually observed). sl@0: */ sl@0: void CShellWindow::SimulateRestartEvent() sl@0: { sl@0: TRawEvent rawEvent; sl@0: rawEvent.Set(TRawEvent::ERestartSystem); sl@0: Client()->iWs.SimulateRawEvent(rawEvent); sl@0: Client()->iWs.Flush(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-WSERV-0405 sl@0: @SYMTestCaseDesc Restart system event can be received by client that have registered for off event sl@0: @SYMPREQ PREQ1089 sl@0: @SYMREQ REQ6883 sl@0: @SYMTestStatus Implemented sl@0: @SYMTestPriority High sl@0: @SYMTestPurpose Test restart system event in WServ with off event handler sl@0: @SYMTestActions The test code will register for off event, simulate a 'restart event' and then receive the restart event sl@0: @SYMTestExpectedResults Verify that the restart event is received and the testPass dialog displayed for this test (manually observed). sl@0: */ sl@0: void CShellWindow::SimulateAndReceiveRestartEvent() sl@0: { sl@0: const TInt KEventWaitTimer = 5000000; // 5 sec, The wait time that this test will wait for the restart event before declaring this test fail sl@0: TInt err = Client()->iWs.RequestOffEvents(ETrue, Client()->iGroup->GroupWin()); sl@0: if (err != KErrNone) sl@0: { sl@0: static_cast(Client())->ErrorDialog(_L("Failed to request off event"),err); sl@0: } sl@0: sl@0: TRawEvent rawEvent; sl@0: rawEvent.Set(TRawEvent::ERestartSystem); sl@0: Client()->iWs.SimulateRawEvent(rawEvent); sl@0: sl@0: TRequestStatus status; sl@0: Client()->iWs.EventReady(&status); sl@0: Client()->iWs.Flush(); sl@0: User::WaitForRequest(status); sl@0: sl@0: TWsEvent event; sl@0: RTimer timer; sl@0: timer.CreateLocal(); sl@0: TRequestStatus timerStatus; sl@0: timer.After(timerStatus,KEventWaitTimer); sl@0: TBool testPass=EFalse; sl@0: while (timerStatus != KErrNone) // wait for the restart event until timer expire sl@0: { sl@0: Client()->iWs.GetEvent(event); sl@0: if (event.Type() == EEventRestartSystem) sl@0: { sl@0: timer.Cancel(); sl@0: User::WaitForRequest(timerStatus); // to receive the cancel event sl@0: sl@0: testPass = ETrue; sl@0: _LIT(KTestPass,"TestPassed"); sl@0: TWindowTitle winTitle(KTestPass); sl@0: DisplayDialog(Client(), winTitle, _L("Received Restart Event"), KNullDesC); sl@0: break; sl@0: } sl@0: sl@0: // probably got pointer event above instead of restart event, so try getting the next event until we see retart event sl@0: Client()->iWs.EventReady(&status); sl@0: User::WaitForRequest(status, timerStatus); sl@0: } sl@0: sl@0: if (testPass == EFalse) sl@0: { sl@0: // timer expired before getting restart event sl@0: _LIT(KTestPass,"TestFailed"); sl@0: TWindowTitle winTitle(KTestPass); sl@0: DisplayDialog(Client(), winTitle, _L("Did not receive Restart Event"), KNullDesC); sl@0: } sl@0: sl@0: timer.Close(); sl@0: sl@0: Client()->iWs.RequestOffEvents(EFalse); sl@0: } sl@0: sl@0: #endif sl@0: sl@0: void CShellWindow::BugHunt() sl@0: // sl@0: // Attempt to reproduce messaging issue while program exiting with message outstanding sl@0: // sl@0: { sl@0: RThread().SetPriority(EPriorityRealTime); sl@0: ((ROverrideProtectionInRSessionBase *)&(Client()->iWs))->Send(1); sl@0: RThread().Kill(0); sl@0: } sl@0: sl@0: void CShellWindow::CheckTerminate() sl@0: { sl@0: if (iIsFocused && iAutoLaunch && iProcessList==NULL && iNumWindowGroups==Client()->iWs.NumWindowGroups()) sl@0: { sl@0: #if defined(__WINS__) sl@0: delete this; sl@0: RShellWsSession::Shutdown(); sl@0: #else sl@0: // on hardware for automated test purposes cause board to crash to sl@0: // indicate the completion of test run sl@0: User::SetCritical(User::ESystemCritical); sl@0: User::Panic(_L("test"), KErrGeneral); sl@0: #endif sl@0: } sl@0: } sl@0: sl@0: void CShellWindow::ProcessDied() sl@0: { sl@0: CheckTerminate(); sl@0: } sl@0: sl@0: // sl@0: // End of CShellWindow class // sl@0: // sl@0: sl@0: // sl@0: // CTaskListWindow class // sl@0: // sl@0: sl@0: CTaskListWindow::CTaskListWindow() : CListWindow(), iWindowHandles(4), iWindowThreadNames(4) sl@0: { sl@0: } sl@0: sl@0: void CTaskListWindow::ConstructL(CTWinBase &parent) sl@0: { sl@0: CListWindow::ConstructL(parent,ETrue); sl@0: User::LeaveIfError(Client()->iWs.WindowGroupList(0,&iWindowHandles)); sl@0: for(TInt index=0;indexiWs.GetWindowGroupClientThreadId(iWindowHandles[index],id); sl@0: RThread thread; sl@0: User::LeaveIfError(thread.Open(id)); sl@0: iWindowThreadNames.AppendL(thread.FullName()); sl@0: thread.Close(); sl@0: } sl@0: SetSize(); sl@0: } sl@0: sl@0: void CTaskListWindow::SelectedL(TInt aIndex) sl@0: { sl@0: Client()->iWs.SetWindowGroupOrdinalPosition(iWindowHandles[aIndex], 0); sl@0: CloseWindow(); sl@0: } sl@0: sl@0: TPtrC CTaskListWindow::GetText(TInt aLine) sl@0: { sl@0: iLatestText=iWindowThreadNames[aLine]; sl@0: iLatestText.Append(_L("::")); sl@0: TName winName; sl@0: if (Client()->iWs.GetWindowGroupNameFromIdentifier(iWindowHandles[aLine],winName)==KErrNone) sl@0: iLatestText.Append(winName); sl@0: return(iLatestText); sl@0: } sl@0: sl@0: TInt CTaskListWindow::ListCount() sl@0: { sl@0: return(iWindowHandles.Count()); sl@0: } sl@0: // sl@0: // End of CTaskListWindow class // sl@0: // sl@0: sl@0: CShellWindowGroup::CShellWindowGroup(CTClient *aClient) : CTWindowGroup(aClient) sl@0: { sl@0: } sl@0: sl@0: CShellWindowGroup::~CShellWindowGroup() sl@0: { sl@0: iGroupWin.CancelCaptureKey(iCapHandle1); sl@0: iGroupWin.CancelCaptureKey(iCapHandle2); sl@0: iGroupWin.CancelCaptureKey(iCapHandle3); sl@0: iGroupWin.CancelCaptureKey(iCapHandle4); sl@0: } sl@0: sl@0: void CShellWindowGroup::ConstructL() sl@0: { sl@0: CTWindowGroup::ConstructL(); sl@0: iCapHandle1=User::LeaveIfError(iGroupWin.CaptureKey(EKeyTab, EModifierCtrl|EModifierShift|EModifierPureKeycode,EModifierCtrl|EModifierShift|EModifierPureKeycode)); sl@0: iGroupWin.DefaultOwningWindow(); sl@0: iGroupWin.EnableErrorMessages(EEventControlOnlyWithKeyboardFocus); sl@0: iGroupWin.EnableScreenChangeEvents(); sl@0: } sl@0: sl@0: void CShellWindowGroup::KeyL(const TKeyEvent &aKey,const TTime& aTime) sl@0: { sl@0: if (iCurWin) sl@0: iCurWin->WinKeyL(aKey,aTime); sl@0: } sl@0: sl@0: void CShellWindowGroup::ErrorMessage(const TWsErrorMessage &aErrorMessage, const TTime &) sl@0: { sl@0: TBuf<0x40> errorText; sl@0: switch(aErrorMessage.iErrorCategory) sl@0: { sl@0: case TWsErrorMessage::EDrawingRegion: sl@0: { sl@0: _LIT(Graphics,"Graphics %d"); sl@0: errorText.Format(Graphics,aErrorMessage.iError); sl@0: } sl@0: break; sl@0: case TWsErrorMessage::EBackLight: sl@0: { sl@0: _LIT(Backlight,"Backlight %d"); sl@0: errorText.Format(Backlight,aErrorMessage.iError); sl@0: } sl@0: break; sl@0: case TWsErrorMessage::ELogging: sl@0: { sl@0: _LIT(Logging,"Error Starting Logging: %d, Location: %d"); sl@0: // minus the error value is stored in the bottom 8 bits sl@0: // an indication of position in the code, that the error occured in, is stored in the top 24 bits sl@0: TInt line=(aErrorMessage.iError)&0xFFFFFF00; sl@0: errorText.Format(Logging,line-aErrorMessage.iError,line>>8); sl@0: } sl@0: break; sl@0: case TWsErrorMessage::EContrast: sl@0: { sl@0: _LIT(Contrast,"Contrast %d"); sl@0: errorText.Format(Contrast,aErrorMessage.iError); sl@0: } sl@0: break; sl@0: default: sl@0: { sl@0: _LIT(Unknown,"Unknown %d"); sl@0: errorText.Format(Unknown,aErrorMessage.iError); sl@0: } sl@0: break; sl@0: } sl@0: _LIT(WservError,"Wserv error"); sl@0: TWindowTitle winTitle(WservError); sl@0: DisplayDialog(Client(), winTitle, errorText, KNullDesC); sl@0: } sl@0: sl@0: void CShellWindowGroup::ScreenDeviceChangedL() sl@0: { sl@0: TPixelsTwipsAndRotation sizeAndRotation; sl@0: Client()->iScreen->GetDefaultScreenSizeAndRotation(sizeAndRotation); sl@0: Client()->iScreen->SetScreenSizeAndRotation(sizeAndRotation); sl@0: ((CShellClient *)Client())->ScreenDeviceChangedL(); sl@0: } sl@0: sl@0: // sl@0: sl@0: CIconWindowGroup::CIconWindowGroup(CTClient *aClient) : CTWindowGroup(aClient) sl@0: { sl@0: } sl@0: sl@0: void CIconWindowGroup::ConstructL() sl@0: { sl@0: CTWindowGroup::ConstructL(); sl@0: iGroupWin.EnableReceiptOfFocus(EFalse); sl@0: iGroupWin.SetOrdinalPosition(0,100); sl@0: } sl@0: sl@0: // sl@0: // password window // sl@0: // sl@0: sl@0: CTPasswordWindow::CTPasswordWindow() sl@0: { sl@0: } sl@0: sl@0: void CTPasswordWindow::InitWin() sl@0: { sl@0: TInt wid=iFont->TextWidthInPixels(_L("Press Enter")); sl@0: iTextPos.iX=(iWin.Size().iWidth-wid)/2; sl@0: iTextPos.iY=(iWin.Size().iHeight)/2; sl@0: } sl@0: sl@0: void CTPasswordWindow::Draw() sl@0: { sl@0: CTTitledWindow::Draw(); sl@0: iGc->DrawText(_L("Press Enter"),iTextPos); sl@0: } sl@0: sl@0: // sl@0: sl@0: CPasswordWindowGroup::CPasswordWindowGroup(CTClient *aClient) : CTWindowGroup(aClient) sl@0: { sl@0: } sl@0: sl@0: CPasswordWindowGroup::~CPasswordWindowGroup() sl@0: { sl@0: delete iWin; sl@0: } sl@0: sl@0: void CPasswordWindowGroup::PasswordL(const TTime &) sl@0: { sl@0: __ASSERT_DEBUG(!iPasswordMode,Panic(EShellPanicPassword)); sl@0: iPasswordMode=ETrue; sl@0: iWin->SetTitle(_L("Password Mode Enabled")); sl@0: } sl@0: sl@0: void CPasswordWindowGroup::Cancel() sl@0: { sl@0: iPasswordMode=EFalse; sl@0: iWin->SetVisible(EFalse); sl@0: iGroupWin.SetOrdinalPosition(0,-1000); sl@0: iWin->SetTitle(_L("Why am I here?")); sl@0: } sl@0: sl@0: void CPasswordWindowGroup::KeyL(const TKeyEvent &aKey,const TTime&) sl@0: { sl@0: if (iPasswordMode && aKey.iCode==EKeyEnter) sl@0: { sl@0: Client()->iWs.PasswordEntered(); sl@0: Cancel(); sl@0: } sl@0: } sl@0: sl@0: void CPasswordWindowGroup::ConstructL() sl@0: { sl@0: CTWindowGroup::ConstructL(); sl@0: iGroupWin.SetOrdinalPosition(-1); sl@0: iWin=new(ELeave) CTPasswordWindow(); sl@0: iWin->ConstructL(*this); sl@0: iWin->AssignGC(*Client()->iGc); sl@0: Cancel(); sl@0: iWin->Win()->PasswordWindow(EPasswordAlwaysTriggerNow); sl@0: iWin->Activate(); sl@0: SetCurrentWindow(iWin); sl@0: } sl@0: sl@0: // sl@0: sl@0: CShellClient::CShellClient() sl@0: { sl@0: } sl@0: sl@0: void CShellClient::CreateTestWindowL(CTWin *aWin, const TPoint &aPos,CTWinBase *parent) sl@0: { sl@0: TRAPD(err,aWin->ConstructL(*parent)); sl@0: if (err!=KErrNone) sl@0: { sl@0: delete aWin; sl@0: User::Leave(err); sl@0: } sl@0: aWin->SetInitialPos(aPos); sl@0: aWin->Activate(); sl@0: aWin->AssignGC(*iGc); sl@0: } sl@0: sl@0: void CShellClient::CreateTestWindowL(CTWin *aWin, const TPoint &aPos) sl@0: { sl@0: CreateTestWindowL(aWin, aPos, iGroup); sl@0: } sl@0: sl@0: CShellClient::~CShellClient() sl@0: { sl@0: delete iPointerCursor; sl@0: delete iIconWin1; sl@0: delete iIconWin2; sl@0: delete iIconGroup; sl@0: delete iPasswordGroup; sl@0: iWs.FreeSystemPointerCursorList(); sl@0: iFs.Close(); sl@0: } sl@0: sl@0: sl@0: void CShellClient::ConstructL() sl@0: { sl@0: User::LeaveIfError(iFs.Connect()); sl@0: CTClient::ConstructL(); sl@0: iWs.RequestOffEvents(EFalse); //To test this function sl@0: sl@0: TBool keyClicksSupported=EFalse; sl@0: HAL::Get(HALData::EKeyboardClick,keyClicksSupported); sl@0: if (keyClicksSupported) sl@0: { sl@0: HAL::Set(HALData::EKeyboardClickState,1); sl@0: TInt maxVol=1; sl@0: HAL::Get(HALData::EKeyboardClickVolumeMax,maxVol); sl@0: HAL::Set(HALData::EKeyboardClickVolume,maxVol); sl@0: } sl@0: sl@0: iWs.SetDoubleClick(TTimeIntervalMicroSeconds32(EDoubleClickTime), EDoubleClickDistance); sl@0: sl@0: User::LeaveIfError(iWs.SetHotKey(EHotKeyBacklightToggle, 2, EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc|EModifierCtrl|EModifierShift)); sl@0: User::LeaveIfError(iWs.SetHotKey(EHotKeyBacklightOn, 14, EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc|EModifierCtrl|EModifierShift)); sl@0: User::LeaveIfError(iWs.SetHotKey(EHotKeyBacklightOff, 13, EModifierFunc|EModifierCtrl|EModifierShift,EModifierFunc|EModifierCtrl|EModifierShift)); sl@0: // sl@0: iGroup=new(ELeave) CShellWindowGroup(this); sl@0: iGroup->ConstructL(); sl@0: iWs.RequestOffEvents(ETrue,iGroup->GroupWin()); //To test this function sl@0: iWs.RequestOffEvents(EFalse); sl@0: iIconGroup=new(ELeave) CIconWindowGroup(this); sl@0: iIconGroup->ConstructL(); sl@0: iIconWin1=new(ELeave) CTIconWindow(0); sl@0: iIconWin1->ConstructL(*iIconGroup); sl@0: iIconWin2=new(ELeave) CTIconWindow(1); sl@0: iIconWin2->ConstructL(*iIconGroup); sl@0: sl@0: CShellWindow *win=new(ELeave) CShellWindow(); sl@0: CreateTestWindowL(win, TPoint(330,10)); sl@0: TWinCommand command; sl@0: User::CommandLine(command); sl@0: win->SetAutoLaunch(win->RunClientL(command,EFalse)); sl@0: sl@0: iPointerCursor=new(ELeave) CTPointerCursor(iWs); sl@0: TSpriteCreateParams params(TSize(24,48),TPoint(-12,-24),DrawPointerCursor,NULL, ETrue,CGraphicsContext::EDrawModePEN); sl@0: iPointerCursor->ConstructL(1,¶ms,0); sl@0: iGroup->GroupWin()->SetCustomPointerCursor(iPointerCursor->PointerCursor()); sl@0: ResetFocus(); sl@0: } sl@0: sl@0: void CShellClient::ScreenDeviceChangedL() sl@0: { sl@0: iIconWin1->SetExtentL(); sl@0: iIconWin2->SetExtentL(); sl@0: } sl@0: sl@0: void CShellClient::Exit() sl@0: { sl@0: CActiveScheduler::Stop(); sl@0: } sl@0: sl@0: CRunningProcess::CRunningProcess(MProcessObserver* aObserver) : CActive(-5), iObserver(aObserver) sl@0: {} sl@0: sl@0: CRunningProcess::~CRunningProcess() sl@0: { sl@0: Cancel(); sl@0: if (iNext) sl@0: iNext->iPrevPtr=iPrevPtr; sl@0: *iPrevPtr=iNext; sl@0: #if defined(__WINS__) sl@0: iLib.Close(); sl@0: #endif sl@0: #if defined(__USING_PROCESS_) sl@0: iProcess.Close(); sl@0: #else sl@0: iProcess.Close(); sl@0: #endif sl@0: if (iObserver) sl@0: iObserver->ProcessDied(); sl@0: } sl@0: sl@0: void CRunningProcess::ConstructL(const TDesC &aName) sl@0: { sl@0: #if defined(__USING_PROCESS_) sl@0: TParse fileName; sl@0: fileName.Set(_L("E:\\.EXE"),&aName,NULL); sl@0: TInt error = iProcess.Create(fileName.FullName(),_L("")); sl@0: if(error != KErrNone) sl@0: { sl@0: fileName.Set(_L(""),&aName,NULL); sl@0: User::LeaveIfError(iProcess.Create(fileName.FullName(),_L(""))); sl@0: } sl@0: #else sl@0: User::LeaveIfError(iFileName.Set(RP_FILENAME_SET,&aName,NULL)); sl@0: User::LeaveIfError(iLib.Load(iFileName.FullName())); sl@0: DllTestAppEntryPoint libFunc=(DllTestAppEntryPoint)iLib.Lookup(1); sl@0: User::LeaveIfNull((TAny *)libFunc); sl@0: TBuf threadName; sl@0: TInt err; sl@0: TInt num=0; sl@0: do sl@0: { sl@0: threadName.Format(TRefByValue(_L("%S%02d")),&aName,num++); sl@0: err=iProcess.Create(threadName,libFunc,KDefaultStackSize,NULL,&iLib,NULL,KHeapSize,KHeapSize,EOwnerProcess); sl@0: } while(err==KErrAlreadyExists); sl@0: User::LeaveIfError(err); sl@0: #endif sl@0: iProcess.Logon(iStatus); sl@0: iProcess.Resume(); sl@0: SetActive(); sl@0: } sl@0: sl@0: void CRunningProcess::ConstructTestExecuteL(const TDesC &aName) sl@0: { sl@0: //testexecute z:\wstest\wstest_t_autotest.script sl@0: _LIT(KTestExecute,"testexecute"); sl@0: _LIT(KComandLinePrefix,"z:\\wstest\\wstest_t_"); sl@0: _LIT(KComandLinePostfix,"test.script"); sl@0: #if defined(__USING_PROCESS_) sl@0: TParse fileName; sl@0: fileName.Set(KNullDesC,&KTestExecute,NULL); sl@0: TBuf<128> commandLine; sl@0: commandLine.Append(KComandLinePrefix); sl@0: commandLine.Append(aName); sl@0: commandLine.Append(KComandLinePostfix); sl@0: User::LeaveIfError(iProcess.Create(fileName.FullName(),commandLine)); sl@0: iProcess.Logon(iStatus); sl@0: iProcess.Resume(); sl@0: SetActive(); sl@0: #endif sl@0: } sl@0: sl@0: void CRunningProcess::Link(CRunningProcess **aRpPtr) sl@0: { sl@0: iNext=*aRpPtr; sl@0: if (iNext) sl@0: iNext->iPrevPtr=&iNext; sl@0: *aRpPtr=this; sl@0: iPrevPtr=aRpPtr; sl@0: } sl@0: sl@0: void CRunningProcess::DoCancel() sl@0: { sl@0: iProcess.LogonCancel(iStatus); sl@0: } sl@0: sl@0: void CRunningProcess::RunL() sl@0: { sl@0: if (iStatus!=KErrNone) sl@0: { sl@0: TBuf<32> buf; sl@0: buf.Num(iStatus.Int()); sl@0: DisplayDialog(_L("Program exited with error"),iProcess.ExitCategory(),buf); sl@0: } sl@0: delete this; sl@0: } sl@0: sl@0: GLDEF_C CTClient *CreateClientL() sl@0: { sl@0: return(new(ELeave) CShellClient()); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: return(TestLibStartUp(CreateClientL)); sl@0: }