##// 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
Last comit before installation on pc-coillot
r50 #ifndef SYSTEMTIME_H
#define SYSTEMTIME_H
Progress bar added to the plugin
r57 #include <QWidget>
Last comit before installation on pc-coillot
r50 #include <QLabel>
#include <QGridLayout>
#include <QLineEdit>
#include <QRegExpValidator>
#include "arbitrarytime.h"
timecode generation added to the rmapplugin:...
r62 class SystemTime : public QWidget
Last comit before installation on pc-coillot
r50 {
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