|
1 /* |
|
2 * Copyright (c) 2002 - 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: Test EIKLABEL.H, eikfnlab.h |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_TESTSDKLABELSSUBAKNPICTOGRAPHCALLBACK_H |
|
20 #define C_TESTSDKLABELSSUBAKNPICTOGRAPHCALLBACK_H |
|
21 |
|
22 #include <aknpictographdrawerinterface.h> |
|
23 #include <aknpictographinterface.h> |
|
24 #include <coecntrl.h> |
|
25 |
|
26 class CTestSDKLabelsSubAknPictographCallBack : public CCoeControl, |
|
27 public MAknPictographAnimatorCallBack |
|
28 { |
|
29 public: |
|
30 /** |
|
31 * Two-phased constructor. |
|
32 */ |
|
33 static CTestSDKLabelsSubAknPictographCallBack* NewLC(); |
|
34 |
|
35 /** |
|
36 * destructor |
|
37 */ |
|
38 ~CTestSDKLabelsSubAknPictographCallBack(); |
|
39 |
|
40 /** |
|
41 * DrawPictographArea test function for testing the |
|
42 * Test DrawPictographArea function |
|
43 */ |
|
44 void DrawPictographArea(); |
|
45 |
|
46 /** |
|
47 * Interface test function for testing the |
|
48 * Test Interface function |
|
49 */ |
|
50 CAknPictographInterface* Interface(); |
|
51 |
|
52 private: |
|
53 /** |
|
54 * By default Symbian 2nd phase constructor is private. |
|
55 */ |
|
56 void ConstructL(); |
|
57 |
|
58 /** |
|
59 * Constructors |
|
60 */ |
|
61 CTestSDKLabelsSubAknPictographCallBack(); |
|
62 |
|
63 private://Data |
|
64 |
|
65 CAknPictographInterface* iInterface; |
|
66 }; |
|
67 |
|
68 #endif /*C_TESTSDKLABELSSUBAKNPICTOGRAPHCALLBACK_H*/ |