Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
164 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
811 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
169 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
841 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
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
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
816 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
136 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
125 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
185 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
290 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
184 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
537 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
542 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
2answers
273 views

Ignore mouse events over transparent parts of an svg image in qgraphicsview?

I am working on a graphics view (using C++ and Qt) which contains quite a few svg images. I intercept clicks on them, but i'd like not to receive events (or to be able to ignore them) when mouse is ...
2
votes
1answer
649 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
511 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
661 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
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
3answers
275 views

restrict movable area of qgraphicsitem

Is there a way to restrict the area where a QGraphicsItem like QRect can be moved when setFlag(ItemIsMovable) is set? I'm new to pyqt and trying to find a way to move an item with the mouse, and the ...
2
votes
5answers
881 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
486 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
439 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 ...
2
votes
2answers
225 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
31 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
63 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
55 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
182 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
50 views

Transformation matrix for viewing a 2D drawing

I am refactoring a graphic program that shows a drawing. The program uses its own transformation and the code is quite complicated. I'd like to refact the code with a transformation matrix instead. ...
1
vote
1answer
56 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
195 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
1answer
65 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
79 views

Is there a way to drag QWidget over the QGraphicsView?

I want to drag custom items inherited by QWidget over the QGraphicsView? Any idea Thanks
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
327 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
205 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
135 views

QGraphicsView error - Trying to show a jpg with Python

I'm using Python 3.2 with Eric5 and QTDesigner to try and display a jpg in a QGraphicsView scene. The following code gives me a The file could not be opened. Reason: [Errno 22] Invalid argument: " ...

1 2 3 4