equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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 the License "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: Declaration of class CSchemeDialog |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef SCHEME_DIALOG_H |
|
20 #define SCHEME_DIALOG_H |
|
21 |
|
22 // INCLUDES |
|
23 |
|
24 #include <e32base.h> |
|
25 #include <eikdialg.h> |
|
26 |
|
27 // CLASS DECLARATION |
|
28 |
|
29 /** |
|
30 * Main dialog for Scheme App |
|
31 */ |
|
32 class CSchemeDialog: public CEikDialog |
|
33 { |
|
34 |
|
35 public: // Constructors and destructor |
|
36 |
|
37 /** |
|
38 * Destructor. |
|
39 */ |
|
40 ~CSchemeDialog(); |
|
41 |
|
42 public: // from CEikDialog |
|
43 |
|
44 /** |
|
45 * Pre-layout dynamic initialization. |
|
46 */ |
|
47 void PreLayoutDynInitL(); |
|
48 |
|
49 /** |
|
50 * Handle button press. |
|
51 * @param aButtonId Id of button pressed. |
|
52 * @return ETrue if the dialog may exit; EFalse otherwise. |
|
53 */ |
|
54 TBool OkToExitL( TInt aButtonId ); |
|
55 |
|
56 }; |
|
57 |
|
58 #endif // SCHEME_DIALOG_H |
|
59 |
|
60 // End of File |