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. Is any Auto Repeat function for image in qml?
Forum Updated to NodeBB v4.3 + New Features

Is any Auto Repeat function for image in qml?

Scheduled Pinned Locked Moved QML and Qt Quick
4 Posts 3 Posters 3.0k 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.
  • M Offline
    M Offline
    Maheshwara
    wrote on last edited by
    #1

    Dear Friends,

    I’m a beginner in qt. I’ve created one image as a button in qml and i need to print the text continuously in text-input if i hold the image. Is there any auto repeat function like in (qt button property). or which way and how can i achieve this. Thanks in advance…:-)

    1 Reply Last reply
    0
    • F Offline
      F Offline
      favoritas37
      wrote on last edited by
      #2

      you can use the following:
      @
      Image {
      id: imageRect
      signal repeatedClick(variant str);

      MouseArea{
          anchors.fill: parent
          onPressed: timer.running = true;
          onReleased: timer.running = false;
      }
      
      Timer {
          id: timer
          interval: 500; running: false; repeat: true
          onTriggered: imageRect.repeatedClick("PrintMe");
      }
      
      onRepeatedClick: console.log(str);
      

      }
      @

      1 Reply Last reply
      0
      • M Offline
        M Offline
        Maheshwara
        wrote on last edited by
        #3

        It's working.......!!!!. Thank u favoritas37. Now only i saw this code and implement.

        1 Reply Last reply
        0
        • M Offline
          M Offline
          madoodia
          wrote on last edited by
          #4

          thanks favoritas37
          i used it.
          :)

          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