equal
deleted
inserted
replaced
|
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: Declaration of the CSecModUIContainerMain class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef SECMODUICONTAINERMAIN_H |
|
20 #define SECMODUICONTAINERMAIN_H |
|
21 |
|
22 // INCLUDES |
|
23 #include "SecModUIContainerBase.h" |
|
24 #include <coecntrl.h> |
|
25 #include <eiklbo.h> |
|
26 |
|
27 // FORWARD DECLARATIONS |
|
28 class CEikLabel; // for example labels |
|
29 class CAknColumnListBox; |
|
30 class CSecModUIModel; |
|
31 |
|
32 // CLASS DECLARATION |
|
33 |
|
34 /** |
|
35 * CSecModUIContainerMain container control class. |
|
36 * |
|
37 */ |
|
38 class CSecModUIContainerMain : public CSecModUIContainerBase |
|
39 { |
|
40 public: // Constructors and destructor |
|
41 |
|
42 /** |
|
43 * Overrided Default constructor |
|
44 */ |
|
45 CSecModUIContainerMain(CSecModUIModel& aModel); |
|
46 |
|
47 /** |
|
48 * Destructor. |
|
49 */ |
|
50 virtual ~CSecModUIContainerMain(); |
|
51 |
|
52 public: // New functions |
|
53 |
|
54 private: // Functions from base classes |
|
55 |
|
56 void SetupListItemsL(); |
|
57 void ConstructListL(); |
|
58 |
|
59 private: // New functions |
|
60 |
|
61 private: //data |
|
62 |
|
63 }; |
|
64 |
|
65 #endif // SECMODUICONTAINERMAIN_H |
|
66 |
|
67 // End of File |