0
votes
1answer
84 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
16 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
43 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 ...
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
2answers
75 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); ...
2
votes
1answer
181 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
50 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
48 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
54 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 ...
0
votes
1answer
47 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
144 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
189 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
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
165 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
105 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 ...
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
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
115 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. ...
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
174 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 ...
0
votes
1answer
73 views

How to show pop menu on QGraphicsView?

How to show a pop up menu in Qt while right clicking the QGraphicsView? Please help
0
votes
1answer
65 views

How to implement Menu bar inside QGraphicsView?

I have a QGraphicsView which shows images dynamically. I also used fitInView feature to resize the window. Now I need to add the menu bar at the top of the QGraphicsView. How to implement this? Please ...
-1
votes
1answer
57 views

Strech QGraphicsView horizontally

How to add horizontal stretch feature to a QGraphicsView? Please help
0
votes
0answers
82 views

QgraphicsView not align to center if setFixedSize

When I setFixedSize for my QGraphicsView it gets aligned to the top left corner of my centralwidget. When I don't setFixedSize it's centered but the view is spread on the entire centralwidget, meaning ...
1
vote
1answer
75 views

Anchoring a QGraphicsView to the corner of the screen

I have a QGraphicsView that renders my game. This view fills the entire screen at all times. In the top right I have another QGraphicsView which I'm using as a mini-map; it sits over the game view. I ...
0
votes
1answer
205 views

adding custom QGraphicsItem to Scene disable ScrollBarAsNeeded and alignment options

Custom item cpp: MapNode::MapNode(qreal x, qreal y, qreal w, qreal h, QGraphicsItem *parent) { this->x = x; this->y = y; this->w = w; this->h = h; } QRectF ...
1
vote
1answer
237 views

Adjusting QPen thickness when scaling QGraphicsView?

One amazing feature of QGraphicsView is its ability to scale itself with its scene's content (every QGraphicsItem inserted in the scene actually). The QPixmap that I have inserted scales correctly, ...
0
votes
0answers
49 views

How to strech the scene with view or how to fix shift while adding (again)

To reduce the amount of text I add the link to my previous topic about shift when drawing: Draw shift when drawing on QGraphicsView So what is the problem now... That solutions worked fine before I ...
0
votes
1answer
138 views

Best practice to handle multiple documents in QMdiArea?

I need to design and develop a kind of graphics piece of software, which can edit customized files containing graphical elements, etc. I expect the piece of software to contain many documents thanks ...
0
votes
0answers
106 views

How to properly put text into a rectangle in QGraphicsView

I have a QGraphicsView in which I display few SVG images (with different sizes) like that: scene()->setSceneRect(0, 0, 1.8, 1); QGraphicsSvgItem *msgBgSvg = new ...

1 2 3 4 5 6