A QGraphicsScene is a class from the Qt toolkit that provides a surface for managing a large number of 2D graphical items.
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 ...
2
votes
2answers
63 views
+50
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
11 views
Keep selection in QGraphicsScene?
In QGraphicsScene, with Ctrl modifier I can select multiple items. But, if I click on blank field on QGraphicsScene (even though I press "Ctrl" Key), it lose it's own previous selection. I want to ...
2
votes
1answer
150 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
47 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 ...
1
vote
1answer
61 views
Multicolor tooltip in Qt
I want to have moveable multicolor tooltip for QGraphicsItems. For example when I click on graphicsItem in scene, tooltip appears, then during dragging mouse tooltip should follow cursor. I can ...
0
votes
1answer
44 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
1answer
44 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 .
...
0
votes
0answers
17 views
process collisions on a QGraphicsPixmapItem even if the opacity is 0
I have some QGraphicsPixmapItem's that can have the opacity set by the user, including setting the opacity to 0. Once the opacity is set to 0 however, the object no longer captures mouse events, and ...
1
vote
1answer
70 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
67 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
0answers
132 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 ...
1
vote
0answers
55 views
QGraphicsScene to HTML?
Using Qt, I am working on a tool that displays items in a QGraphicsScene. Items are both polygons and QGraphicsTextItems. The latter can contain hyperlinks.
Problem: I am trying to export the ...
0
votes
0answers
58 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
58 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
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
67 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 ...
1
vote
0answers
32 views
Overlay items in qtgraphicsscene
I would like to draw some dynamical overlay elements in a scene.
Usually I would go for the paintEvent in the view or foreground painting for doing overlays, but this time I need to interact with ...
0
votes
0answers
96 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
142 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
101 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 ...
1
vote
1answer
101 views
Change QGraphicsItem's local Co-Ordinate system to make origin at (0,0)
I have a QGraphicsView and a QGraphicsScene called scene with scene->setSceneRect(0,0,600, 600).
I have created a simple custom QGraphicsItem called background with boundingRectangle(0,0,600,600).
...
0
votes
0answers
60 views
How to get the color of XY point on QGraphicsScene?
This seems trivial, but can't find a solution. I need to read a color of certain x,y point on QGraphicsScene.
Something like graphScen->colorAt(x,y);
0
votes
1answer
153 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
79 views
QPushButton background
I've created a QVBoxLayout at a QWidget where I dynamically create QPushButtons, put them in the layout and then erase them. I wanted to give these buttons a background so I deceided to use ...
0
votes
1answer
79 views
Animating QWidgets in a QGraphicsScene
So I'm trying to use QPropertyAnimation on a QWidget that has been added to a QGraphicsScene and it's not working. I can't really copy and paste the code as it's intertwined with a somewhat ...
1
vote
1answer
89 views
Qt: Properly integrating undo framework with QGraphicsScene
I'm writing a Qt app that is based around a QGraphicsScene canvas with movable shapes on it, and I'm trying to integrate undo-redo functionality. For most functions like creation and deletion of ...
1
vote
1answer
66 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 = ...
2
votes
1answer
133 views
pyqt - contextmenu for QGraphicsScene
I have a QGraphicsScene and I will display a contextmenu. But nothing happend.
Here is my Code:
class graphicsScene(QtGui.QGraphicsScene):
def __init__ (self, parent = None):
...
1
vote
2answers
122 views
Qt 4.8 - Showing “loading” animation while updating the QGraphicsScene
I’m using Qt 4.8.
I have a big QGraphicsScene to update (it takes 3 secs to append the new QGraphicsObjects).
I would like to show the user that the update is in progress.
In particular I thought ...
0
votes
1answer
174 views
QT QGraphicsScene Drawing Arc
I have a question about drawing specific arc on a scene. I have this information about arc:
Starting Koordinates,
Start Angle,
End Angle ,
Radius.
But I can't use them efficently with QPainter. ...
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 ...
0
votes
2answers
302 views
QComboBox doesn't show its item list
I have problem with QComboBox as item delegeate editor for QTableWidget.
QTableWidget uses SqlTypeDelegate as item delegate.
When I draw QTableWidget inside QGraphicsScene(through ...
0
votes
1answer
148 views
QGraphicsItem: disable antialiasing when scaled
i have a custom QGraphicsItem to draw some primitives using QPainterPath.
When i scale up the scene i would like to see pixels of that paths without anti aliasing. Just like you see the QPixmap pixels ...
2
votes
2answers
159 views
QGraphicsProxyWidget has clipped context menu in QGraphicsScene
The following code is based on the documentation of Graphics View Framework. I embed a QLineEdit in a QGraphicsScene and run the program. When I right click the line edit in the scene I get a clipped ...
2
votes
1answer
155 views
what is the qtransform in QGraphicsScene::itemAt()
I create a custom QGraphicsItem. And overwrite the boundingRect() and paint().
QRectF myTile::boundingRect() const
{
return QRectF(xPos*10,yPos*10,10,10);
}
void myTile::paint(QPainter *painter, ...
0
votes
1answer
124 views
How to save a graphics image from QGraphicsScene in pyQT
How to render a graphics image from QGraphicsScene in pyQT
I have an image in QGraphicsScene, which is created from multiple QGraphicsPixMapItem items.
I need to render it out as a single image on ...
1
vote
1answer
126 views
get item's parent scene after QGraphicsScene::addItem ( QGraphicsItem * item )
I create a new QGraphicsItem named myItem. And in the mainwindow.cpp file I have a QGraphicsScene scene. In the constructer of mainwindow:
ui->setupUi(this);
scene = new QGraphicsScene(this);
...
0
votes
1answer
43 views
QGraphicScene Pop Ups for a second then vanishes
I have a all my code inside the constructor of a mainWindow. The problem is that the display only pop ups for a second and than vanishes. Any help will be much appreciated . Following is the code.
...
0
votes
1answer
163 views
Store QLineEdit's data into a QString upon a QPushButton click
I am new to Qt programming. What I want to do is pretty much self explanatory from the title I guess. I have a lineEdit whose data I want to store in a QString when a cretain PushButton is clicked. ...
0
votes
1answer
96 views
return custom QGraphicsItem by itemAt() or collidingItems()
I create my own class
class myTile : public QGraphicsItem{}
I add these myTile in a QGraphicsScene. Every myTile has a value and a getter for the value. Now I want to get a myTile and read its ...
0
votes
3answers
84 views
Memory management for class member variable in Qt
I am writing an image viewer with Qt based on the QGraphicsScene feature of Qt. I am creating model of each image in a class called ImageModel and manage the display of the image in a class called ...
0
votes
0answers
140 views
Qt setSceneRect: changing width changes height
So, I am drawing a scene in a Qt GUI application, and at the end of the drawing, I set the sceneRect to ensure that all of the items are visible - through scrolling if necessary.
...
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
79 views
qt. how to get a graphics item by position (x & y value)
I drew some rectangles on a graphics view in qt creator. Now I want to get a rectangle to change its color and something else by its known position. Is it possible? I don't want to use for loop to ...
2
votes
3answers
238 views
Problems with large QImage
I'm pretty new to C++/Qt and I'm trying to create an application with Visual Studio C++ and Qt (4.8.3). The application displays images using a QGraphicsView, I need to change the images at pixel ...
0
votes
1answer
168 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 ...
0
votes
2answers
177 views
Qt QGraphicsScene and QGraphicsItem events
I've got some QGraphicsObjects which are dependent of the size of the scene they are on. So my graphics object needs to know when two events occur:
When it is added to the scene
When it's scene is ...
-1
votes
1answer
57 views
Strech QGraphicsView horizontally
How to add horizontal stretch feature to a QGraphicsView? Please help


