36
|
1 |
/*
|
|
2 |
* Copyright (c) 2010 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: Music player home screen widget
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#include <qserviceinterfacedescriptor.h>
|
|
19 |
#include <qabstractsecuritysession.h>
|
|
20 |
#include <qservicecontext.h>
|
|
21 |
|
|
22 |
#include "musicwidgetplugin.h"
|
|
23 |
#include "musicwidget.h"
|
|
24 |
|
|
25 |
QObject *MusicWidgetPlugin::createInstance(const QServiceInterfaceDescriptor &descriptor,
|
|
26 |
QServiceContext *context,
|
|
27 |
QAbstractSecuritySession *session)
|
|
28 |
{
|
|
29 |
Q_UNUSED(context);
|
|
30 |
Q_UNUSED(session);
|
|
31 |
|
|
32 |
if (descriptor.interfaceName() == QLatin1String("com.nokia.symbian.IHomeScreenWidget"))
|
|
33 |
{
|
|
34 |
return new MusicWidget();
|
|
35 |
}
|
|
36 |
else
|
|
37 |
{
|
|
38 |
return 0;
|
|
39 |
}
|
|
40 |
}
|
|
41 |
|
|
42 |
Q_EXPORT_PLUGIN2(musicwidgetplugin, MusicWidgetPlugin)
|