/*************************************************************************** * Copyright 2007 by Aaron Seigo * * Copyright 2007 by Riccardo Iaconelli * * * * 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 CLOCK_H #define CLOCK_H #include #include #include #include #include #include #include #include #include "ui_clockConfig.h" #include namespace Plasma { class FrameSvg; class Svg; class Dialog; } class Clock : public ClockApplet { Q_OBJECT public: Clock(QObject *parent, const QVariantList &args); ~Clock(); void init(); void constraintsEvent(Plasma::Constraints constraints); QPainterPath shape() const; void paintInterface(QPainter *painter, const QStyleOptionGraphicsItem *option, const QRect &contentsRect); public slots: void dataUpdated(const QString &name, const Plasma::DataEngine::Data &data); protected: void createClockConfigurationInterface(KConfigDialog *parent); void changeEngineTimezone(const QString &oldTimezone, const QString &newTimezone); protected slots: void clockConfigAccepted(); void clockConfigChanged(); void repaintNeeded(); void moveSecondHand(); private: void connectToEngine(); void drawHand(QPainter *p, const QRect &rect, const qreal verticalTranslation, const qreal rotation, const QString &handName); QRect tzRect(const QString &text); Plasma::FrameSvg *tzFrame(); void invalidateCache(); QString m_oldTimezone; bool m_showSecondHand; bool m_fancyHands; bool m_showTimezoneString; bool m_showingTimezone; Plasma::FrameSvg *m_tzFrame; Plasma::Svg *m_theme; QTime m_time; enum RepaintCache { RepaintNone, RepaintAll, RepaintHands }; RepaintCache m_repaintCache; QPixmap m_faceCache; QPixmap m_handsCache; QPixmap m_glassCache; qreal m_verticalTranslation; QTimer *m_secondHandUpdateTimer; bool m_animateSeconds; int m_animationStart; /// Designer Config file Ui::clockConfig ui; }; K_EXPORT_PLASMA_APPLET(clock, Clock) #endif