1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_integ/src/t_dsaappui.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,121 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent
1.23 +*/
1.24 +
1.25 +#include <apgtask.h>
1.26 +#include <e32math.h>
1.27 +#include <eikenv.h>
1.28 +#include "t_dsaappui.h"
1.29 +#include "t_dsaappview.h"
1.30 +#include "t_inidata.h"
1.31 +#include "t_wservconsts.h"
1.32 +
1.33 +/**
1.34 + * constructL method that creates the AppView object
1.35 + *
1.36 + */
1.37 +void CDsaAppUi::ConstructL()
1.38 + {
1.39 + BaseConstructL();
1.40 + CWsScreenDevice * screen = CCoeEnv::Static()->ScreenDevice();
1.41 + TSize screenSize=screen->SizeInPixels();
1.42 + TInt posX = 0;
1.43 + READ_INT(KDsaPositionX, KWServDsaAppConfigFile, posX);
1.44 + CalculateAbsL(posX, screenSize.iWidth);
1.45 +
1.46 + TInt posY = 0;
1.47 + READ_INT(KDsaPositionY, KWServDsaAppConfigFile, posY);
1.48 + CalculateAbsL(posY, screenSize.iHeight);
1.49 +
1.50 + TInt width = 0;
1.51 + READ_INT(KDsaWidth, KWServDsaAppConfigFile, width);
1.52 + CalculateAbsL(width, screenSize.iWidth);
1.53 +
1.54 + TInt height = 0;
1.55 + READ_INT(KDsaHeight, KWServDsaAppConfigFile, height);
1.56 + CalculateAbsL(height, screenSize.iHeight);
1.57 +
1.58 + TRect myRect(TPoint(posX,posY), TPoint(width+posX,height+posY));
1.59 + iAppView = CDsaAppView::NewL(myRect);
1.60 + }
1.61 +
1.62 +
1.63 +void CDsaAppUi::CalculateAbsL(TInt& aValue, const TInt& aFactor)
1.64 +{
1.65 + TReal tempVar = static_cast<TReal>(aValue)*static_cast<TReal>(aFactor);
1.66 + tempVar = tempVar/100; // as percentage
1.67 + TInt32 tempVal = 0;
1.68 + User::LeaveIfError(Math::Int(tempVal, tempVar));
1.69 + aValue = tempVal;
1.70 +}
1.71 +
1.72 +/**
1.73 + * Destructor
1.74 + *
1.75 + */
1.76 +CDsaAppUi::~CDsaAppUi()
1.77 + {
1.78 + delete iAppView;
1.79 + }
1.80 +
1.81 +/**
1.82 + * Handles the Menu events
1.83 + * @param aCommand - command to be passed based on the menu item
1.84 + * selected by the user
1.85 + *
1.86 + */
1.87 +void CDsaAppUi::HandleCommandL(TInt aCommand)
1.88 + {
1.89 + switch (aCommand)
1.90 + {
1.91 + case EEikCmdExit:
1.92 + {
1.93 + Exit();
1.94 + break;
1.95 + }
1.96 + default:
1.97 + {
1.98 + User::Leave(KErrAbort);
1.99 + break;
1.100 + }
1.101 + }
1.102 + }
1.103 +
1.104 +/**
1.105 + * Handles system events
1.106 + * @param aEvent - event that has to be handled by the function
1.107 + *
1.108 + */
1.109 +void CDsaAppUi::HandleSystemEventL(const TWsEvent& aEvent)
1.110 + {
1.111 + switch (*(TApaSystemEvent*)(aEvent.EventData()))
1.112 + {
1.113 + case EApaSystemEventBroughtToForeground:
1.114 + {
1.115 + RProcess::Rendezvous(KErrNone);
1.116 + break;
1.117 + }
1.118 + default:
1.119 + {
1.120 + User::Leave(KErrAbort);
1.121 + break;
1.122 + }
1.123 + }
1.124 + }