|
1 /* |
|
2 * Copyright (c) 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: Text query dialog for editing commands |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CVCTEXTQUERYDIALOG_H |
|
20 #define CVCTEXTQUERYDIALOG_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <AknQueryDialog.h> |
|
24 |
|
25 // CLASS DECLARATION |
|
26 /** |
|
27 * |
|
28 * |
|
29 */ |
|
30 NONSHARABLE_CLASS( CVCTextQueryDialog ) : public CAknTextQueryDialog |
|
31 { |
|
32 public: // Constructors and destructor |
|
33 |
|
34 /** |
|
35 * Symbian two-phased constructor. |
|
36 */ |
|
37 static CVCTextQueryDialog* NewL( TDes& aDataText, const TTone& aTone = ENoTone ); |
|
38 |
|
39 /** |
|
40 * Destructor. |
|
41 */ |
|
42 virtual ~CVCTextQueryDialog(); |
|
43 |
|
44 public: // Functions from base classes |
|
45 |
|
46 /** |
|
47 * From CAknTextQueryDialog |
|
48 * @see CAknTextQueryDialog for more information |
|
49 */ |
|
50 virtual TBool CheckIfEntryTextOk() const; |
|
51 |
|
52 /** |
|
53 * From CAknTextQueryDialog |
|
54 * @see CAknTextQueryDialog for more information |
|
55 */ |
|
56 virtual void UpdateLeftSoftKeyL(); |
|
57 |
|
58 private: // New functions |
|
59 |
|
60 /** |
|
61 * C++ default constructor. |
|
62 */ |
|
63 CVCTextQueryDialog( TDes& aDataText, const TTone& aTone ); |
|
64 }; |
|
65 |
|
66 #endif // CVCTEXTQUERYDIALOG_H |
|
67 |
|
68 // End of File |