##// END OF EJS Templates
Last comit before installation on pc-coillot
Last comit before installation on pc-coillot

File last commit:

r50:47b677d190ee default
r50:47b677d190ee default
Show More
mainwindowui.h
56 lines | 1.2 KiB | text/x-c | CLexer
Add missing files to the repository
r14 #ifndef MAINWINDOWUI_H
#define MAINWINDOWUI_H
#include <QWidget>
#include <QLabel>
#include <QSpinBox>
#include <QGridLayout>
#include <QPushButton>
#include <QTextEdit>
#include <QDialog>
Last comit before installation on pc-coillot
r50 #include "systemtime.h"
Add missing files to the repository
r14 class mainwindowui : public QWidget
{
Q_OBJECT
public:
explicit mainwindowui(QWidget *parent = 0);
signals:
public slots:
void displayMessage(QString message);
Last comit before installation on pc-coillot
r50 void updateTimeToSend(long timeToSend);
Add missing files to the repository
r14
public:
Last comit before installation on pc-coillot
r50 long arbitraryTime;
Add missing files to the repository
r14 QLabel *usbDeviceNumber_LABEL;
QLabel *linkNumber_LABEL;
QLabel *starDundeeStatusQueryDialogLabel;
Last comit before installation on pc-coillot
r50 QLabel *currentTimecodeValue_LABEL;
QLabel *currentTimecodeFlag_LABEL;
Add missing files to the repository
r14
QSpinBox *usbDeviceNumber_SPINBOX;
QSpinBox *linkNumber_SPINBOX;
QGridLayout *connection_LAYOUT;
QGridLayout *starDundeeStatusQueryDialogLayout;
QDialog *starDundeeStatusQueryDialog;
Last comit before installation on pc-coillot
r50 QPushButton *button_sendSystemTime;
QPushButton *button_sendArbitraryTime;
Add missing files to the repository
r14 QPushButton *startTimeButton;
QPushButton *sendTimecodeButton;
QPushButton *starDundeeStatusQueryRetryButton;
QPushButton *starDundeeStatusQueryAbortButton;
Last comit before installation on pc-coillot
r50 SystemTime *systemTime;
Add missing files to the repository
r14 QTextEdit* console;
};
#endif // MAINWINDOWUI_H