1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/inc/sizemode.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,54 @@
1.4 +// Copyright (c) 1994-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 +// Screen Mode Size Data
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef SIZEMODE_H
1.22 +#define SIZEMODE_H
1.23 +
1.24 +/** Screen Mode Size Data
1.25 +
1.26 +@publishedAll
1.27 +@released
1.28 +*/
1.29 +class TSizeMode
1.30 + {
1.31 +public:
1.32 + inline TSizeMode(){}
1.33 + inline TSizeMode(TSize& aSize);
1.34 + static inline TInt ScaledCord(TInt aOrigin,TInt aScale);
1.35 + inline TPoint ScaledOrigin() const;
1.36 +public:
1.37 + CFbsBitGc::TGraphicsOrientation iRotation;
1.38 + TPoint iOrigin;
1.39 + TSize iScreenSize;
1.40 + TSize iScreenTwipsSize;
1.41 + TUint iAlternativeRotations;
1.42 + TRect iPointerCursorArea;
1.43 + TSize iScreenScale;
1.44 + TDisplayMode iDefaultDisplayMode;
1.45 + };
1.46 +
1.47 +inline TSizeMode::TSizeMode(TSize& aSize) :
1.48 + iOrigin(0, 0), iScreenSize(aSize)
1.49 + {}
1.50 +
1.51 +inline TInt TSizeMode::ScaledCord(TInt aOrigin,TInt aScale)
1.52 + {return (aOrigin+aScale-1)/aScale;}
1.53 +
1.54 +inline TPoint TSizeMode::ScaledOrigin() const
1.55 + {return TPoint(ScaledCord(iOrigin.iX,iScreenScale.iWidth),ScaledCord(iOrigin.iY,iScreenScale.iHeight));}
1.56 +
1.57 +#endif // SIZEMODE_H