|
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 CSecModUIContainerAccess class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef SECMODUICONTAINERACCESS_H |
|
20 #define SECMODUICONTAINERACCESS_H |
|
21 |
|
22 // INCLUDES |
|
23 #include "SecModUIContainerBase.h" |
|
24 #include "SecModUIViewAccess.h" |
|
25 // FORWARD DECLARATIONS |
|
26 |
|
27 // CLASS DECLARATION |
|
28 |
|
29 /** |
|
30 * CSecModUIContainerAccess container control class. |
|
31 * |
|
32 */ |
|
33 class CSecModUIContainerAccess : public CSecModUIContainerBase, public MCoeControlObserver |
|
34 { |
|
35 public: // Constructors and destructor |
|
36 |
|
37 /** |
|
38 * Overrided Default constructor |
|
39 */ |
|
40 CSecModUIContainerAccess(CSecModUIModel& aModel, CSecModUIViewAccess* aView ); |
|
41 |
|
42 /** |
|
43 * Destructor. |
|
44 */ |
|
45 virtual ~CSecModUIContainerAccess(); |
|
46 |
|
47 |
|
48 //from MCoeControlObserver |
|
49 void HandleControlEventL(CCoeControl* aControl,TCoeEvent aEventType); |
|
50 |
|
51 |
|
52 private: // Functions from base classes |
|
53 void SetupListItemsL(); |
|
54 void ConstructListL(); |
|
55 private: |
|
56 CSecModUIViewAccess* iView; |
|
57 }; |
|
58 #endif |
|
59 |
|
60 // End of File |