equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004-2007 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef TPREVIEWIMAGEINFO_H |
|
20 #define TPREVIEWIMAGEINFO_H |
|
21 |
|
22 #include <e32def.h> |
|
23 #include <e32std.h> |
|
24 #include <bitmaptransforms.h> |
|
25 |
|
26 /** |
|
27 * |
|
28 * Data structure that presents a single image on the preview bitmap |
|
29 * |
|
30 */ |
|
31 class TPreviewImageInfo |
|
32 { |
|
33 public: // Constructors and destructors |
|
34 |
|
35 /** |
|
36 * Constructor |
|
37 */ |
|
38 TPreviewImageInfo(); |
|
39 |
|
40 public: // data |
|
41 |
|
42 // Position of the image on preview bitmap |
|
43 TPoint iPos; |
|
44 |
|
45 // Size of the image on previwe bitmap |
|
46 TSize iSize; |
|
47 |
|
48 // Rotation status & orientation of the image |
|
49 TBool iRotated; |
|
50 |
|
51 // Orientation of the image |
|
52 CBitmapRotator::TRotationAngle iOrientation; |
|
53 }; |
|
54 |
|
55 #endif // TPREVIEWIMAGEINFO_H |
|
56 |
|
57 // End of File |