Tagged Questions
5
votes
2answers
2k views
QGraphicsView and eventFilter
This has been bugging me for more than two days now, so i thought i should ask. I am using Qt 4.5.3 (compiled with VC2008) on Win7.
I have MyGraphicsView (inherits QGraphicsView) and MyFilter ...
4
votes
3answers
808 views
Tiling with QGraphicsScene and QGraphicsView
I'm creating a image visualizer that open large images(2gb+) in Qt.
I'm doing this by breaking the large image into several tiles of 512X512. I then load a QGraphicsScene of the original image size ...
4
votes
1answer
904 views
How to use Qt Model/View framework with the Graphics View framework
I am working on a mapping application and need to display the data objects using a table, a form and as graphical objects in the map. I'm using PyQt, but that's not really important as this is a Qt ...
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 ...
3
votes
2answers
167 views
Forcing QGraphicsItem To Stay Put
I have a QGraphicsScene that is filled with QGraphicsItems, and the user is able to pan and zoom around to inspect all of the various QGraphicsItems. However, I would like to have a QGraphicsTextItem ...
3
votes
1answer
685 views
Qt QGraphicsView one background image on center
My QGraphicsView item is a lot bigger than its background image, but I would like that background image to be drawn only once. Now the whole thing is filled with that background image as many times as ...
3
votes
1answer
276 views
Qt4: Scale invariant qgraphicsitem outlines
I am drawing some polygons using the Qt4 GraphicsView framework, and I allow the user to zoom in and out of the drawing. I would like the polygons to get larger and smaller as the user changes zoom ...
2
votes
4answers
184 views
How can I optimize the performance of a QGraphicsView-based app?
I have an app which is based on the Qt Graphics View framework.
It's a jigsaw puzzle game which basically cuts a pixmap into smaller pixmaps (puzzle pieces) and displays them as QGraphicsItems in a ...
2
votes
1answer
286 views
Widget background not transparent when using QGraphicsView but transparent when using QGridLayout
When I was using QGridLayout to display my widgets, only the widget was shown and the part of the image that was transparent was not shown. Now I switched to using QGraphicsScene and QGraphicsView, ...
2
votes
2answers
237 views
Fixed transform overlays in QGraphicsView
In a Qt based application I'm developing I'm using a QGraphicsView to display sensor data in a 2D grid. On the side I'd like to show a legend/palette to relate the colours in the grid to values.
The ...
2
votes
1answer
514 views
How to add an arc to the foreground of a QGraphicsView
how is it possible to add an QPainter arc to the QGraphicsView foreground.
I found QGraphicsView.drawForeground (self, QPainter, QRectF), but I don't understand how to use it. I am new to qt. I also ...
2
votes
5answers
880 views
Handling MouseEvents in Qt c++
Sorry for my beginner's question...
What is the easiest way to define procedures, which are executed when MousePressEvent or MouseReleaseEvent occurs?
For now I am defining my own class ...
2
votes
2answers
437 views
Events with QGraphicsItemGroup
In my application I want to use QGraphicsItemGroup for grouping items into one item.
I played with it a little and not sure using it because when I want to catch events, events are merged together but ...
2
votes
1answer
403 views
Lots of pointer casts in QGraphicsView framework and performance
Since most of the convenience functions of QGraphicsScene and QGraphicsItem (such as items(), collidingItems(), childItems() etc.) return a QList you're forced to do lots of qgraphicsitem_cast or ...
2
votes
1answer
1k views
QGraphicsView ensureVisible() and centerOn()
I am going to do pan/scale stuff on QGraphicsView.
So I read the documentation of QGraphicsView and see some utility functions like ensureVisible() and centerOn().
I think I understand what the ...
1
vote
1answer
64 views
QT4 QgraphicsView not repainting in a “for cycle” of displaying many pages
I wrote a program to experiment with poppler pdf library.
I am able to display pdf pages into a graphicsView with a method:
void MainWindow::setPage(int newpage)
{
pdfPage = ...
1
vote
1answer
126 views
Clipping child QGraphicsItems
I've QGraphicsItem that contains several other QGraphicsItems. How I can ensure that those child items are drawn and clipped against parent item's rect when moving them?
1
vote
2answers
1k views
Transparent QGLWidget on top of QGraphicsView
I'm using QGraphicsView to show a 2D image and also have a separate QGLWidget window to display some 3D object. I'm dynamically changing the image displayed in `QGraphicsView' based on the rotation of ...
1
vote
1answer
753 views
How do I move a QPixMapImage around a qgraphicsview
I can add a QPixMapImage to a QGraphicsScene, but then I have two issues.
First I cannot create a pointer to my QPixmapItem declared in the header, where i can with QGraphicsScene.
I get an error ...
1
vote
2answers
566 views
How to draw an ellipse/circle over QGraphicsScene in a QGraphicsView
I have a QGraphicsView with a QGraphicsScene. That QGraphicsScene contains a QPixmap. It is possible to drag the scene. On top of that scene I have a HUD with QLabels, QPushButtons and other stuff. ...
1
vote
1answer
421 views
QGraphicsView/QGraphicsScene rendering question
I am using QGraphicsScene/QGraphicsView pair in my application.
I had subclassed them for my purpose. The code snippet that generate the pair is below:
itsScene = new QGraphicsScene;
itsView = new ...
1
vote
1answer
733 views
Custom QGraphicsItems not compiling and gives “object is private” error
I am trying to create a Custom QGraphicsItem button as shown by Fred here. The code which he posted can be found here.
The problem is when I try and compile the code I get the following two errors:
...
1
vote
1answer
551 views
Qt4: Locking the mouse cursor in place while manipulating QGraphicsItem
I'm writing a little GUI utility in Qt4 which uses a QGraphicsScene. One of the items tracks the mouse in the horizontal plane as you move it around, and holding down a modifier key allows you to ...
0
votes
1answer
43 views
How to change QGraphicsPixmapItem visibility after its animation is finished?
I'm animating position and opacity of QGraphicsPixmapItem subclass using QPropertyAnimation. After pixmap becomes fully transparent I want to hide it using setVisible(false); or hide(); to block its ...
0
votes
1answer
91 views
What is the proper way to display a 3D model on top of a QGraphicsView?
I would like to display an image and a 3d model on top of that image. So far, I have used QGraphicsView to display a QGraphicsScene where I add the image as a QGraphicsPixmapItem.
The QGraphicsView ...
0
votes
1answer
95 views
How to draw in the scene of the QGraphicsView?
I have an application in which the user can draw some points with the mouse and I used QGraphicsView to do that.
I initialized a scene within the QGraphicsView:
scene = new ...
0
votes
3answers
321 views
QMainWindow - resizing problem with QGraphicsView
Using Qt 4.6 on Ubuntu 10.4
I have a QGraphicsView central widget in my MainWindow. Every time the program switches to a new level (Sokoban game), I want the MainWindow to adjust to the new size of ...
0
votes
2answers
91 views
Heap/Stack - Scope of variables going into QGraphicsItemGroup
If I have a QGraphicsItem that I want to put in a QGraphicsItemGroup, in a loop..like so:
for(int i =0; i < 2; i++)
{
for(int j = 0; j < 2; j++)
{
QPixmap p(imwidth, imheight);
...
0
votes
0answers
109 views
Detect location of a QGraphicsItem within a QGraphicsItemGroup relative to QGraphicsView
I have a QGraphicsItemGroup that is layed out in a specific way, to make sure that the QGraphicsItem that compose it create a tiled version of a large image.
I am doing some processing on the data ...
0
votes
1answer
225 views
QGraphicsView not repainting on scroll event
QT 4.7
I have a QGraphicsView / QGraphicsScene. The scene has a custom QGraphicsItem the whole scene is not displayed at one time, so it has a viewport.
I'm overriding the paint() method of my ...
0
votes
2answers
346 views
Events in qgraphicsview
I'm having trouble getting events in qgraphicsview working. I've subclassed qgraphicsview and tried to overload the mousePressEvent and wheelEvent. But neither mousePressEvent nor wheelEvent get ...
0
votes
1answer
1k views
Zoom QGraphicsItem to fit QGraphicsView
I am trying to create a QGraphicsView that will allow someone to scale the current QGraphicsItem to fit the size of the QGraphicsView window.
I have overridden QGraphicsItem to create a custom ...
0
votes
0answers
97 views
2nd image added to QGraphicsScene is blue
I have some code that I am using to turn data recieved from a method into an image. When I run the method and display a single image, the results are fine. However, if I then run the algorithm again ...
0
votes
2answers
312 views
How to display this data buffer in a QImage
I have an image I am trying to display in a QImage.
This is the snippet of code that populates the rows*cols image:
rgbMapped[row][col * 3] = red;
rgbMapped[row][col * 3 + 1] = green;
...
0
votes
1answer
341 views
QGraphicsScene::changed() always returns a single rect sized to the app window
In a Qt 4.7.1 Windows app, a slot that's connected to QGraphicsScene::changed() is fired as expected but the dirty region count is always 1 and the rect size I get is always the same as my app window. ...
0
votes
1answer
519 views
How to improve QGraphicsView performance in a 2D static scene with many items? (no way to solve it?)
If understood correctly, QGraphicsView is supposed to handle million items efficiently.
In my application, I only have some few thousand and the performance is already very bad. When the View is ...
0
votes
1answer
447 views
Resize image to fit window in Qt
I am using Qt to construct an application. My MainWindow consists of an image of a map which I would like to be resized to the fit the window. This means when the window gets smaller the image gets ...
0
votes
1answer
133 views
Qt4 QGraphicsView: How-to set QPen on float position
I've a QGraphicsView with an image and a custom cursor. The cursor is made out of two QPen-DotLines. A x-axis dotLine and a y-axis dotLine. The cross of the two lines is the mouse-cursor position. The ...
0
votes
1answer
286 views
How do I create a rotating cube effect in Qt?
I have a QGraphicsView and a slide show of QGraphicsScenes, at the moment when the user switches to the next slide I just change the Scene that the View is looking at and it changes instantly to ...
0
votes
1answer
466 views
How to anchor QGraphicsWidget/Item (make them static) on QGraphicsView
I want to make something like a hud. I have a QGraphicsScene with a huge QPixmap, that I added to a much smaller QGraphicsView. Now I need to add some control elements, like QLabel, QPushButton and ...
0
votes
1answer
95 views
Setting button focus in a graphcisview
I have placed a few buttons in a Qgraphicsscene, but I don’t know how to navigate to the button from a keyboard.
How would I set the focus to a button from the keyboard?
0
votes
2answers
580 views
Get updated size of QGraphicsView
In my Qt Application I am dynamically creating QGraphicsView(s) and adding them inside
a QGridLayout.
When I add first view inside grid, the view covers all the available space inside grid.
Then I add ...
0
votes
1answer
1k views
Why does my QGraphicsView not showing up in my MainWindow in Qt4?
This is probably something very obvious, but I have a new to Qt and can't figure it out. I have a simple MainWindow which has one button. When that button is clicked I want to create a QGraphicsScene, ...