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