author | hgs |
Mon, 23 Aug 2010 15:42:12 +0300 | |
changeset 60 | 1eef62f5c541 |
parent 46 | bc5a64e5bc3c |
permissions | -rw-r--r-- |
37 | 1 |
/* |
2 |
* Copyright (c) 2009 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 |
#ifndef CPTELEPHONYPLUGINVIEW_H_ |
|
19 |
#define CPTELEPHONYPLUGINVIEW_H_ |
|
20 |
||
21 |
#include <QObject> |
|
46
bc5a64e5bc3c
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
37
diff
changeset
|
22 |
#include <QVariantList> |
37 | 23 |
#include <hbdataform.h> |
24 |
#include <cpbasesettingview.h> |
|
25 |
||
26 |
class HbDataFormModelItem; |
|
27 |
class CpSettingFormItemData; |
|
60 | 28 |
class CpPluginInterface; |
37 | 29 |
|
46
bc5a64e5bc3c
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
37
diff
changeset
|
30 |
// Class declaration |
37 | 31 |
class CpTelephonyPluginView : public CpBaseSettingView |
32 |
{ |
|
33 |
Q_OBJECT |
|
34 |
||
35 |
public: |
|
36 |
CpTelephonyPluginView(); |
|
46
bc5a64e5bc3c
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
37
diff
changeset
|
37 |
CpTelephonyPluginView(const QVariantList ¶ms); |
37 | 38 |
~CpTelephonyPluginView(); |
39 |
||
40 |
private: |
|
46
bc5a64e5bc3c
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
37
diff
changeset
|
41 |
CpItemDataHelper* initializeItemDataHelper(); |
bc5a64e5bc3c
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
37
diff
changeset
|
42 |
QList<CpSettingFormItemData*> groupItemFromPlugin( |
bc5a64e5bc3c
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
37
diff
changeset
|
43 |
const QString& plugin); |
37 | 44 |
|
46
bc5a64e5bc3c
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
37
diff
changeset
|
45 |
private: // Data |
37 | 46 |
CpItemDataHelper *m_helper; |
60 | 47 |
QList<CpPluginInterface*> m_plugins; |
37 | 48 |
}; |
49 |
||
50 |
#endif /* CPTELEPHONYPLUGINVIEW_H_ */ |