EQL5/Qt_EQL
2017-02-21 10:06:50 +01:00
..
cpp for MinGW: change "Q_OS_WIN" to "Q_CC_MSVC" (otherwise MinGW won't link plugins) 2017-02-21 10:06:50 +01:00
cpp_calling_lisp for MinGW: change "Q_OS_WIN" to "Q_CC_MSVC" (otherwise MinGW won't link plugins) 2017-02-21 10:06:50 +01:00
trafficlight for MinGW: change "Q_OS_WIN" to "Q_CC_MSVC" (otherwise MinGW won't link plugins) 2017-02-21 10:06:50 +01:00
auto-reload.lisp some revisions 2016-12-29 17:07:48 +01:00
looping.lisp port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00
make.bat port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00
README.txt fix READMEs; add screenshot; 2016-11-26 23:56:19 +01:00
reload.lisp add (port of Qt) example "camera" (multimedia widgets); lots of minor revisions; 2016-12-08 01:23:14 +01:00
test.lisp port of EQL/Qt4 to Qt5 2016-11-25 23:30:38 +01:00

BUILD / RUN
===========

Build the plugins in "cpp/", "cpp_calling_lisp/" before running the examples.

See "trafficlight/" for an example of integrating a Qt/C++ application.



NOTES
=====

Integrating with existing Qt/C++ projects should be straightforward, since
you can call all standard methods/slots/signals of any Qt class (see
QFIND-CHILD, QFIND-CHILDREN, QFUN+), and additionally make your own C++
functions callable by declaring them Q_INVOKABLE.

Calling Lisp from C++ through "eql_fun()" is easy, and you can use any Qt
class/type supported by EQL, see examples in "cpp_calling_lisp/lib.cpp".

To automatically generate generic function wrappers for your Qt functions,
see function DEFINE-QT-WRAPPERS.

Linux only: see also function QAUTO-RELOAD-C++.