You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
535 B
37 lines
535 B
#ifndef MENU7_H |
|
#define MENU7_H |
|
|
|
#include <QWidget> |
|
|
|
namespace Ui { |
|
class menu7; |
|
} |
|
|
|
class menu7 : public QWidget |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit menu7(QWidget *parent = nullptr); |
|
~menu7(); |
|
|
|
signals: |
|
void signaltest(QStringList msg); |
|
|
|
void signallowtemp(QString id); |
|
void signalhightemp(QString id); |
|
|
|
private slots: |
|
void on_pushButton_clicked(); |
|
|
|
void on_pushButton_2_clicked(); |
|
|
|
void on_pushButton_4_clicked(); |
|
|
|
void on_pushButton_3_clicked(); |
|
|
|
private: |
|
Ui::menu7 *ui; |
|
}; |
|
|
|
#endif // MENU7_H
|
|
|