Update contrib.
1 // Copyright (c) 2004-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 __BITDRAWORIGIN_H__
17 #define __BITDRAWORIGIN_H__
20 MDrawDeviceOrigin interface manages the origin point of CFbsDrawDevice interface.
22 The interface could be retrieved calling CFbsDrawDevice::GetInterface() with
23 KDrawDeviceOriginInterfaceID as an argument.
24 If the drawing device does not have support for moving origin, MDrawDeviceOrigin cannot be retrieved.
26 MDrawDeviceOrigin interface lifetime is the same as the lifetime of CFbsDrawDevice
27 interface, which creates it.
28 Do not try to delete MDrawDeviceOrigin interface pointer!
30 MDrawDeviceOrigin interface offers following methods:
36 class MDrawDeviceOrigin
40 Sets the origin of the drawing device. By default drawing device origin is (0,0).
41 If you want to set the default origin, call Set() with (0,0) point coordinates.
42 @param aOrigin Specifies physical coordinates of the new origin
43 of the drawing device. The drawing device maps the logical point (0,0) to
44 the "aOrigin" physical point .
45 @return KErrNone success.
48 virtual TInt Set(const TPoint& aOrigin) = 0;
50 Retrieves origin point.
51 @param aOrigin Upon return contains origin point.
54 virtual void Get(TPoint& aOrigin) = 0;
57 #endif//__BITDRAWORIGIN_H__