Informations.hpp 457 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef INFORMATIONS_HPP
  2. #define INFORMATIONS_HPP
  3. #include <QApplication>
  4. #include <QMainWindow>
  5. #include <QLabel>
  6. #include <QTextEdit>
  7. #include <QPushButton>
  8. class Informations: public QMainWindow
  9. {
  10. Q_OBJECT
  11. private:
  12. QString &fileToLoad, &fileToSave;
  13. QPushButton *readyB;
  14. QLabel *nameL, *surnameL;
  15. QTextEdit *nameT, *surnameT;
  16. private slots:
  17. void ready ();
  18. public:
  19. Informations (QString &ftl, QString &fts);
  20. };
  21. #endif