general tidying up and removing redundant code, including a rewrite of pluginwidget...
[plasmaplugin.git] / src / pluginwidget.cpp
blob202a53b3723d50e8eda22bf8c915089d4db95fdc
1 /*
2 * Copyright 2008 George Goldberg <grundleborg@googlemail.com>
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #include "pluginwidget.h"
28 #include "fullview.h"
30 #include <KComponentData>
31 #include <KDebug>
33 #include <QtCore/QVariantList>
34 #include <QtCore/QString>
36 #include <QtGui/QWidget>
37 #include <QtGui/QHBoxLayout>
39 PluginWidget::PluginWidget(QWidget * parent)
40 : QWidget(parent),
41 m_componentData(new KComponentData("plasmansplugin", "plasmaplugin"))
43 m_layout = new QHBoxLayout;
44 m_view = new FullView( QString("planar"), QString("floating"), this );
45 m_layout->addWidget(m_view);
46 QString applet("digital-clock");
47 m_view->addApplet( applet, QVariantList() );
48 m_view->show();
49 setLayout(m_layout);
50 kDebug() << "Main Widget Size:" << geometry().width() << geometry().height();
53 QTNPFACTORY_BEGIN("Plasmoidviewer based plugin", "A basic plugin that launches plasmoidviewer in the web page")
54 QTNPCLASS(PluginWidget)
55 QTNPFACTORY_END()