|
1 /* |
|
2 * Copyright (c) 2006 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __JAVA_DEBUG_AGENT_SETTINGS_SCREEN_H_ |
|
20 #define __JAVA_DEBUG_AGENT_SETTINGS_SCREEN_H_ |
|
21 |
|
22 #include <AknSettingItemList.h> |
|
23 |
|
24 class CJavaDebugAgentSettings; |
|
25 class CJavaDebugAgentSettingsBooleanItem; |
|
26 class CJavaDebugAgentSettingsScreen : public CAknSettingItemList |
|
27 { |
|
28 private: |
|
29 CJavaDebugAgentSettings* iSettings; |
|
30 CJavaDebugAgentSettingsBooleanItem* iAutoCleanItem; |
|
31 CJavaDebugAgentSettingsBooleanItem* iFileLogItem; |
|
32 |
|
33 public: |
|
34 static CJavaDebugAgentSettingsScreen* NewL(CJavaDebugAgentSettings* aSet, |
|
35 TInt aListResId); |
|
36 ~CJavaDebugAgentSettingsScreen(); |
|
37 |
|
38 private: |
|
39 CJavaDebugAgentSettingsScreen(CJavaDebugAgentSettings* aSettings); |
|
40 void ConstructL(TInt aListResId); |
|
41 TBool ChangeValueL(TInt aSettingId); |
|
42 |
|
43 // CAknSettingItemList |
|
44 CAknSettingItem* CreateSettingItemL(TInt aSettingId); |
|
45 void HandleListBoxEventL(CEikListBox* aListBox, TListBoxEvent aEventType); |
|
46 |
|
47 // CCoeControl |
|
48 virtual void SizeChanged(); |
|
49 }; |
|
50 |
|
51 #endif // __JAVA_DEBUG_AGENT_SETTINGS_SCREEN_H_ |
|
52 |
|
53 /** |
|
54 * Local Variables: |
|
55 * mode: c++ |
|
56 * c-basic-offset: 4 |
|
57 * indent-tabs-mode: nil |
|
58 * End: |
|
59 */ |