├── .gitignore ├── Doxyfile ├── LICENSE ├── README.md ├── demo1.gif └── src ├── examples ├── drawing │ ├── drawing-main.cpp │ ├── drawing-script.cpp │ └── drawing.pro ├── examples.pro └── repl │ ├── repl-main.cpp │ └── repl.pro ├── qicruntime ├── qiccontext.h ├── qicentry.h ├── qicruntime.cpp ├── qicruntime.h ├── qicruntime.pri └── qicruntime.pro └── qt-interactive-coding.pro /.gitignore: -------------------------------------------------------------------------------- 1 | build* 2 | *.pro.user* 3 | -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/README.md -------------------------------------------------------------------------------- /demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/demo1.gif -------------------------------------------------------------------------------- /src/examples/drawing/drawing-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/examples/drawing/drawing-main.cpp -------------------------------------------------------------------------------- /src/examples/drawing/drawing-script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/examples/drawing/drawing-script.cpp -------------------------------------------------------------------------------- /src/examples/drawing/drawing.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/examples/drawing/drawing.pro -------------------------------------------------------------------------------- /src/examples/examples.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/examples/examples.pro -------------------------------------------------------------------------------- /src/examples/repl/repl-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/examples/repl/repl-main.cpp -------------------------------------------------------------------------------- /src/examples/repl/repl.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/examples/repl/repl.pro -------------------------------------------------------------------------------- /src/qicruntime/qiccontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/qicruntime/qiccontext.h -------------------------------------------------------------------------------- /src/qicruntime/qicentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/qicruntime/qicentry.h -------------------------------------------------------------------------------- /src/qicruntime/qicruntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/qicruntime/qicruntime.cpp -------------------------------------------------------------------------------- /src/qicruntime/qicruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/qicruntime/qicruntime.h -------------------------------------------------------------------------------- /src/qicruntime/qicruntime.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/qicruntime/qicruntime.pri -------------------------------------------------------------------------------- /src/qicruntime/qicruntime.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = lib 2 | 3 | QT += core 4 | 5 | include(qicruntime.pri) 6 | 7 | DEFINES += QIC_DLL 8 | -------------------------------------------------------------------------------- /src/qt-interactive-coding.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinky/qt-interactive-coding/HEAD/src/qt-interactive-coding.pro --------------------------------------------------------------------------------