|
1 /* |
|
2 * Copyright (c) 2005 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: See class definition below. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __TMCETESTUIENGINECMDESTABLISH_H__ |
|
21 #define __TMCETESTUIENGINECMDESTABLISH_H__ |
|
22 |
|
23 // INCLUDES |
|
24 #include "TMCETestUIEngineCmdBase.h" |
|
25 |
|
26 // FORWARD DECLARATIONS |
|
27 |
|
28 |
|
29 // CLASS DEFINITION |
|
30 /** |
|
31 * |
|
32 */ |
|
33 class TMCETestUIEngineCmdEstablish: public TMCETestUIEngineCmdBase |
|
34 { |
|
35 |
|
36 public: // Constructors |
|
37 |
|
38 /** |
|
39 * Constructor. |
|
40 * |
|
41 * @param aEngine UI Engine |
|
42 */ |
|
43 TMCETestUIEngineCmdEstablish( |
|
44 CMCETestUIEngine& aEngine, |
|
45 CMCETestUIEngineOutSession& aOutSession ); |
|
46 |
|
47 public: // Implementation for base class abstract methods |
|
48 |
|
49 /// Executes a sequence of operations. |
|
50 IMPORT_C void ExecuteL(); |
|
51 |
|
52 /// Returns short textual representation for behavior of command |
|
53 IMPORT_C const TDesC& Caption() const; |
|
54 |
|
55 IMPORT_C void DeleteCodecs(); |
|
56 |
|
57 private: // Data |
|
58 |
|
59 CMCETestUIEngineOutSession& iOutSession; |
|
60 |
|
61 }; |
|
62 |
|
63 // CLASS DEFINITION |
|
64 /** |
|
65 * |
|
66 */ |
|
67 class TMCETestUIEngineCmdEstablishWithValues: public TMCETestUIEngineCmdBase |
|
68 { |
|
69 |
|
70 public: // Constructors |
|
71 |
|
72 /** |
|
73 * Constructor. |
|
74 * |
|
75 * @param aEngine UI Engine |
|
76 */ |
|
77 TMCETestUIEngineCmdEstablishWithValues( |
|
78 CMCETestUIEngine& aEngine, |
|
79 CMCETestUIEngineOutSession& aOutSession ); |
|
80 |
|
81 public: // Implementation for base class abstract methods |
|
82 |
|
83 /// Executes a sequence of operations. |
|
84 IMPORT_C void ExecuteL(); |
|
85 |
|
86 /// Returns short textual representation for behavior of command |
|
87 IMPORT_C const TDesC& Caption() const; |
|
88 |
|
89 IMPORT_C void DeleteCodecs(); |
|
90 |
|
91 private: // Data |
|
92 |
|
93 CMCETestUIEngineOutSession& iOutSession; |
|
94 |
|
95 }; |
|
96 |
|
97 #endif // __TMCETESTUIENGINECMDESTABLISH_H__ |