Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Textfield + MouseArea (double click) : event propagation doesn't work perfectly
Qt 6.11 is out! See what's new in the release blog

Textfield + MouseArea (double click) : event propagation doesn't work perfectly

Scheduled Pinned Locked Moved QML and Qt Quick
1 Posts 1 Posters 961 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • ? Offline
    ? Offline
    A Former User
    wrote on last edited by
    #1

    Hi there,

    I wonder whether this a bug or I miss something...

    I need to intercept double click events on a textfield without interfering with the normal behaviour of the textfield.
    As textfield doesn't handle double click by default, I use a mousearea, here is my code :

    @TextField {
    x:10; y: 10;
    MouseArea {
    anchors.fill: parent;
    propagateComposedEvents : true
    onDoubleClicked: {
    console.log('double clicked');
    }
    }@

    The double clicked is handled ok, the simple click is propagated to the textfield BUT it doesn't handle the cursor position. I lose the possibility to change cursor position by mouse...

    Any thoughts ?

    Thanks

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved