|
1 /* |
|
2 * Copyright (c) 2005-2009 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: Implementation of the CSecModUIPluginContainer class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include "SecModUIPluginContainer.h" |
|
22 |
|
23 // CONSTANTS |
|
24 |
|
25 // ========================= MEMBER FUNCTIONS ================================ |
|
26 |
|
27 CSecModUIPluginContainer::CSecModUIPluginContainer() |
|
28 { |
|
29 |
|
30 } |
|
31 |
|
32 // --------------------------------------------------------------------------- |
|
33 // CApSettingsPluginContainer::ConstructL(const TRect& aRect) |
|
34 // Symbian OS two phased constructor |
|
35 // |
|
36 // --------------------------------------------------------------------------- |
|
37 // |
|
38 void CSecModUIPluginContainer::ConstructL( const TRect& aRect ) |
|
39 { |
|
40 |
|
41 CreateWindowL(); |
|
42 SetRect( aRect ); |
|
43 |
|
44 } |
|
45 |
|
46 // --------------------------------------------------------------------------- |
|
47 // CSecModUIPluginContainer::~CSecModUIPluginContainer() |
|
48 // Destructor |
|
49 // |
|
50 // --------------------------------------------------------------------------- |
|
51 // |
|
52 CSecModUIPluginContainer::~CSecModUIPluginContainer() |
|
53 { |
|
54 |
|
55 } |
|
56 |
|
57 // --------------------------------------------------------------------------- |
|
58 // CSecModUIPluginContainer::SizeChanged |
|
59 // |
|
60 // --------------------------------------------------------------------------- |
|
61 // |
|
62 void CSecModUIPluginContainer::SizeChanged() |
|
63 { |
|
64 |
|
65 } |
|
66 |
|
67 // --------------------------------------------------------------------------- |
|
68 // CSecModUIPluginContainer::CountComponentControls |
|
69 // |
|
70 // --------------------------------------------------------------------------- |
|
71 // |
|
72 TInt CSecModUIPluginContainer::CountComponentControls() const |
|
73 { |
|
74 return 0; |
|
75 } |
|
76 |
|
77 // --------------------------------------------------------------------------- |
|
78 // CSecModUIPluginContainer::ComponentControl |
|
79 // |
|
80 // --------------------------------------------------------------------------- |
|
81 // |
|
82 CCoeControl* CSecModUIPluginContainer::ComponentControl( TInt /*aIndex*/ ) const |
|
83 { |
|
84 return NULL; |
|
85 } |
|
86 |
|
87 // End of File |