12345678910111213141516171819202122232425262728293031 |
- #ifndef INFORMATIONS_HPP
- #define INFORMATIONS_HPP
- #include <QApplication>
- #include <QMainWindow>
- #include <QLabel>
- #include <QTextEdit>
- #include <QPushButton>
- class Informations: public QMainWindow
- {
- Q_OBJECT
- private:
- QString &fileToLoad, &fileToSave;
-
- QPushButton *readyB;
- QLabel *nameL, *surnameL;
- QTextEdit *nameT, *surnameT;
-
- private slots:
- void ready ();
-
- public:
- Informations (QString &ftl, QString &fts);
- };
- #endif
|