Subversion Repositories Code-Repo

Rev

Rev 362 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 362 Rev 363
Line 3... Line 3...
3
 
3
 
4
#include "GlobalDefines.h"
4
#include "GlobalDefines.h"
5
#include "SerialWidget.h"
5
#include "SerialWidget.h"
6
#include "MacroWidget.h"
6
#include "MacroWidget.h"
7
#include "IOWidget.h"
7
#include "IOWidget.h"
-
 
8
#include "PasteController.h"
8
 
9
 
9
class MainWindow : public QMainWindow
10
class MainWindow : public QMainWindow
10
{
11
{
11
        Q_OBJECT
12
        Q_OBJECT
12
    public:
13
    public:
Line 32... Line 33...
32
 
33
 
33
        // Serial data
34
        // Serial data
34
        IOWidget *ioWidget;
35
        IOWidget *ioWidget;
35
        QGroupBox *groupSerialData;
36
        QGroupBox *groupSerialData;
36
 
37
 
-
 
38
        QGroupBox *groupOther;
-
 
39
 
37
        // Macro controller + UI
40
        // Macro controller + UI
38
        MacroWidget *macroWidget;
41
        MacroWidget *macroWidget;
39
        QDockWidget *macroDockWidget;
42
        QDockWidget *macroDockWidget;
40
        QGroupBox *groupMacro;
-
 
41
        QPushButton *btnMacro;
43
        QPushButton *btnMacro;
42
 
44
 
-
 
45
        // Paste controller + UI
-
 
46
        PasteController *pasteWidget;
-
 
47
        QDockWidget *pasteDockWidget;
-
 
48
        QPushButton *btnPaste;
-
 
49
 
43
        // Status bar
50
        // Status bar
44
        QLabel *labelSerialStatus;
51
        QLabel *labelSerialStatus;
45
 
52
 
46
};
53
};
47
 
54