Changed the structure so that it uses data engine. That leaves data engine
[plasmaevents.git] / plasmaevents.h
blob0eb50d69a5042ef94967d228b15b9088389b540c
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 #ifndef __PLASMA_EVENTS__H__
20 #define __PLASMA_EVENTS__H__
22 #include <plasma/applet.h>
23 #include <plasma/widgets/label.h>
24 #include <plasma/layouts/boxlayout.h>
26 // KdePIM headers should come here
28 class PlasmaEvents : public Plasma::Applet
30 Q_OBJECT
31 public:
32 PlasmaEvents(QObject *parent, const QVariantList &args);
33 ~PlasmaEvents();
35 private slots:
36 // void dataUpdated(const QString& sourceName, const Plasma::DataEngine::Data& data);
37 void constraintsUpdated(Plasma::Constraints constraints);
39 private:
40 Plasma::Label * m_display;
41 int m_updateInterval;
42 Plasma::BoxLayout * m_layout;
45 // This is the command that links your applet to the .desktop file
46 K_EXPORT_PLASMA_APPLET(events, PlasmaEvents)
47 #endif /* __PLASMA_EVENTS__H__ */