mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
72 lines
1 KiB
Common Lisp
72 lines
1 KiB
Common Lisp
(defpackage :qml
|
|
(:use :cl)
|
|
(:export
|
|
#:*break-on-errors*
|
|
#:*quick-view*
|
|
#:*engine*
|
|
#:*root-item*
|
|
#:*caller*
|
|
#:background-ini
|
|
#:clipboard-text
|
|
#:copy-all-asset-files
|
|
#:define-qt-wrappers
|
|
#:disable-clipboard-menu
|
|
#:ensure-permissions
|
|
#:find-quick-item
|
|
#:hex
|
|
#:mobile-p
|
|
#:pixel-ratio
|
|
#:qapropos
|
|
#:qapropos*
|
|
#:qchildren
|
|
#:qcopy-file
|
|
#:qdirectory
|
|
#:qeql
|
|
#:qfind-child
|
|
#:qml-call
|
|
#:qml-get
|
|
#:qml-set
|
|
#:qml-set-all
|
|
#:q!
|
|
#:q<
|
|
#:q>
|
|
#:q>*
|
|
#:qjs
|
|
#:qescape
|
|
#:qexec
|
|
#:qexit
|
|
#:qfrom-utf8
|
|
#:qfun
|
|
#:qget
|
|
#:qset
|
|
#:qlater
|
|
#:qload-c++
|
|
#:qload-rc
|
|
#:qlog
|
|
#:qnull
|
|
#:qprocess-events
|
|
#:qq
|
|
#:qquit
|
|
#:qrun
|
|
#:qrun-on-ui-thread
|
|
#:qrun*
|
|
#:qrun-on-ui-thread*
|
|
#:qsingle-shot
|
|
#:qsleep
|
|
#:qtranslate
|
|
#:qversion
|
|
#:qt-object
|
|
#:qt-object-p
|
|
#:qto-utf8
|
|
#:reload
|
|
#:root-item
|
|
#:set-clipboard-text
|
|
#:tr
|
|
#:view-status-changed
|
|
#:with-root-item
|
|
#:!))
|
|
|
|
(defpackage :qml-user
|
|
(:use :cl :qml))
|
|
|
|
(pushnew :lqml *features*)
|