-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindicatorcontrol.h
More file actions
58 lines (47 loc) · 1.46 KB
/
indicatorcontrol.h
File metadata and controls
58 lines (47 loc) · 1.46 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef INDICATORCONTROL_H
#define INDICATORCONTROL_H
//******************************************************************************
#include <QWidget>
#include <QGridLayout>
#include <QTextEdit>
#include <QPushButton>
#include <QLineEdit>
#include <QDebug>
#include <QLabel>
#include <QWidget>
#include <boardindiatorobjects.h>
//******************************************************************************
class IndicatorControl: public QWidget
{
Q_OBJECT
public:
IndicatorControl();
void MSGselector(QStringList message);
private:
int flagConnected;
QStringList outSplitMassiv;
QStringList inSplitMassiv;
QString allMassiv;
QGridLayout *GridLayout_Form;
QLabel *textLblCarry1;
QLabel *textLblCarry2;
QLabel *textLblCarry3;
QLabel *textLblCarry4;
QLabel *textLblCarry5;
QLabel *textLblCarry6;
QLineEdit *text;
QLineEdit *text2;
QStringList BIObjectName;
// QList<QWidget*> BIWidjet;
QList<BoardIndiatorObjects*> BIObjects;
void MSGPlace(QStringList message);
void MSGColor(QStringList message);
void MSGText(QStringList message);
void MSGDiod(QStringList message);
private slots:
public slots:
void ReceiveMessage(QString message);
};
//******************************************************************************
#endif // INDICATORCONTROL_H
//******************************************************************************