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.
19 lines
276 B
19 lines
276 B
6 months ago
|
#ifndef MYDIALOG_H
|
||
|
#define MYDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include<QGraphicsView>
|
||
|
#include<QGraphicsScene>
|
||
|
|
||
|
class myDialog : public QDialog
|
||
|
{
|
||
|
public:
|
||
|
myDialog(QWidget *parent = nullptr);
|
||
|
|
||
|
private:
|
||
|
QGraphicsView view;
|
||
|
QGraphicsScene scene;
|
||
|
};
|
||
|
|
||
|
#endif // MYDIALOG_H
|