vote up 1 vote down star
1

I am trying to do a painting program with QT 4.5, so I am using the QGraphicsView for the canvas, and QGraphicsScene to store the items drawn. For some reasons, I just couldn't get a QPainter context in my own derived QGraphicsView

class DrawingCanvas : public QGraphicsView
{ 
  DrawingCanvas::DrawingCanvas(QWidget * parent);

 ...
};

DrawingCanvas::DrawingCanvas(QWidget * parent = 0) : QGraphicsView(parent) 
{
  ....
}

void DrawingCanvas::paintEvent(QPaintEvent& paintEventInfo)
{
  // Result in painter not active
  QPainter(this);
  ...
}

However, if I change the DrawingCanvas to be a child of QWidget, it works. Seeing that QGraphicsView is derived from QAbstractScrollArea, then QFrame, then QWidget, I would expecting that the code would work.

So I guess the questions are:

1) Why is that I can't use paintEvent in a QGraphicsView to get a active QPainter? 2) Is there possible I could get one?

Thanks in advance!

flag

1 Answer

vote up 2 vote down check

Right, after pulling out my hair for a while, this appears to be impossible, so here's my solution. Everything you draw must be added to the QGraphicsScene; so you derive your own implementation from it.

The simplest way is to define a temporary QGraphicsItem pointer for the lines, rectangles and etc which you want to draw.

Override the virtual mousePressed(), mouseMove() and mouseRelease() event accordingly. On the mousePressed(), initialise the temp QGraphicsItem pointer and add it to the scene.

Inside the mouseMoved(), set the temp QGraphicsItem's coordinates accordingly. For the mouseReleased, create a copy of the temp object and add it to the scene, and remove the temp QGraphicsItem (which you have been using for drawing lines, rectangles etc.) from the scene.

I guess the moral of this is that there is no QPainter context within a QGraphicsView, and you are better off ignoring its paintEvent().

Hope this helps someone who may stumble upon this.

link|flag
1  
I just went through this exact same process >.< You'd think they'd make drawing temporary items much easier. There is another solution though... overpainting. You can overlay an invisible widget and paint on that instead if you really wanted to. – Mark Aug 31 at 1:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.