CCIMXDesktop
 
Loading...
Searching...
No Matches
InfoWidget.h
1#ifndef INFOWIDGET_H
2#define INFOWIDGET_H
3#include <QWidget>
4class QLabel;
5class QListWidget;
6class QTableWidget;
7
8class InfoWidget : public QWidget {
9 Q_OBJECT
10public:
11 explicit InfoWidget(QWidget* parent = nullptr);
12
13public slots:
14 void show_current_port(const int port);
15
16private:
17 QLabel* nameLabel { nullptr };
18 QLabel* ipLabel { nullptr };
19 QLabel* portTitle { nullptr };
20 QTableWidget* infoTable { nullptr };
21 QListWidget* portList { nullptr };
22};
23
24#endif // INFOWIDGET_H
Definition InfoWidget.h:8