lqml/examples/advanced-qml-auto-reload/lisp/ui-vars.lisp
2022-03-10 22:02:31 +01:00

22 lines
581 B
Common Lisp

(defpackage ui
(:use :cl :qml)
(:export
#:*flick-output*
#:*history-back*
#:*history-forward*
#:*main*
#:*progress*
#:*repl-input*
#:*repl-output*
#:*repl-model*))
(in-package :ui)
(defparameter *flick-output* "flick_output")
(defparameter *history-back* "history_back")
(defparameter *history-forward* "history_forward")
(defparameter *main* "main")
(defparameter *progress* "progress")
(defparameter *repl-input* "repl_input")
(defparameter *repl-output* "repl_output")
(defparameter *repl-model* "repl_model")