mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
71 lines
2.4 KiB
C++
71 lines
2.4 KiB
C++
/***************************************************************************
|
|
* Copyright 2008 by Davide Bettio <davide.bettio@kdemail.net> *
|
|
* Copyright 2009 by John Layt <john@layt.net> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program; if not, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
|
|
***************************************************************************/
|
|
|
|
#ifndef CALENDARTEST_H
|
|
#define CALENDARTEST_H
|
|
|
|
#include <Plasma/PopupApplet>
|
|
#include <Plasma/Label>
|
|
|
|
#include <QTimer>
|
|
|
|
#include "plasmaclock/calendar.h"
|
|
|
|
namespace Plasma
|
|
{
|
|
class Svg;
|
|
}
|
|
|
|
class CalendarApplet : public Plasma::PopupApplet
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CalendarApplet(QObject *parent, const QVariantList &args);
|
|
~CalendarApplet();
|
|
|
|
void init();
|
|
void constraintsEvent(Plasma::Constraints constraints);
|
|
|
|
/**
|
|
* The widget that displays the calendar.
|
|
*/
|
|
QGraphicsWidget *graphicsWidget();
|
|
|
|
public slots:
|
|
void configChanged();
|
|
|
|
protected:
|
|
void createConfigurationInterface(KConfigDialog *parent);
|
|
void focusInEvent(QFocusEvent * event);
|
|
|
|
protected slots:
|
|
void configAccepted();
|
|
void updateDate();
|
|
void paintIcon();
|
|
|
|
private:
|
|
Plasma::Calendar *m_calendarWidget;
|
|
Plasma::Svg *m_theme;
|
|
QTimer *m_dateUpdater;
|
|
};
|
|
|
|
K_EXPORT_PLASMA_APPLET(calendar, CalendarApplet)
|
|
|
|
#endif
|