Tagged Questions
6
votes
1answer
163 views
How to test proximity to the outline of a QGraphicsPathItem?
I'm trying to test whether a given point (x, y) is located on or close to the outline of a QGraphicsPathItem.
Using QGraphicsItem.contains() or .collidesWithItem() / Path() will not do: those also ...
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
805 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
901 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
165 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
2answers
830 views
how to pan images in QGraphicsView
I am currently able to load my image into a grahpics scene, and then again into a QGraphicsViewer.
I am able to implement a zoom feature by dtecting a QEvent::Wheel and then calling the ...
3
votes
1answer
684 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
2answers
6k views
QGraphicsView scrolling and image scaling/cropping
I would like to have a background image in my QGraphicsView that is always scaled (and cropped if necessary) to the size of the viewport, without scrollbars and without scrolling with the keyboard and ...
3
votes
1answer
815 views
How can I implement Google Maps-like tile scrolling in Qt?
I'm using Qt/C++ and trying to draw a large and complex QGraphicsScene. Once I add a lot of objects, panning and zooming become unpleasantly slow. (No surprise here, of course). I've played with ...
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
1answer
126 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 ...
2
votes
1answer
119 views
Qt QGraphicsScene & OpenGL, which can be the best approach to mix both?
I'm going to start development on my vectorial viewer app. I have explored the 2D and 3D Qt tools and I have the impression that I have to create two independents data worlds. The QGrapchicsScene ...
2
votes
4answers
183 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
283 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
1answer
180 views
QGraphicsItem drawing problem
I am working on a small Tower Defense game in order to learn Qt. I am using a QGraphicsScene to hold all the object of the game. To make them move, I am not using the Animation framework but I'm ...
2
votes
1answer
532 views
Qt add item in the center of the scene/ view
Greetings,
I'm trying to add a QGraphicsItem exactly in the center of the current screen.
My QGraphicsScene is very large (10k X 10K), so the QGraphicsView cannot show it entirely, there are scroll ...
2
votes
1answer
537 views
Qt : Efficiently handle QGraphicsItems that have “lots of pixmaps”? (RTS)
I'm currently building up a small Real Time Strategy 2D engine. And I wonder how to handle the many everchanging sprites that will eventually cluter my screen.
FYI, I am not aiming at anything AAA ...
2
votes
1answer
647 views
QGraphicsScene/QGraphicsView performance
I am using QGraphicsScene/QGraphicsView pair in my project
I have performance issue with this pair.
I added my custom graphics items to scene and displayed the contents with view. After that my custom ...
2
votes
1answer
147 views
Does a QGraphicsView take ownership over its associated graphics scene?
I was wondering... if I allocate a graphics scene
QGraphicsScene* scene = new QGraphicsScene();
and associate it with a graphics view
this->ui->graphicsView->setScene(scene);
does the ...
2
votes
1answer
276 views
How to unit test qt graphics view widgets/items
I have an application that makes extensive use of the graphicsview architecture in Qt4 and I would like to start automated testing of the ui components, but I cannot find any resources related to what ...
2
votes
1answer
507 views
Make QGraphicsView do smooth centerOn
i am not really newbie in Qt, but there are a few things i don't know...
I am programming in Python, but feel free to post your answers in ANY language.
So, i have a few QGraphicsItem (s), positioned ...
2
votes
1answer
656 views
How to print content of a QGraphicsView
How can I print the content of a QGraphicsView in Qt?
Thanks a lot.
2
votes
1answer
513 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
878 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
1answer
484 views
The best way to use Video with QGraphicsScene
I am currently using Phonon VideoWidgets inside of a QGraphicsScene using a QGraphicsProxyWidget.
I have my viewport set to a QGLWidget.
However, it causes me big issues when I try to apply some ...
2
votes
2answers
436 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
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 ...
2
votes
2answers
224 views
take a snapshop of a qgraphicsview
I am using Qt 4.5 and a qgraphicsscene/view to show video to the user.
I would like to provide a "take a snapshop" button and I am sure that there is a pretty straightforward way much simpler of ...
2
votes
2answers
1k views
QGraphicsView and QGraphicsItem: don´t scale item when scaling the view rect
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. ...
2
votes
5answers
6k views
calling Qt's QGraphicsView::setViewport with a custom QGLWidget
I've derived from QGLWidget before, like so:
class MyGLWidget : public QGLWidget
{
public:
// stuff...
virtual void initializeGL() { /* my custom OpenGL initialization routine */ }
// more ...
1
vote
1answer
30 views
Qt4: QGraphicsScene/View and custom transformation method?
I know that it is possible to use affine transformations with Qt. But is it also possible to set a complete custom global transformation method?
Use case: Drawing projected geographic points (lat, ...
1
vote
1answer
60 views
Drag and Drop between different QGraphicsView's
I have a QMainWindow with two QGraphicsView's each owning a QGraphicsScene. Both views are displayed (on screen) constantly. I would like to be able to drag and drop objects (objects of a class ...
1
vote
2answers
53 views
Own objects into QGraphicsScene
I would like to have a drag-and-drop feature based on images. If I drag and drop an image I would like to know which image I picked out and moved with (a simple std::string will do to uniquely ...
1
vote
0answers
179 views
Tracking mouse move in QGraphicsScene class
I subclassed QGraphicsScene and added method mouseMoveEvent to handle mouse move event. I created a ruler on top of GraphicsView and have the ruler tracking mouse movement. In the ...
1
vote
1answer
55 views
Set QGraphicsTextItem origin in PyQt
If I want to place one letter (a QGraphicsTextItem) in a QGraphicsView, is there any way I can set the text to display in the middle of the coordinates I specify? If I use ...
1
vote
2answers
194 views
Unable to fully remove border of PyQt QGraphicsView
I have tried calling self.setStyleSheet("background: transparent; border: transparent;") on a QGraphicsView, but it still leaves a 1 pixel border on the top edge. I have also tried replacing border: ...
1
vote
0answers
98 views
QGraphics paints custom widget differently in paintEvent than resizeEvent and vice-versa
I have written code for my graph and it works fine, but when I need to resize it, problems start.
Resize event doesn't fit my QGraphicScene to QGraphicsView, but same code in paint event works fine.
...
1
vote
1answer
325 views
More efficient central widget in a QMainWindow: QGLWidget VS QGraphicsView
I am using a QMainWindow for my app and want to do some openGL rendering. 2 approaches: 1) set as central widget a QGLWidget and do all the rendering there, OR 2) set as central widget a ...
1
vote
1answer
202 views
Nothing is displayed in QGraphicsScene
I am trying to use the qgraphicsview qgraphicsitem to create a scene like a chess.
I am following the Official example trying to create it, but there is nothing displaying. The code is pretty the ...
1
vote
1answer
90 views
How to make non-smooth / stepwise scolling in a qgraphicsview
I have a scene which has a basically table-like layout. Thus I'd like it to scroll like a table... one row or column at a time. Specifically, the upper left visible item should have it's upper left ...
1
vote
0answers
71 views
Cant Get Touch Inputs ın QPixMap(image) in QView
I have a QScene object in QWidget and inside QWidget i have QGraphicsView. I convert images to QPixMap give it to QScene as an element and i defined touch events in QGraphicsView class. In ...
1
vote
1answer
921 views
QGraphicsView Right button mouse press event problem
I have a View class which is reimplemented from the QGraphicsView class.
I'm trying to draw a line when the mouse is clicked with right button.
Here is my mousePressEvent, mouseReleaseEvent and ...
1
vote
2answers
581 views
QGraphicsView: Disable automatic scrolling
I want to have a QGraphicsView that never scrolls automatically.
Similar: Basically, my question is identical to http://developer.qt.nokia.com/forums/viewthread/2220 , but that thread didn't receive ...
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
281 views
Making QGraphicsScene bigger when a graphic item is placed against its border
I've made a QGraphicsScene with a mouseClickEvent that lets the user create blue squares inside of it. But I want to make the scene grow when an item is placed against its border so that the user ...
1
vote
2answers
395 views
Accepting drops on a QGraphicsScene
I'm trying to implement drag'n'drop for a QGraphicsScene. Here are the events I've overloaded:
void TargetScene::dragEnterEvent(QGraphicsSceneDragDropEvent *event) {
bool acceptDrag = false;
...
1
vote
1answer
136 views
how to move scrollbars simultaneously in qt
I have two view whose perspectives are xy and xz. These views have their own scrollbars and x side of these views are equal. When i move scroll bar of x sides , i want x scrollbars to move ...
1
vote
1answer
312 views
How to move a QGraphicsItem to another scene without losing the mouse grab?
I have one QGraphicsScene as the main scene with several movable QGraphicsItems in it and another QGraphicsScene on top of the main scene as an overlay. The overlay scene is exactly the same size as ...
1
vote
2answers
565 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. ...