Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
473 views

QGraphicsScene, Item Coordinates Affect Performance?

With the below code snippet I create a scene with 100.000 rectangles. The performance is fine; the view responds with no delays. QGraphicsScene * scene = new QGraphicsScene; for (int y = -50000; y ...
3
votes
0answers
252 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 ...
2
votes
1answer
45 views

QGraphicsTextItem RightToLeft text

i have to write some Farsi texts to a QGraphicsTextItem , but cant find how i can make QGraphicsTextItem to wirte RightToLeft ! can any one help me ? i tryed this way but didnt worked for me class ...
2
votes
1answer
77 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 ...
2
votes
2answers
70 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 ...
2
votes
1answer
148 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
2answers
257 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
899 views

QImage in a QGraphics scene

I am quite new to Qt.I am having troubles in inserting a QImage to a scene. Could somebody please tell me how to add a QImage to a QGraphicsScene. Thank you very much in advance. ~Tharanga
2
votes
1answer
595 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
346 views

Improve performance of “Accelerate your Widgets with OpenGL” Qt Sample?

I have been studying the Qt Quarterly article about QGraphicsScene and OpenGL for the purpose of using it in a project. I have already decided to use Qt, given its all-round excellence, but have gone ...
1
vote
1answer
12 views

About the efficiency issus of Qt Grapohics View Framework when there are vast items

Recently, i develop a new visualization software using the QT Grapohics View Framework. In the software, we need show a lot of items, include the point and line, about ten thousand above. But, in the ...
1
vote
1answer
29 views

Redefine QPainter options when redrawing QGraphicsItem

I want to redefine the QPainter before drawing earch QGraphicsItem in a QGraphics scene. void GraphicsScene::drawItems( QPainter * painter, int nbItem, QGraphicsItem *[] items, const ...
1
vote
1answer
48 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
89 views

Why are PNG images rendered from a QGraphicsScene being incorrectly offset?

I have a program that draws the contents of a QGraphicsScene to a PNG image. I have found that in some circumstances the PNG image is not being created correctly. The image generated appears to be ...
1
vote
1answer
54 views

Displaying an image with QGraphics Scene

Having an issue with displaying a loaded image in a QGraphicsScene. CTextBox::CTextBox(QWidget* parent /* = NULL */) { QPixmap image; image.load("basketball.png"); grid = new QGridLayout(); ...
1
vote
1answer
44 views

Qt QGraphicsScene::drawItems subsitute?

For QGraphicsScene::drawItems the reference says: Reimplement this function to provide custom painting of all items for the scene; gaining complete control over how each item is drawn. But this ...
1
vote
2answers
101 views

QGraphicsScene::~QGraphicsScene() segmentation fault

Good day! With Qt 4.7.3 an example below crashes at QGraphicsScene::~QGraphicsScene() call: #include <QCoreApplication> #include <QGraphicsScene> int main( int argc, char* argv[] ) { ...
1
vote
1answer
61 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
1answer
173 views

Update QGraphicsScene from another, non-main thread

I'm pretty new to QT's graphic view frame, and I couldn't find anything about this in the docs or on Google. I have a GUI application that draws a representation for some data. The application itself ...
1
vote
1answer
91 views

How to create a GUI with multiple lines of glyphs/text in parallel where the glyphs have x and y coordinates

I'm currently creating an application to edit parallel lists of events which happen on a timeframe. In the model/backend there is a list of lists where the sublist has all the items in order. Each ...
1
vote
1answer
44 views

Error by creating a list of QGraphicsItems

I have a QGraphicsScene on which I would like to draw some special curves. For that I made a class in which I define these special curves as a new QGraphicsItem: #include < QGraphicsItem> ...
1
vote
0answers
103 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
159 views

QGraphicsScene::clear() method crashes on release mode!

I inherited my scene from QGraphicsScene. I add many items(QGraphicslineItem, QGraphicsItem, QGraphicsTextItem) on this scene. Whenever i try QGraphicsSceneClear method it crashes on release mode. It ...
1
vote
1answer
336 views

PyQt4 on Mac: QGraphicsView with OpenGL is flickering

under Mac OS X I have a problem with QGraphicsView and OpenGL. Sometimes, not everytime, when the QGraphicsView gets updated, then there is a flickering. Without OpenGL it's all fine. But I need ...
0
votes
0answers
16 views

How to draw Qt widgets using Horde3d and OpenGL?

What I want is a Qt Application that uses Horde3D to display a 3d scene and draw QWidgets on top of the 3D scene using Horde3D(or OpenGL). Basically I want to add UI for my 3D scene. And this UI ...
0
votes
0answers
14 views

Qt render QGraphicsScene with background from QGraphicsView

I have QGraphicsScene with transparent background and i have QGraphicsView with background. How can i render some rect of the scene with background from the view?
0
votes
1answer
38 views

setpixel of QGraphicsScene in Qt

It's simple to draw line or ellipse just by using scene.addellipse(), etc. QGraphicsScene scene(0,0,800,600); QGraphicsView view(&scene); scene.addText("Hello, world!"); QPen pen(Qt::green); ...
0
votes
0answers
19 views

Which approach is more efficient for a flood fill in QGraphicsScene - QImage or QPainterpaths?

I am trying to implement floodfill in a QGraphicsScene environment where user can draw shapes and freehand lines. (I need to use QgraphicsScene for abilities such as dragging/resizing certain items) ...
0
votes
2answers
45 views

Getting started with a Tile-based game in Qt using QGraphicsScene and QGraphicsView

I'm going to start programming a 2D tile-based game in Qt and read about the QGraphicsScene and QGraphicsView classes which are intended for displaying and handling lots of 2D objects. My question is ...
0
votes
0answers
21 views

How to draw QGraphicsItems onto an image?

I am working on a PyQt4 application which uses QGraphicsScene in the core. Items are dynamically added onto the scene at irregular intervals by the program, and can also be manually added by the ...
0
votes
3answers
80 views

Drawing Shapes within a QGraphicsItem (parent) with positions relative to the parent

I have my own object implementing a QGraphicsItem - it is essentially just a square with a border. I am attempting to draw shapes within that item, using it as the parent. The issue is that the ...
0
votes
1answer
21 views

Can qgraphicsscene be conveted to a pixmap?

I want to convert a QGraphicsScene to a pixmap, so I can add it to a listwidget as a QGraphicsPixmapItem. I wonder is it possible? In another word, what I want to get is just like a thumb of a ...
0
votes
1answer
97 views

Smooth animations with QGraphicsScene

I hope my question isn't always the same question. I have a QGraphicsScene. Its items are some QGraphicsPixmaps. I move them with a timer that every second does SetX +10. I set +10 cause the window is ...
0
votes
0answers
27 views

QT / Need a QGraphicsView - Scene item paint cancelator

I need a way to stop all pending item paint events for a QGraphcicsView paint event, for example when I'm doing zooming with large worlds. How could I do this ? Some trick to cancel the proccess ? ...
0
votes
1answer
94 views

For QGraphicsScene using setZValue on a QGraphicsItem causes major slowdown

I'm using Qt (Mac, version 4.7) to rendering a rather large scene (map data from Open Street Maps) with QGraphicsView and QGraphicsScene. Everything works great until I try to set the Z value for the ...
0
votes
0answers
84 views

To any Qgraphics framework guru… need a solution… [closed]

I want to have a QGraphics framework view & edit capabilities to manage big vectorial worlds. I'm testing my program against a world with 100000 item entities. The feed of system is fast and also ...
0
votes
1answer
71 views

Super-imposing Scenes with QGraphicsView

I'm still something of a PyQt newbee - I've got a QGraphicsView that displays 3 different QGraphicScenes - they are switched using a dictionary. class MyScenes: def _initScenes(self): ...
0
votes
1answer
29 views

Any way to detect start of update-draw , end of update-draw for QGraphicsFrameWork?

I'd need to know this two points. When starts an update-drawing and when ends. In addittion I'need a way to interrupt this, in example when you are making zoom. Any idea ? Thanks
0
votes
1answer
54 views

QGrahicsItem and their children

I have now tried for hours to make sense of how QGraphicsItem behaves with respect to children. I create a new QGraphicsItem B (actually an own subclass of it), and then add it to another ...
0
votes
1answer
82 views

Meaning of first two paraters of QGraphicsScene constructor

I can construct a QGraphicsScene by using constructor below: QGraphicsScene::QGraphicsScene ( qreal x, qreal y, qreal width, qreal height, QObject * parent = 0 ) For example: QGraphicsScene ...
0
votes
1answer
66 views

How to do lower() and raise() for QGraphicsItem in Qt?

I wanted to changed z-order of graphicsitems in my graphicsscene. I have used QGraphicsWebView as graphicsitem. How can i achieve it ?
0
votes
1answer
66 views

Qt QGraphicsSvgItem renders too big (0.5 unit on each side)

If I draw an SVG item at (0, 0) with 64x64, the actual displayed SVG item is from (-0.5, -0.5) with 65x65. I measured this by drawing the boundingbox behind the SVG item. And the SVG item is sticking ...
0
votes
2answers
103 views

Should QGraphicsItem::boundingRect() include child bounding rects?

Googling suggests that it should. But the dragdroprobot example implementation (on the parent Robot object) suggests not: QRectF Robot::boundingRect() const { return QRectF(); } Which is ...
0
votes
0answers
45 views

QGraphicsScene not displaying items when zoomed in

I have a QgraphicsScene in which I add some custom QGraphicsItems. The zooming function I took out of the Qt example for elastic nodes: void renderArea::wheelEvent(QWheelEvent *event) { ...
0
votes
1answer
308 views

How to add item in a QGraphicsScene?

I am trying to add some custom QGraphicsItems in a QGraphicsScene on mouse click and at mouse cursor coordinates. But the items are not added at the same coordinates as the mouse cursor's. ...
0
votes
1answer
178 views

Moving items in QGraphicsView

I am new to Qt in general and QGraphicsView in particular. When I rotate a Qgraphicspixmapitem in it, it appears to move also. I have figured out that this has something to do with the QGraphicsView ...
0
votes
2answers
138 views

Qt tracing QGraphicsScene::itemAt() back to data model

I have a list of objects that I use to add objects into a QGraphicsScene: for(int i = 0; i < levelObjects.length(); i++) { QRect objRect; objRect = ...
0
votes
0answers
194 views

Changing QGraphicsView/QGraphicsScene so that scroll area always includes all visible items

I am working with PyQt4 and my application includes a QGraphicsView with QGraphicsScene. At the beginning, the QGraphicsView has no scroll bars, they appear when I zoom in. When I add an item, and ...
0
votes
1answer
227 views

How can I layer images in PyQt using QGraphicsScene and QGraphicsView

Let's say I have two images, image A and image B. Using QGraphicsScene and QGraphicsView, how can I draw image A to the background, and layer image B on top of image A? Thanks in advance.
0
votes
1answer
410 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 ...

1 2