-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautodialog.h
45 lines (33 loc) · 919 Bytes
/
autodialog.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
/**
****************************************************************************************
* @Author: Tfly6 [email protected]
* @Date: 2023-06-16 00:18:58
* @LastEditors: Tfly6 [email protected]
* @LastEditTime: 2023-06-21 22:16:22
****************************************************************************************
*/
#ifndef AUTODIALOG_H
#define AUTODIALOG_H
#include <QDialog>
#include <QHideEvent>
namespace Ui {
class AutoDialog;
}
class AutoDialog : public QDialog
{
Q_OBJECT
public:
explicit AutoDialog(QWidget *parent = nullptr);
~AutoDialog();
QString topic; // 话题名
QString type; // 话题消息的类型
QString arg; // 参数
QString con; // 要发布的消息
private slots:
void closeEvent(QCloseEvent *e);
void on_pushButton_clicked();
void on_pushButton_2_clicked();
private:
Ui::AutoDialog *ui;
};
#endif // AUTODIALOG_H