X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/jlisp/blobdiff_plain/a2e7266a20fff562054c0f546e4a49c03b93ce20..fc7489de87bbf0cfadf10f6f441c049d7b2bece1:/package.lisp diff --git a/package.lisp b/package.lisp new file mode 100644 index 0000000..20d83d2 --- /dev/null +++ b/package.lisp @@ -0,0 +1,34 @@ +;;; -*-lisp-*- +;;; +;;; Package definition for dep-ui +;;; +;;; (c) 2008 Mark Wooding +;;; + +;;;----- Licensing notice --------------------------------------------------- +;;; +;;; This program is free software; you can redistribute it and/or modify +;;; it under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 2 of the License, or +;;; (at your option) any later version. +;;; +;;; This program is distributed in the hope that it will be useful, +;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with this program; if not, write to the Free Software Foundation, +;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +(cl:defpackage #:dep-ui + (:use #:common-lisp #:dep . + #+abcl (#:jj #:java #:extensions)) + (:export #:make-label #:make-input #:make-output #:make-group + #:make-radio-dep #:within-group #:defwindow #:make-window + #:add-reason #:drop-reason)) + +(cl:in-package #:dep-ui) +(defvar *panel* nil) + +;;;----- That's all, folks --------------------------------------------------