up vote 2 down vote favorite
1
share [g+] share [fb]

I am using Qt´s QGraphicsView- and QGraphicsItem-subclasses. is there a way to not scale the graphical representation of the item in the view when the view rectangle is changed, e.g. when zooming in. The default behaviour is that my items scale in relation to my view rectangle.

I would like to visualize 2d points which should be represented by a thin rectangle which should not scale when zooming in the view. See a typical 3d modelling software for reference where vertex points are always shown at the same size.

Thanks!

link|improve this question

1  
Also take a peak at doc.trolltech.com/4.5/qpen.html#setCosmetic if you're using a custom paint routine – Mark Aug 31 '09 at 2:54
feedback

2 Answers

up vote 3 down vote accepted

Set the item's flag QGraphicsItem::ItemIgnoresTransformations to true does not work for you?

link|improve this answer
This indeed ensures the size of the item is correct, but at least in my case the positions are off after the transform. For example, when I draw a polygon in my app, and add child rectangle items in an unscaled (1:1) view, I get the following result: grafit.mchtr.pw.edu.pl/~szczedar/nozoom.png . After scaling and with the flag set, it looks like this: grafit.mchtr.pw.edu.pl/~szczedar/zoomout.png – neuviemeporte Mar 14 '11 at 14:10
The docs say the item with the flag set stays anchored to the parent, but I created the rect object with the the polygon as the parent and it didn't work. Tried the underlying pixmap item as a parent as well, no change. – neuviemeporte Mar 14 '11 at 14:14
feedback

How about this:

#include <QtGui/QApplication>
#include <QtGui/QGraphicsScene>
#include <QtGui/QGraphicsView>
#include <QtGui/QGraphicsRectItem>

int main(int argc, char* argv[]) {
    QApplication app(argc, argv);
    QGraphicsScene scene;
    scene.addText("Hello, world!");
    QRect rect(50, 50, 100, 100);
    QGraphicsRectItem* recti = scene.addRect(rect);
    QGraphicsView view(&scene);

    // Set scale for the view
    view.scale(10.0, 5.0);

    // Set the inverse transformation for the item
    recti->setTransform(view.transform().inverted());

    view.show();
    return app.exec();
}

As you can see the text is scaled up but the rectangle is not. Note that this does not only prevent the scaling for the rectangle but and other transformation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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