6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef REALTIMEPARTSWINDOW_H
#define REALTIMEPARTSWINDOW_H
#include <QMainWindow>
#include <qlabel.h>
#define CONTROL_LIST_COL_MAX 3
#define CONTROL_LIST_ITEM_MAX 8
namespace Ui {
class realtimePartsWindow;
}
class realtimePartsWindow : public QMainWindow
{
Q_OBJECT
public:
explicit realtimePartsWindow(QWidget *parent = 0);
~realtimePartsWindow();
private slots:
void on_backButton_clicked();
private:
Ui::realtimePartsWindow *ui;
QLabel *m_arrLbState[CONTROL_LIST_COL_MAX][CONTROL_LIST_ITEM_MAX];
void reloadUi(void);
};
#endif // REALTIMEPARTSWINDOW_H
|