Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9142023
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:43:21+00:00 2026-06-17T09:43:21+00:00

I have a program written in Qt, who uses QML. I’d like to know

  • 0

I have a program written in Qt, who uses QML.

I’d like to know if it is possible to know the coordinates in real time during the drag of an element.

Actually, I use a custom image that replaces the cursor, its position is updated with the coordinates of the cursor (which is hidden).

I can actually recover the position of the mouse cursor during its deplacement with “onPositionChanged” or just after a click with “onClicked.”

I want also to know these coordinates during a drag, I tried with “onPressed” and “onPressAndHold” but without success, the position of the custom cursor is updated only on the click release.

Any help would be appreciated, thank you in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T09:43:22+00:00Added an answer on June 17, 2026 at 9:43 am

    Dragging elements changes the x and y properties directly so you can monitor those:

    Rectangle {
    
        id: draggable
    
        width: 100
        height: 100
    
        onXChanged: {
            if (mouseArea.drag.active) {
                console.log("x=" + x)
            }
        }
        onYChanged: {
            if (mouseArea.drag.active) {
              console.log("y=" + y)
            }
        }
    
        MouseArea {
            id: mouseArea
            anchors.fill: parent
            drag {
                target: draggable
                axis: Drag.XandYAxis
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a program written in VB.Net (Visual Studio 2008) that uses a DLL
I have a simple program (written in Java) which uses the google protocol buffer
I have a program written in C++ which uses dlopen to load a dynamic
I have a program written in python, and I would like to make it
I have program written in C. It takes 2 arguments username/password and try to
I Have a program written in VB6 that reads a long text file and
I have my program written in C++ and it is can be successfully compiled
I have a program written in C++, on Linux, compiled with -g. When I
I have a program written in C using ncurses. It let user input and
Hi I have a program written in C++ in which one or two functions

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.