simply i explain: first want to mouse press in graphicsscene and release the mouse. that point should be start point. then another plase i should press the mouse and release that will be end point then the line should be drawn. I can draw a line when mouse pressing and moving. but i want to know that abpve mentioned way. please some one help me. i am stuck in this .
I want to know about how to draw a line between two nodes. .
1.4k Views Asked by Frank Anushka Sachith AbagNale At
1
There are 1 best solutions below
Related Questions in QT
- qt c++ fonction converting adress to coordinates (longitude, latitude)
- Qml table and chart using python
- Qt: running callback in the main thread from the worker thread
- i have installed qt version 6.0.3 and this error QMYSQL driver not loaded displaying again and again
- Frameless Qt + WinAPI maximized window size is bigger than the availableGeometry()
- new window with c++ qt
- How to get scaling from transformation matrix
- How to build just Qt core libraries from Qt sources
- doxyqml not documenting qml files properly
- Incorrect assignment from a QStringList to a char * array
- How to make QT Chart size larger than widget size?
- Queued async operations with QtConcurrent interfere QImage from freed
- Questions about qt5 dynamic link library
- how to document QML files inside C++ project?
- How do I keep my screen contents centered and also have a scrollbar in QT?
Related Questions in MOUSEMOVE
- Hi there, I am writing some code to resize a borderless form but the results are wrong. I can't find where the problem is
- Move Button Left and Right with Mouse When Clicked
- i am trying to make a circle player that follows the mouse and eats circles that are stored in the array food
- Removing print statement affects functionality... corruption at play?
- In-browser screensaver with Javascript
- GHUB Lua - Slow Mouse Movement Function
- Strange inconsistency bug when setting top and left style properties via js
- How is it possible to convert mouse vertical/horizonta position to width (px) JavaScript?
- Enable/disable mousemove function
- Recreate simple radial gradient background with animation on mouse move
- How do I achieve smooth mouse movement on turns in Pyautogui?
- C++ Incorrect mouse movements
- cursor_div wont follow the cursor when I scroll to the bottom
- Limit mousemove event
- How to make images respond to mouse movement in javascript? (parallax effect is unresponsive)
Related Questions in QGRAPHICSSCENE
- QGraphicsTextItem is too slow for long paragraphs
- Difference between visual dimensions on QGraphicsScene and SVG file generated using QSvgGenerator
- problems with QGraphics in qt c++ widgets
- How to draw a real point using QGraphicsItem
- Problem with Zoom about QGrapphicsRectItem in View in Pyside6
- Unsure how QGraphicsView and QGraphicsScene work after scaling
- How to show an image using QGraphicsView without stretching them
- Unexpected behaviour of QGraphicsScene when trying to add fixed-size Items
- How to pass or retrieve (Mime) data when dragging/dropping a QTreeWidgetItem
- Trouble moving QGraphicsItemGroup with grid snapping
- How to insert a vertex into a QGraphicsPolygonItem?
- PyQt6: Get QGraphicsItem in a group which is at a specific position
- Drawing a grid in PyQt6
- Tracking a QGraphicsItem over a video
- QGraphicsPixmapItem setRotation not redrawing after rotation
Related Questions in MOUSEPRESS
- How to get mouse press position relative to QScrollArea's widget
- How to drag children outside of parent layout JavaFX
- QWidget::mousePressEvent() not called
- Installing an event filter and implenmenting mouseMoveEvent does not enable tracking cursor position
- How do i make images change color when clicked/ hovered in p5?
- Editing a function within mousePressed
- Why is the mousedrag and mousepress being used together in the same time ? I want to stop the mouse drag when I'm using mouse press and vice versa
- Java - Create a button from a shape
- Processing mousePressed()
- Trying to use multiple instances of Mouse pressed
- How to display the contents in an array by using mouseListener?
- pyqt5 QLabel Image setScaledContents(True) don't allow Qpainter updates
- Using mousePressed on the same object twice?
- Simulate multiple click on a mouse press python
- Using Java mousePress, mouseMove and mouseRelease for click-and-drag
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can capture the location of mouse when mouse is pressed on graphics scene by handling mousePressEvent() of graphics scene, and using QGraphicsSceneMouseEvent's pos() method and store it.
Letter whey you detect second mouse click, use first point and second point to draw line.
From you question it looks you already know how to draw line so i will not put anything on that regards.
Something like following,