##// 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
arbitrarytime.h
41 lines | 719 B | text/x-c | CLexer
Last comit before installation on pc-coillot
r50 #ifndef ARBITRARYTIME_H
#define ARBITRARYTIME_H
#include <QWidget>
#include <QLabel>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QLineEdit>
#include <QRegExpValidator>
timecode generation added to the rmapplugin:...
r62 #include <TC_types.h>
Last comit before installation on pc-coillot
r50
timecode generation added to the rmapplugin:...
r62 #include "paulcommoncrc.h"
class ArbitraryTime : public QWidget
Last comit before installation on pc-coillot
r50 {
Q_OBJECT
public:
explicit ArbitraryTime(char option, QWidget *parent = 0);
long currentTimeToSend;
timecode generation added to the rmapplugin:...
r62 PaulCommonCRC *paulCommonCRC;
Last comit before installation on pc-coillot
r50
QLabel *timeToSend_LABEL;
QHBoxLayout *main_HLAYOUT;
QVBoxLayout *main_VLAYOUT;
QLineEdit *timeToSend;
QRegExpValidator *validator;
signals:
void timeToSendChanged(long timeToSend);
public slots:
void editingFinishedSLOT();
};
#endif // ARBITRARYTIME_H