(ql:quickload '(qtools qtcore qtgui)) (defpackage #:thing (:use #:cl+qt) (:export #:main)) (in-package #:thing) (in-readtable :qtools) (define-widget thing (QWidget) ()) (defun main () (with-main-window (w 'thing)))