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.
|
#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
|