Changed the structure so that it uses data engine. That leaves data engine
[plasmaevents.git] / plasmaevents.cpp
blob40bf91bd7f794bf47846d5194c2e710ac052cd91
1 /*
2 * Copyright (C) 2007 Filip Brcic <brcha@gna.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Library General Public License version 2 as
6 * published by the Free Software Foundation
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details
13 * You should have received a copy of the GNU Library General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #include "plasmaevents.h"
21 #include <kdebug.h>
23 PlasmaEvents::PlasmaEvents(QObject *parent, const QVariantList &args)
24 : Plasma::Applet(parent, args)
26 m_layout = new Plasma::BoxLayout(Plasma::BoxLayout::TopToBottom);
28 // m_engine = myPimEngine(...)
29 // m_engine->connectSource(...)
31 setSize(125, 125);
33 m_display = new Plasma::Label(this);
34 m_display->setPen(QPen(QColor(Qt::white)));
35 m_display->setAlignment(Qt::AlignLeft);
36 m_display->setText(i18n("What ever should be written here"));
38 m_layout->addItem(m_display);
41 PlasmaEvents::~PlasmaEvents()
43 delete m_display;
44 delete m_layout;
47 void PlasmaEvents::constraintsUpdated(Plasma::Constraints constraints)
49 setSize(size());
51 if (constraints & Plasma::FormFactorConstraint)
53 updateGeometry();
57 // void PlasmaEvents::dataUpdated(const QString& sourceName, const Plasma::DataEngine::Data& data)
58 // {
59 // Q_UNUSED(data);
60 // Q_UNUSED(sourceName);
61 // }
64 #include "plasmaevents.moc"