mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-25 03:11:44 -08:00
20 lines
680 B
Text
20 lines
680 B
Text
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;
|