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. Call a function by onClicked in qml
Forum Updated to NodeBB v4.3 + New Features

Call a function by onClicked in qml

Scheduled Pinned Locked Moved QML and Qt Quick
3 Posts 2 Posters 6.2k 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.
  • J Offline
    J Offline
    jjew.isaraporn
    wrote on last edited by
    #1

    I am trying to call a function clearcanvas by "onClicked" event of the button.
    Can anybody help me out on this so that when I click on the button it should call the function and execute it.

    !http://instacod.es/file/75943(My code look like)!

    1 Reply Last reply
    0
    • S Offline
      S Offline
      stereomatching
      wrote on last edited by
      #2

      1 : Declare the function clear outside of the Canvas component
      2 : Declare the var ctx as a property of canvas
      3: please post your codes by text rather than image next time, this would easier for us to help you

      @
      QtObject{
      id: param

      function clearCanvas(ctx){
      ctx.clearRect(....)
      }
      }

      Canvas{
      id:canvas

      property var ctx
      

      }

      //.....
      Rectangle{
      //.....
      MouseArea:{
      anchors.fill:parent

      onClicked:{
      clearCanvas(canvas.ctx)
      }
      }
      }
      @

      1 Reply Last reply
      0
      • J Offline
        J Offline
        jjew.isaraporn
        wrote on last edited by
        #3

        Thank you for suggestion.

        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