Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- #ifndef MAINWINDOW_H
- #define MAINWINDOW_H
-
- #include <QMainWindow>
-
- QT_BEGIN_NAMESPACE
- namespace Ui { class MainWindow; }
- class QGraphicsScene;
- QT_END_NAMESPACE
-
- class MainWindow : public QMainWindow
- {
- Q_OBJECT
-
- public:
- explicit MainWindow(QWidget *parent = nullptr);
- ~MainWindow();
-
- protected:
- bool eventFilter(QObject *obj, QEvent *event) override;
-
- private:
- void createComponents();
-
- Ui::MainWindow *ui;
- QGraphicsScene *m_scene;
- };
-
- #endif // MAINWINDOW_H
|