equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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 #ifndef APPLICATIONSETTINGSVIEW_H |
|
18 #define APPLICATIONSETTINGSVIEW_H |
|
19 |
|
20 #include <hbview.h> |
|
21 #include <QtPlugin> |
|
22 |
|
23 class ApplicationSettingsView: public HbView |
|
24 { |
|
25 public: |
|
26 |
|
27 /* |
|
28 * Base constructor |
|
29 */ |
|
30 explicit ApplicationSettingsView() : HbView() {} |
|
31 |
|
32 /* |
|
33 * Destructor |
|
34 */ |
|
35 virtual ~ApplicationSettingsView() {} |
|
36 |
|
37 public slots: |
|
38 /* |
|
39 * Initializas the view with application specific info |
|
40 * |
|
41 * @param aAppUid Identifier for the application |
|
42 * |
|
43 */ |
|
44 void initialize(const QString& aAppUid); |
|
45 |
|
46 }; |
|
47 |
|
48 Q_DECLARE_INTERFACE(ApplicationSettingsView, |
|
49 "com.nokia.ApplicationLibrary.ApplicationSettingsView/1.0"); |
|
50 |
|
51 #endif // APPLICATIONSETTINGSVIEW_H |