1 // Copyright (c) 2002-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 // This is the public client API for the BitmapTransforms library
18 #ifndef BITMTRANSPANIC_H
19 #define BITMTRANSPANIC_H
25 @panic ENoSourceBitmap is raised when the src bitmap supplied to one of the api's
26 has not been created (i.e. it has a null handle)
27 ENoDestinationBitmap is raised when the destination bitmap supplied to one
28 of the api's has not been properly created
29 EBitmapHasZeroDimension is raised when a bitmap has zero dimension
35 enum TBitmapTransformsPanic
37 /** Invalid source bitmap. */
39 /** Invalid destination bitmap. */
41 /** The Bitmap has zero dimension. */
42 EBitmapHasZeroDimension,
43 /** Bad argument for scaling. */
45 /** Bad argument for rotation. */
47 /** Null argument provided. */
54 #endif // BITMTRANSPANIC_H