EQL5/examples/M-modules/quick
2017-03-19 20:36:14 +01:00
..
item-model add QML example "table-view"; some revisions; 2017-03-19 00:16:31 +01:00
painted-item add QML example "table-view"; some revisions; 2017-03-19 00:16:31 +01:00
palindrome-1 small revisions of QML examples 2017-03-07 00:23:14 +01:00
palindrome-2 add QML example "table-view"; some revisions; 2017-03-19 00:16:31 +01:00
qml-lisp add QML example "table-view"; some revisions; 2017-03-19 00:16:31 +01:00
quickwidget add module :quick (quick, quickwidgets, qml) plus an example; lots of small revisions; 2017-01-16 12:00:00 +01:00
sokoban add QML example "table-view"; some revisions; 2017-03-19 00:16:31 +01:00
table-view fix QSELECT/QSEL to work with QQmlApplicationEngine created windows 2017-03-19 20:36:14 +01:00
Tic-Tac-Toe add QML example "table-view"; some revisions; 2017-03-19 00:16:31 +01:00
README.txt add QML example "table-view"; some revisions; 2017-03-19 00:16:31 +01:00

Please note that you will need to build a small C++ plugin for most of the
examples (see "lib/"); this is just for providing the "import EQL5" in QML.

If you are new to QML/EQL5, you probably want to go through the examples
(and READMEs) in this order:

    * qml-lisp
    * Tic-Tac-Toe
    * item-model
    * painted-item

The trivial "quickwidget" example just demonstrates that you can integrate
a QML widget in any Qt application, combining both traditional Qt and QML.

* "palindrome-1" is a demo of generating QML code from Lisp (static QML);

* "palindrome-2" is the same using a 'Behavior' in QML, and a timer from Lisp
  (dynamic QML);

* "sokoban" shows how to dynamically create QML items from Lisp;

* "table-view" shows how to use an ApplicationWindow as the root item, which
    is like a QML version of a QMainWindow;