EQL5/examples/M-modules/quick/palindrome-2
2017-03-19 00:16:31 +01:00
..
lib small revision of '.pro' files 2017-03-04 11:41:32 +01:00
qml small revisions (QML) 2017-03-03 11:41:43 +01:00
definitions.lisp add QML example "palindrome-2" (dynamic version) 2017-02-20 10:27:49 +01:00
generate-qml.lisp small revisions of QML examples 2017-03-07 00:23:14 +01:00
palindrome.lisp small revisions 2017-02-25 12:16:50 +01:00
properties.lisp small revisions 2017-02-28 10:32:28 +01:00
qml-file.lisp small revision of "qml-file.lisp" (add newline after FORMAT) 2017-03-05 17:03:10 +01:00
qml-lisp.lisp add QML example "table-view"; some revisions; 2017-03-19 00:16:31 +01:00
README.txt some revisions (mostly "quick" examples) 2017-02-25 10:46:45 +01:00
utils.lisp add QML example "palindrome-2" (dynamic version) 2017-02-20 10:27:49 +01:00

INFO
====

This is a QML port of "examples/X-extras/palindrome/".

Instead of generating static QML (see "palinfrome-1"), it uses a timer
from Lisp (through QSLEEP, QSINGLE-SHOT) to change the item positions, and
a 'Behavior' in QML for the animations.


RUN
===

Run "palindrome.lisp" from this directory.


HELP
====

For inspecting the single items, run

    (show-properties-dialog) ; see "properties.lisp"

and use button [Select] to select an item.

You can use QML-GET and QML-SET on a selected item:

    (qml-set qsel:*q* "opacity" 2/3)

    (qml-set qsel:*q* "scale" 2)

For global settings (root item), pass 'nil' instead of 'qsel:*q*':

    (qml-set nil "scale" 1.5)