##// END OF EJS Templates
Minor updates for qt5 compatibility
Minor updates for qt5 compatibility

File last commit:

r62:8490a8b44e9a default
r66:17db61d84eef default
Show More
systemtime.h
36 lines | 631 B | text/x-c | CLexer
#ifndef SYSTEMTIME_H
#define SYSTEMTIME_H
#include <QWidget>
#include <QLabel>
#include <QGridLayout>
#include <QLineEdit>
#include <QRegExpValidator>
#include "arbitrarytime.h"
class SystemTime : public QWidget
{
Q_OBJECT
public:
explicit SystemTime(QWidget *parent = 0);
signals:
void timeToSendChanged(long timeToSend);
public slots:
void editingFinishedSLOT(long time);
void systemTimeHasChanged(long time);
private:
long currentTime;
QLabel *currentTimePrefix_LABEL;
QLabel *currentTime_LABEL;
QGridLayout *main_LAYOUT;
ArbitraryTime *arbitraryTime;
};
#endif // SYSTEMTIME_H