src/MonNodes.h

changeset 310
bdaac24b86ed
child 346
792058058c2f
equal deleted inserted replaced
309:8678a0731737 310:bdaac24b86ed
1 #ifndef _MONNODES_H
2 #define _MONNODES_H
3
4 #include <QDialog>
5 #include <QtWidgets/QGridLayout>
6 #include <QtWidgets/QGroupBox>
7 #include <QtWidgets/QHBoxLayout>
8 #include <QtWidgets/QHeaderView>
9 #include <QtWidgets/QPushButton>
10 #include <QtWidgets/QTableWidget>
11
12 namespace Ui {
13 class MonNodes;
14 }
15
16 class MonNodes : public QDialog
17 {
18 Q_OBJECT
19
20 public:
21 explicit MonNodes(QWidget *parent = nullptr);
22 ~MonNodes();
23
24 signals:
25 void setStatus(QString);
26
27 private slots:
28 void on_editButton_clicked();
29 void refreshTable(void);
30
31 public slots:
32 void refreshNodes(QString);
33
34 private:
35 QGridLayout *gridLayout;
36 QTableWidget *tableNodes;
37 QGroupBox *groupBox;
38 QHBoxLayout *horizontalLayout;
39 QPushButton *quitButton;
40
41 void edit(int recno);
42 };
43
44 #endif

mercurial