A QGraphicsView is a class from the Qt toolkit which provides a widget for displaying the contents of a QGraphicsScene.

learn more… | top users | synonyms

0
votes
1answer
76 views

Moving QGraphicsPixmapItem and getting itemChange events

I have a QGraphicsPixmapItem that I move around setFlag(QGraphicsItem::ItemIsMovable), I activated the ItemSendsScenePositionChanges flag on my item but the function itemChange(GraphicsItemChange ...
0
votes
1answer
8 views

QGraphicsView not showing the picture

I have a "tooltip.png" file in my local directory. the code below works when i put it in int main() but doesn't work when i put it in my MainWindow class constructor: QGraphicsScene scene; ...
0
votes
1answer
15 views

Placing a QWebView Over an Existing QGraphicsView

I'm trying to place a QWebView on top of an existing window that is just a QGraphicsView containing a single QGraphicsScene. Is there any way to do this without creating a new window? My goal is ...
0
votes
0answers
42 views

Qt contextmenu does not open

I have QGraphicsView/QGraphicsScene based application. In my app there are bunch of QGraphicsItem implementations inside view and some of them have context menu. Some context menus have sub menu which ...
2
votes
1answer
30 views

qgraphicsview horizontal scrolling always has a vertical delta

I've subclassed QGraphicsView for a custom canvas to be used in a CAD application. I've successfully reimplemented QGraphicsView::wheelEvent to check the keyboard modifiers for the control key and, if ...
6
votes
2answers
86 views

Multiple QGraphicsView for a single QGraphicsScene

I am having one QGraphicsScene to which i have added some QGraphicsItem. I want to create multiple QGraphicsViews each of which displays a particular section of my QGraphicsScene(not similar portion) ...
0
votes
1answer
42 views

Text position scaling

I'm now using QGraphicsView and QGraphicsScene for showing some charts. Depending on values of that charts (they are histograms) I change the scale. I also draw some text (they are derived from ...
0
votes
0answers
27 views

PySide: Collision testing a QGraphicsRectItem that ignores item transformations, after zooming in view

I have a QGraphicsRectItem with the ItemIgnoresTransformations flag set, and want to attach cornergrabbers to it, like the ones in Microsoft paint: To do this, I have a QGraphicsRectItem as my ...
0
votes
2answers
73 views

Qt: resource files (.qrc)

When i have this code and copy manually i.png to binary file destination scene = new QGraphicsScene(this); QPixmap pixm(qApp->applicationDirPath() + "/i.png"); scene->addPixmap(pixm); ...
0
votes
1answer
47 views

Qt QGraphicsView unit testing - how to keep the mouse in a “pressed” state?

I have a fairly complex QGraphicsView/Scene setup where by I have items with complex interactions. As such I want to unit test this to avoid creating bugs in already existing functionality. For one ...
2
votes
1answer
176 views

Qt Quick vs Graphics View Framework (QGraphicsScene)

I skimmed through new features of Qt5 and Qt Quick and don't really understand how it differs from the Graphics View Framework (QGraphicsScene) feature wise. It uses QML but beside that: Can Qt ...
0
votes
1answer
48 views

Place and image in specific coordinates in QGraphicsScene

In the code below I have used item.setPos(0,0); in order to place green.png in the upper-left corner of my application (QGraphicsView actually). But is appears right in the center from both directions ...
0
votes
1answer
47 views

QGraphicsView to pdf

I have a big scene successfully displayed in my window with the help of QGraphicsView/QGraphicsScene with scroll bars for navigation. Everything works fine. Now I would like now to render part of ...
0
votes
2answers
53 views

Painting on a QGraphicsScene without loosing the picture already on it. Qt C++

SO as the question says, i have a QGraphicsView on my UI. I have made a function that puts an image onto that QGraphicsView: // Read New Image from file QImage image(":/images/myFile.png"); /// ...
0
votes
1answer
58 views

Creating a permanent static overlay for QGraphicsView scene

I am making an app using Qt (currently 4.8) which displays a literal map from a large number of QGraphicsScene items. I would like to annotate the view with a scale. My requirement for the scale is ...
0
votes
1answer
36 views

Click event for QGraphicsView Qt

I have made a GUI in Qt that is basically a widget with a QGraphicsView on it i have a function: void GUI::mousePressEvent(QMouseEvent *event) { if(event->button() == Qt::LeftButton) { ...
0
votes
2answers
47 views

Adding an image to QtGraphicsView?

Hi iv looked at other questions and solutions for this but none seem to help for my specific problem. Im simply trying to add a picture to my GraphicsView that i have added using Qt designer .cpp ...
0
votes
1answer
47 views

converting scene coordinates to graph coordinates

I’m having a scene with (0, 0, 2000, 2000) coordinated as a rectangle. now I just want to plot some points on the scene like graph coordinates like (-x, +y , +x, -y) of the item on the scene . ...
1
vote
1answer
72 views

Rotating a QGraphicsPixmapItem results in extremly low quality texture

I am using a QGraphicsScene and QGraphicsView to display a QGraphicsPixmapItem. Whenever i rotate the item by anything but 90, 180, 270 degree the texture is displayed in extremly low quality. Image ...
3
votes
0answers
73 views

Changing multi select bind key in QGraphicsScene

I'm subclassing QGraphicsScene in PyQT and want to use "Shift" key for multi-select items instead of control key. I can do so by subclassing it and making my own mousePressedEvent, but then when I do ...
0
votes
1answer
46 views

zooming GraphicsView with wheelEvent

Im implementing the zooming of my QGraphicsView using wheelEvent void View::wheelEvent(QWheelEvent *e) { if (e->modifiers().testFlag(Qt::ControlModifier)){ // zoom only when CTRL key pressed ...
0
votes
0answers
143 views

QgraphicsView rubber band selection rectangle not visible

I have a QgraphicsView widget with lots of items on scene.Iam panning the view on ctr+left mouse click and zooming it to rectangle of rubber band created with left mouse button drag. Iam not able to ...
0
votes
0answers
60 views

FitInView is not allowing me to zoom GraphicsScene

I made a QGraphicsView of size (0, 0, 1024, 1024) and QGraphicsScene of size (0, 0, 2048, 2048) the flags i set setViewportUpdateMode(FullViewportUpdate); setCacheMode(CacheBackground); ...
0
votes
1answer
59 views

Access other item contents within a QGraphicsScene

I have a dialog.cpp file, it is within here I created my QGraphicsScene which uses the QGraphicsView. I created two classes that inherit QGraphicsPixmapItem, "Vehicle" and "Junction". Both of these ...
0
votes
1answer
51 views

Using QGraphicsScene and Qt::X11Bypasswindowmanagerhint produces BadMatch Error in X11

I am developing an application for Linux (RHEL, Gnome, Compiz) in Qt 4.8 using a QGraphicsScene with QGraphicsViews for each monitor. Each QGraphicsView has the Qt::X11Bypasswindowmanagerhint window ...
-1
votes
1answer
58 views

How do I create an Array of Images and use a for loop to display pictures in QT? [closed]

I want load 30 pictures from 0.png and load another pictures (1.png , 2.png , 3.png m 4.png) My images are this directory "D:/image". 1-How do I create an Array of Images? 2-How do I use a for loop to ...
0
votes
1answer
187 views

Qimage: out of memory, returning null image

I am writing a code to show a video in a graphicsView QObject. It goes like this: void MainWindow::UpdateVideo() { cap >> frame; cvtColor(frame, frame,CV_BGR2RGB); QImage Qframe = ...
0
votes
0answers
60 views

QGraphicsView/QGraphicsScene rendering glitches

Let’s say I add an image to a scene and a line such that one of its endpoint is precisely on one of the corners of a pixel. When I zoom in or out the view I see that the endpoint of the line shifts ...
1
vote
1answer
70 views

QGraphicsView shows nothing

I'm still learning Qt, I did a little project in Qt, i create a simple ui using qt ui designer, and using QGraphicsView to display a image loaded by QFileDialog, but when I added loaded image file to ...
0
votes
0answers
97 views

QT 5.0.1 QGraphicsView assertion failure on windows 8

I Built QT for Windows 8 from source and when i create a simple QGraphicsView with a single button the application fails to run with an assertion failure with the following stack trace ...
0
votes
1answer
143 views

PySide: Resizable scene in QGraphicsView

I'm trying to find a way to mark the border of a QGraphicsScene, and make it resizable inside a QGraphicsView, to create something similar to Microsoft Paint. In other words, my current ...
0
votes
1answer
106 views

Aligning QGraphicsItems to a grid when dragging and dropping

For example, if I wanted to display the player's inventory in a game using a QGraphicsView, how could I enforce a grid-based view where dragging and dropping items always results in them being aligned ...
0
votes
1answer
162 views

Scrolling QGraphicsView and QGraphicsScene

I have QGraphicsScene instance set to QGraphicsView on the GUI with scrollbars enabled and full view port update. But when I scroll my graphics view I get the items added to qgraphics scene ...
0
votes
0answers
81 views

How to use the QGraphicsView's translate() function?

here i have a scene and a associated view ,then i hava a position in the scene coordinates.I want to set the center of the viewport with the position.How can i do it? I try to use the translate() ...
0
votes
2answers
104 views

Rotate - TransformOriginPoint - PyQt4

I was trying to build a small UI using PyQt . It has a window , a button(Rotate) , and a polygon(rectangle) in a QGraphicsView. One aim of the app is to allow the user to rotate the polygon. That is ...
0
votes
0answers
44 views

Custom QGraphicsItemGroup

My problem: I wish to have a QGraphicsView/QGraphicsScene which contains a custom item which behaves as follows: It is a line between two other QGraphicsItems. Each end of the line must follow the ...
1
vote
1answer
68 views

Getting vertices of a QPolygonF

I need to get the vertices of a QPolygonF. This is my code till now class Example(QtGui.QGraphicsScene): def block(self): self.bpoint1 = QtCore.QPointF(150 , 150) self.bpoint2 = ...
1
vote
1answer
86 views

MousePressEvent catches signal unnecessary- PyQt4

So I have a QraphicsScene with a QGraphicsPolygonItem , which I flag as movable. And I also override the MousePressEvent. My code snippet tll now. def mousePressEvent(self , e): self.endx = e.x() ...
1
vote
0answers
141 views

[SOLVED]How to make QGraphicsItem to be visible only inside the parent QWidget? Simple example [closed]

I have a QWidget (myWidget) which contains only a QLabel (myLabel) inside of it. There is no layout around myLabel (myLabel must to be free because I want move it anywhere inside myWidget). So, I put ...
0
votes
1answer
185 views

Qt Deployment - QGraphicsView not displaying on other machines

So I've been making a program for my company using Qt 4.8.4 (required). When deploying the project to a different machine, the program runs fine (I included Qtgui4.dll and Qtcore4.dll). However, when ...
1
vote
0answers
36 views

Is it possible to have an item that is in one scene moved above another scene in Qt

I am currently learning Qt and I want to have 2 views with 2 seperate scenes. The second view is drawn above first one and only takes a corner of the first view. Is it possible for a custom ...
1
vote
2answers
145 views

How to make qt qgraphicsview scale to not affect stipple pattern?

I draw few rectangles inside the QGraphicsView ; I use custom stipple pattern for these by creating a QBrush with my QPixmap. This gets displayed with the default zoom level as expected. When I call ...
0
votes
0answers
99 views

QGraphicsView\QGraphicsItem render issues, help to optimize

I have a custom QGraphicsView and a custom QGraphicsItem (which paint a rectangle inside rectangle - nothing fancy), the custom QGraphicsView show a maze built from the custom QGraphicsItem's. When ...
0
votes
2answers
114 views

Delete QGraphics Items from QGraphicsLinearLayout on QGraphicsScene

I'm having a really frustrating problem, trying to delete qgraphicsitems in my application. I have a menu controller which is responsible for adding buttons to a layout and adding them to the scene. ...
3
votes
1answer
359 views

How to update a QPixmap in a QGraphicsView with PyQt

I am trying to paint on a QPixmap inside a QGraphicsView. The painting works fine, but the QGraphicsView doesn't update it. Here is some working code: #!/usr/bin/env python from PyQt4 import QtCore ...
0
votes
1answer
129 views

Trouble Connecting QPushButton Signal to QGraphicsView Slot

I'm having trouble connecting a signal in a QPushButton to a slot in my QGraphicsView. My Push Button Header: class Button : public QPushButton { Q_OBJECT public://public constructors / ...
0
votes
1answer
40 views

Signal QGraphicsViewPaintEvent from QPushButton

I have a QPushButton embedded in my QGraphicsScene using a QProxyWidget. When I click the button, I want to change a global game state object and then signal the paint event of the view, to update the ...
0
votes
1answer
173 views

Drawing on QGraphicsScene from a QGraphicsItem derived class

I am working on a RPG game in Qt, using the Graphics View Framework. I have create a class, "Player", which inherits QGraphicsItem. Now, i am trying to make an "attack" animation, so everytime i press ...
2
votes
1answer
275 views

QGraphicsItem selection with QTest::mousePress

I want to do some unit tests with qgraphicsitem. Below is simple code to test qgraphicsitem. ...
0
votes
1answer
164 views

How to invert QImage without affecting performance?

I have a QImage in a QGraphicsView which I need to show images continously. Some times I need to show the inverted images continuously. For this I use img.invertPixels(QImage::InvertRgba); But at this ...

1 2 3 4 5 7