Update contrib.
1 // Copyright (c) 2005-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.
16 #ifndef __BITDRAWORIENTATION_H__
17 #define __BITDRAWORIENTATION_H__
20 MDrawDeviceOrientation interface manages the orientation degrees of CFbsDrawDevice interface.
22 The interface could be retrieved calling CFbsDrawDevice::GetInterface() with
23 KOrientationInterfaceID as an argument.
24 If the drawing device does not have support for moving origin, MDrawDeviceOrientation cannot be retrieved.
26 MDrawDeviceOrientation interface lifetime is the same as the lifetime of CFbsDrawDevice
27 interface, which creates it.
28 Do not try to delete MDrawDeviceOrientation interface pointer!
30 MDrawDeviceOrientation interface offers following method:
36 class MDrawDeviceOrientation
40 Retrieves orientation.
41 @return returns orientation degrees (0, 90, 180, 270).
44 virtual CFbsDrawDevice::TOrientation Orientation() = 0;
47 #endif//__BITDRAWORIENTATION_H__