MainWindow.hpp 339 B

12345678910111213141516171819202122232425
  1. #ifndef MAINWINDOW_HPP
  2. #define MAINWINDOW_HPP
  3. #include <QMainWindow>
  4. #include <QLabel>
  5. #include <QTextEdit>
  6. #include <QPushButton>
  7. class MainWindow:public QMainWindow
  8. {
  9. Q_OBJECT private:
  10. QLabel * label;
  11. QTextEdit *text;
  12. QPushButton *button;
  13. QLabel *label2;
  14. private slots:void clic ();
  15. public:
  16. MainWindow ();
  17. };
  18. #endif