Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. [SOLVED] QJSEngine: how to get signal parameter of QObject inside javascript code?
Qt 6.11 is out! See what's new in the release blog

[SOLVED] QJSEngine: how to get signal parameter of QObject inside javascript code?

Scheduled Pinned Locked Moved General and Desktop
2 Posts 1 Posters 2.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.
  • J Offline
    J Offline
    justAnoob
    wrote on last edited by
    #1

    For example i have a class "someClass" which inherits QObject and has a signal "valueChanged(int val)".

    Now i can make that class available in QJSEngine via
    @QJSEngine *jse = new QJSEngine(this);
    someClass *s = new someClass(this);
    QJSValue so = jse->newQObject(s);
    jse->globalObject().setProperty("theclass", so);@

    and evaluate javascript code to "connect" to that signal
    @jse->evaluate("theclass.onValueChanged = function () {/dosomething/}()");@

    but how do i get the parameter of that signal inside the javascript code?

    1 Reply Last reply
    0
    • J Offline
      J Offline
      justAnoob
      wrote on last edited by
      #2

      Well after looking into QtScript i found the right way to connect signals in javascript code.

      @theclass.valueChanged.connect(this, function (signalparam) {});@

      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