kde-workspace/kcontrol/dateandtime/dtime.h

118 lines
2.6 KiB
C
Raw Normal View History

2014-11-13 19:30:51 +02:00
/*
* dtime.h
*
* Copyright (C) 1998 Luca Montecchiani <m.luca@usa.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 dtime_included
#define dtime_included
#include "ui_dateandtime.h"
#include <QSpinBox>
#include <QComboBox>
#include <QTimer>
#include <QWidget>
#include <QCheckBox>
#include <QtGui/qevent.h>
#include <QTimeEdit>
2014-11-13 19:30:51 +02:00
#include <knuminput.h>
class Kclock;
namespace Plasma {
class Svg;
}
class Dtime : public QWidget, public Ui::DateAndTime
{
Q_OBJECT
public:
Dtime( QWidget *parent = nullptr);
2014-11-13 19:30:51 +02:00
void save(QVariantMap &helperargs);
void processHelperErrors(int code);
void load();
2014-11-13 19:30:51 +02:00
QString quickHelp() const;
2014-11-13 19:30:51 +02:00
Q_SIGNALS:
void timeChanged(bool);
2014-11-13 19:30:51 +02:00
private Q_SLOTS:
void configChanged();
void serverTimeCheck();
void timeout();
void set_time();
void changeDate(const QDate &d);
2014-11-13 19:30:51 +02:00
private:
void currentZone();
void findNTPutility();
QString ntpUtility;
2014-11-13 19:30:51 +02:00
QTimeEdit *timeEdit;
2014-11-13 19:30:51 +02:00
Kclock *kclock;
2014-11-13 19:30:51 +02:00
QTime time;
QDate date;
QTimer internalTimer;
2014-11-13 19:30:51 +02:00
QString timeServer;
bool ontimeout;
2014-11-13 19:30:51 +02:00
};
class Kclock : public QWidget
{
Q_OBJECT
2014-11-13 19:30:51 +02:00
public:
Kclock(QWidget *parent = nullptr);
~Kclock();
2014-11-13 19:30:51 +02:00
void setTime(const QTime &t);
2014-11-13 19:30:51 +02:00
protected:
virtual void paintEvent(QPaintEvent *event);
virtual void showEvent(QShowEvent *event);
virtual void resizeEvent(QResizeEvent *event);
2014-11-13 19:30:51 +02:00
private:
void setClockSize(const QSize &size);
void drawHand(QPainter *p, const QRect &rect, const qreal verticalTranslation, const qreal rotation, const QString &handName);
void paintInterface(QPainter *p, const QRect &rect);
2014-11-13 19:30:51 +02:00
private:
QTime time;
Plasma::Svg *m_theme;
enum RepaintCache {
RepaintNone,
RepaintAll,
RepaintHands
};
RepaintCache m_repaintCache;
QPixmap m_faceCache;
QPixmap m_handsCache;
QPixmap m_glassCache;
qreal m_verticalTranslation;
2014-11-13 19:30:51 +02:00
};
#endif // dtime_included