CCIMXDesktop
 
Loading...
Searching...
No Matches
ToolBoxs.h
1#ifndef TOOLBOXS_H
2#define TOOLBOXS_H
3
4#include <QWidget>
5
6namespace Ui {
7class ToolBoxs;
8}
9
13class ToolBoxs : public QWidget {
14 Q_OBJECT
15
16public:
20 enum class ShowType {
21 PINGER,
22 SCANNER,
24 };
29 explicit ToolBoxs(QWidget* parent = nullptr);
30 ~ToolBoxs();
31
32signals:
37 void indicate_show(const ShowType type);
38
39private:
40 Ui::ToolBoxs* ui;
44 void setup_connections();
45};
46
47#endif // TOOLBOXS_H
The ToolBoxs class.
Definition ToolBoxs.h:13
ShowType
The ShowType enum.
Definition ToolBoxs.h:20
@ INTERFACES
show interfaces
void indicate_show(const ShowType type)
indicate_show oh, show what?