extend QSELECT / QSEL to work with QML items; revision of property dialog; small revisions;

This commit is contained in:
polos 2017-02-16 17:24:08 +01:00
parent 2b777c6e8c
commit 2f67ce73b4
23 changed files with 139 additions and 74 deletions

View file

@ -9,7 +9,7 @@ Item {
// Please note:
//
// * to call lisp functions, use either Lisp.call() or Lisp.apply();
// * to call Lisp functions, use either Lisp.call() or Lisp.apply();
// use JS arrays for lists (can be nested);
//
// * the only limit to Lisp.call() is the number of arguments (max. 16);
@ -22,7 +22,7 @@ Item {
// Lisp.call() or Lisp.apply(); it can then be accessed in Lisp via qml:*caller*;
// (1) call CL function
console.log(Lisp.call("format", false, "~R", 123))
console.log(Lisp.call("format", null, "~R", 123))
// (2) call EQL function
Lisp.call("qmsg", "hello from QML")