-
Notifications
You must be signed in to change notification settings - Fork 1
/
debugMode.h
64 lines (50 loc) · 1.34 KB
/
debugMode.h
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
59
60
61
62
63
64
/*********************************************************************************
*Copyright(C)
*ClassName: debugMode
*Author: 佳豪
*Version: 1.0
*Date: 2019.7.12
*Description: 调试窗口
直接show
在对应调试步骤的回调里加入信号量
*Others: //其他内容说明
*Function List: //主要函数列表,每条记录应包含函数名及功能简要说明
*History: 加入了一些信号量 2019.7.12 璞光
**********************************************************************************/
#pragma once
#include <QtWidgets/QDialog>
#include <QDebug>
#include <QPainter>
#include <vector>
#include <QMessageBox>
#include <QObject>
#include "statewidget.h"
#include "ui_debugmode.h"
class debugMode : public QDialog
{
Q_OBJECT
public:
debugMode(QWidget *parent = Q_NULLPTR);
private:
Ui::DebugMode ui;
private:
// 状态指示灯
int numberOfLight = 3;
std::vector<stateWidget *> vStateWidget; //定义对象的数组
int stateNumber = 0;
signals:
//分步
void grab_signal();
void caculate();
void outcome();
//直接
void out(int);
void deflection(int);
private slots:
void on_pb_nextStep_clicked();
void on_pb_reset_clicked();
void on_pb_confirmOutputO_clicked();
void on_le_inputDegreeO_textChanged(const QString &arg1);
void on_le_inputDegreeT_textChanged(const QString &arg1);
void on_pb_confirmOutputT_clicked();
};