Update contrib.
1 // Copyright (c) 1994-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.
14 // Screen Mode Size Data
21 /** Screen Mode Size Data
30 inline TSizeMode(TSize& aSize);
31 static inline TInt ScaledCord(TInt aOrigin,TInt aScale);
32 inline TPoint ScaledOrigin() const;
34 CFbsBitGc::TGraphicsOrientation iRotation;
37 TSize iScreenTwipsSize;
38 TUint iAlternativeRotations;
39 TRect iPointerCursorArea;
41 TDisplayMode iDefaultDisplayMode;
44 inline TSizeMode::TSizeMode(TSize& aSize) :
45 iOrigin(0, 0), iScreenSize(aSize)
48 inline TInt TSizeMode::ScaledCord(TInt aOrigin,TInt aScale)
49 {return (aOrigin+aScale-1)/aScale;}
51 inline TPoint TSizeMode::ScaledOrigin() const
52 {return TPoint(ScaledCord(iOrigin.iX,iScreenScale.iWidth),ScaledCord(iOrigin.iY,iScreenScale.iHeight));}