##// END OF EJS Templates
Progress bar added to the plugin
Progress bar added to the plugin

File last commit:

r57:71cb087f0080 default
r57:71cb087f0080 default
Show More
systemtime.h
38 lines | 687 B | text/x-c | CLexer
#ifndef SYSTEMTIME_H
#define SYSTEMTIME_H
#include "paulcommon_global.h"
#include <QWidget>
#include <QLabel>
#include <QGridLayout>
#include <QLineEdit>
#include <QRegExpValidator>
#include "arbitrarytime.h"
class PAULCOMMONSHARED_EXPORT 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