Tagged Questions

4
votes
2answers
6k views

How should I use a QGraphicsScene with layouts and widgets

I'm creating some graphic data displaying widget in Qt4 and I was tempted to use the QGraphicsScene for it, create QGraphicsItems for the data items etc. However, I wanted to add some layer of ...
2
votes
1answer
206 views

Qt GUI Development - Displaying a 2D grid using QGraphicsView

I'm new to Qt development so I've being trying to research a solution to a user interface I need to design. My project is to simulate players in an online game moving around a global map. To represent ...
0
votes
1answer
411 views

QGraphicsView - slow scale performance under Linux

I'm making a program that will display a few images from a directory beside each other. When I scale the images to fit within the height of the window (ie - QGraphicsPixmapItem->scale(...)), it runs ...
0
votes
1answer
113 views

QTimer with QDragEvent problems

I have a GUI application where you can drag widgets around in a QGraphicsView/Scene. You can also pan and zoom while you're not dragging a widget. What I want: I want to make it so that when you're ...