equal
deleted
inserted
replaced
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: Homescreen widget plugin |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef HSDIALERWIDGETPLUGIN_H |
|
20 #define HSDIALERWIDGETPLUGIN_H |
|
21 |
|
22 #include <QObject> |
|
23 #include <qserviceplugininterface.h> |
|
24 |
|
25 QTM_USE_NAMESPACE |
|
26 |
|
27 |
|
28 /** |
|
29 * @ingroup group_hsdialerwidgetplugin |
|
30 * @brief Homescreen dialer widget plugin. |
|
31 * |
|
32 * This library includes homescreen dialer widget implemented by homescreen scrum team. |
|
33 * This plugin provides widgets that are described in the hsdialerwidgetplugin.xml plugin |
|
34 * xml file. |
|
35 * |
|
36 * @since S60 ?S60_version. |
|
37 */ |
|
38 class HsDialerWidgetPlugin : public QObject, public QServicePluginInterface |
|
39 { |
|
40 Q_OBJECT |
|
41 Q_INTERFACES(QtMobility::QServicePluginInterface) |
|
42 |
|
43 public: |
|
44 QObject *createInstance(const QServiceInterfaceDescriptor &descriptor, |
|
45 QServiceContext *context, |
|
46 QAbstractSecuritySession *session); |
|
47 |
|
48 }; |
|
49 |
|
50 #endif //HSDIALERWIDGETPLUGIN_H |
|