mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 10:31:34 -08:00
22 lines
581 B
Common Lisp
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")
|