|
1 /* |
|
2 * Copyright (c) 2008 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 * See class description. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef __TPHONECMDPARAMTRANSEFFECT_H |
|
21 #define __TPHONECMDPARAMTRANSEFFECT_H |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 #include <w32std.h> |
|
26 #include <aknnotedialog.h> |
|
27 #include "tphonecommandparam.h" |
|
28 |
|
29 // DATA TYPES |
|
30 |
|
31 /** |
|
32 * Enumerates effect types |
|
33 * |
|
34 * EPhoneTransitionEffectStart - TBD |
|
35 * EPhoneTransitionEffectStop - TBD |
|
36 */ |
|
37 enum TPhoneTransEffectType |
|
38 { |
|
39 EPhoneTransEffectNone, |
|
40 EPhoneTransEffectDialerOpen, |
|
41 EPhoneTransEffectDialerClose, |
|
42 EPhoneTransEffectDialerCreate, |
|
43 EPhoneTransEffectStop |
|
44 }; |
|
45 |
|
46 // CLASS DECLARATION |
|
47 |
|
48 /** |
|
49 * A parameter class for note dialog information. |
|
50 */ |
|
51 class TPhoneCmdParamTransEffect : public TPhoneUICommandParam |
|
52 { |
|
53 |
|
54 |
|
55 public: |
|
56 |
|
57 /** |
|
58 * C++ default constructor. |
|
59 */ |
|
60 IMPORT_C TPhoneCmdParamTransEffect(); |
|
61 |
|
62 public: |
|
63 |
|
64 /** |
|
65 * Sets the effect type |
|
66 * @param aType is the effect type |
|
67 */ |
|
68 IMPORT_C void SetType( TPhoneTransEffectType aType ); |
|
69 |
|
70 |
|
71 /** |
|
72 * Returns the effect type |
|
73 * @return Returns the type |
|
74 */ |
|
75 IMPORT_C TPhoneTransEffectType Type() const; |
|
76 |
|
77 private: |
|
78 |
|
79 /** |
|
80 * Note type |
|
81 */ |
|
82 TPhoneTransEffectType iType; |
|
83 |
|
84 }; |
|
85 |
|
86 #endif // __TPHONECMDPARAMTRANSEFFECT_H |
|
87 |
|
88 // End of File |