I'm getting errors when I run a qt project and I can't understand what is the reason
errors:
'class MainWindow' has no member named 'setSceneRect' 'class MainWindow' has no member named 'setScene' `mapToScene' was not declared in this scope
the code:
mainwindow.cpp:
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent), ui(new Ui::MainWindow)
{
ui->setupUi(this);
QGridLayout * gridLayout = new QGridLayout(ui->centralWidget);
gridLayout->addWidget( new MainWindow() );
scene = new QGraphicsScene();
this->setSceneRect(50, 50, 350, 350);
this->setScene(scene);
}
void MainWindow::mousePressEvent(QMouseEvent * e)
{
double rad = 1;
QPointF pt = mapToScene(e->pos());
scene->addEllipse(pt.x()-rad, pt.y()-rad, rad*2.0, rad*2.0,
QPen(), QBrush(Qt::SolidPattern));
}
mainwindow.h:
private:
Ui::MainWindow *ui;
QGraphicsScene * scene;
First of all do not make an instance of
MainWindow
in it's constructor. I think instead ofgridLayout->addWidget( new MainWindow() );
you should add your view to the main window :You should call
setSceneRect
onQGraphicsScene
:Also you should assign a scene to a
QGraphicsView
by callingQGraphicsView::setScene
:mapToScene
is a function ofQGraphicsView
. So you should have something like :Finally i should mention that you can have a custom class which inherits from
QGraphicsView
and implementmousePressEvent
and other things related to scene and drawing there. Then you can have an instance of your custom class in yourMainWindow
.