equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-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: Psln Active Idle settings plugin. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_GSACTIVEIDLEPLUGINCONTAINER_H |
|
20 #define C_GSACTIVEIDLEPLUGINCONTAINER_H |
|
21 |
|
22 #include <coecntrl.h> |
|
23 |
|
24 /** |
|
25 * CGSActiveIdlePluginContainer container class |
|
26 * |
|
27 * @since S60 3.2 |
|
28 */ |
|
29 class CGSActiveIdlePluginContainer : public CCoeControl |
|
30 { |
|
31 public: // Constructors and destructor |
|
32 |
|
33 /** |
|
34 * Symbian OS constructor. |
|
35 * @param aRect Listbox's rect. |
|
36 * |
|
37 */ |
|
38 void ConstructL(const TRect& aRect); |
|
39 |
|
40 ~CGSActiveIdlePluginContainer(); |
|
41 |
|
42 CGSActiveIdlePluginContainer(); |
|
43 |
|
44 // From CCoeControl |
|
45 |
|
46 TInt CountComponentControls() const; |
|
47 |
|
48 CCoeControl* ComponentControl(TInt aIndex) const; |
|
49 |
|
50 void SizeChanged(); |
|
51 |
|
52 }; |
|
53 |
|
54 #endif // C_GSACTIVEIDLEPLUGINCONTAINER_H |
|
55 |
|
56 // End of File. |