|
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: The declaration for AppUi class of Settings UI Server |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_LOCSETTINGSUISRVAPPUI_H |
|
20 #define C_LOCSETTINGSUISRVAPPUI_H |
|
21 |
|
22 #include <aknViewAppUi.h> |
|
23 |
|
24 /** |
|
25 * The AppUi class for the Location Settings UI Application Server. |
|
26 * |
|
27 * @lib |
|
28 * @since S60 v3.1 |
|
29 */ |
|
30 NONSHARABLE_CLASS(CLocSettingsUISrvAppUi) : public CAknViewAppUi |
|
31 { |
|
32 public: |
|
33 /** |
|
34 * Destructor |
|
35 */ |
|
36 virtual ~CLocSettingsUISrvAppUi(); |
|
37 |
|
38 /** |
|
39 * Constructor |
|
40 */ |
|
41 CLocSettingsUISrvAppUi(); |
|
42 |
|
43 /** |
|
44 * Symbian 2nd Phase Constructor |
|
45 * Leaves in case of Error. Will be called by Framework. |
|
46 * Hence there is no 2 Phase Constructor. Also the ConstructL |
|
47 * has to be kept public. |
|
48 * |
|
49 * @since S60 v3.1 |
|
50 * @return None |
|
51 */ |
|
52 void ConstructL(); |
|
53 |
|
54 /** |
|
55 * Exposes the Full Screen application setting |
|
56 */ |
|
57 void SetFullScreenState( TBool aFullScreenState ); |
|
58 |
|
59 protected: |
|
60 |
|
61 /** |
|
62 * from base class CEikAppUi |
|
63 * Overriding the base class implementation to implement Exit |
|
64 * functionality. |
|
65 * |
|
66 * @since S60 v3.1 |
|
67 * @param aCommand the Command Id of the command to be executed. |
|
68 * @returns None |
|
69 */ |
|
70 virtual void HandleCommandL(TInt aCommand); |
|
71 }; |
|
72 |
|
73 #endif // C_LOCSETTINGSUISRVAPPUI_H |