sl@0: // Copyright (c) 1994-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: // Screen Mode Size Data sl@0: // sl@0: // sl@0: sl@0: #ifndef SIZEMODE_H sl@0: #define SIZEMODE_H sl@0: sl@0: /** Screen Mode Size Data sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TSizeMode sl@0: { sl@0: public: sl@0: inline TSizeMode(){} sl@0: inline TSizeMode(TSize& aSize); sl@0: static inline TInt ScaledCord(TInt aOrigin,TInt aScale); sl@0: inline TPoint ScaledOrigin() const; sl@0: public: sl@0: CFbsBitGc::TGraphicsOrientation iRotation; sl@0: TPoint iOrigin; sl@0: TSize iScreenSize; sl@0: TSize iScreenTwipsSize; sl@0: TUint iAlternativeRotations; sl@0: TRect iPointerCursorArea; sl@0: TSize iScreenScale; sl@0: TDisplayMode iDefaultDisplayMode; sl@0: }; sl@0: sl@0: inline TSizeMode::TSizeMode(TSize& aSize) : sl@0: iOrigin(0, 0), iScreenSize(aSize) sl@0: {} sl@0: sl@0: inline TInt TSizeMode::ScaledCord(TInt aOrigin,TInt aScale) sl@0: {return (aOrigin+aScale-1)/aScale;} sl@0: sl@0: inline TPoint TSizeMode::ScaledOrigin() const sl@0: {return TPoint(ScaledCord(iOrigin.iX,iScreenScale.iWidth),ScaledCord(iOrigin.iY,iScreenScale.iHeight));} sl@0: sl@0: #endif // SIZEMODE_H