equal
deleted
inserted
replaced
|
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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __EXIFJPEGTRANFORM_H__ |
|
17 #define __EXIFJPEGTRANFORM_H__ |
|
18 |
|
19 #include <e32base.h> |
|
20 #include <icl/imagetransformplugin.h> |
|
21 |
|
22 class CExifJpegTransformExtension; |
|
23 class MExifMetadata; |
|
24 class CExifEditUtility; |
|
25 class MExifSource; |
|
26 class MExifDest; |
|
27 class CExifJpegTransform : public CImageTransformPlugin |
|
28 { |
|
29 |
|
30 public: |
|
31 // Public factory functions: |
|
32 static CExifJpegTransform* NewL(); |
|
33 |
|
34 ~CExifJpegTransform(); |
|
35 |
|
36 void Transform(TRequestStatus& aStatus); |
|
37 void OpenL(); |
|
38 void CancelTransform(); |
|
39 CImageTransformPluginExtension* Extension() const; |
|
40 |
|
41 MExifMetadata* ExifMetadata() const ; |
|
42 |
|
43 private: |
|
44 |
|
45 CExifJpegTransform(); |
|
46 void ConstructL(); |
|
47 |
|
48 private: |
|
49 CExifEditUtility* iExifEdit; |
|
50 RFs iFs; |
|
51 CImageTransformPluginExtension* iExtension; |
|
52 MExifSource* iSource; |
|
53 MExifDest* iDest; |
|
54 }; |
|
55 |
|
56 #endif // __EXIFJPEGTRANFORM_H__ |