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.
|
#include "mydialog.h"
|
|
|
|
myDialog::myDialog(QWidget *parent)
|
|
: QDialog{parent}
|
|
{
|
|
this->resize(400,400);
|
|
view.setParent(this);
|
|
view.setSceneRect(QRect(0,0,400,400));
|
|
scene.setSceneRect(QRect(0,0,400,400));
|
|
scene.addPixmap(QPixmap(":/ui/img/ui/details.png"));
|
|
view.setScene(&scene);
|
|
|
|
}
|