diff -r f00a6757af32 -r 5f0182e07bfb homescreenapp/examples/helloworldwidgetplugin/src/helloworldwidgetplugin.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/homescreenapp/examples/helloworldwidgetplugin/src/helloworldwidgetplugin.cpp Tue Aug 31 15:06:34 2010 +0300 @@ -0,0 +1,53 @@ +/* +* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Example of home screen widget +* +*/ + +#include +#include +#include + +#include "helloworldwidgetplugin.h" +#include "helloworldwidget.h" + +/*! + \ingroup group_helloworld_widget + \class HelloWorldWidgetPlugin + \brief Example implementation for home screen widget plugin. +*/ + +/*! + Initialize plugin for hello world widget. Contains necessary information about + the hello world widget that it can be loaded through QT Service Framework. +*/ +// Start of snippet 1 +QObject *HelloWorldWidgetPlugin::createInstance(const QServiceInterfaceDescriptor &descriptor, + QServiceContext *context, + QAbstractSecuritySession *session) +{ + Q_UNUSED(context); + Q_UNUSED(session); + + if (descriptor.interfaceName() == QLatin1String("com.nokia.symbian.IHomeScreenWidget")) { + return new HelloWorldWidget(); + } else { + return 0; + } +} +// End of snippet 1 + +// Start of snippet 2 +Q_EXPORT_PLUGIN2(helloworldwidgetplugin, HelloWorldWidgetPlugin) +// End of snippet 2