CCIMXDesktop
 
Loading...
Searching...
No Matches
MainShowWidget.h
1#ifndef MAINSHOWWIDGET_H
2#define MAINSHOWWIDGET_H
3
4#include <QWidget>
5
6namespace Ui {
8}
9
14class MainShowWidget : public QWidget {
15 Q_OBJECT
16
17public:
22 explicit MainShowWidget(QWidget* parent = nullptr);
24
25 void show_pinger();
26 void show_scanner();
27 void show_interfaces();
28
29private:
30 Ui::MainShowWidget* ui;
31};
32
33#endif // MAINSHOWWIDGET_H
The MainShowWidget class. in this application it is placed at one side of the sidebar widgets.
Definition MainShowWidget.h:14
void show_interfaces()
show the interfaces widget
Definition MainShowWidget.cpp:23
void show_scanner()
show the scanner widget
Definition MainShowWidget.cpp:19
void show_pinger()
show the pinger widget
Definition MainShowWidget.cpp:15