Changeset main,84 for main/widget/generic.lisp
- Timestamp:
- 01/18/2008 09:25:03 PM (18 years ago)
- branch-nick:
- tui
- revision id:
- dsowen@fugue88.ws-20080118212503-b91qub445w8qrw4h
- File:
-
- 1 edited
-
main/widget/generic.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
main/widget/generic.lisp
r63 r84 2 2 (:use #:cl) 3 3 (:export #:text #:widget #:parent-window #:column #:row #:inactive-background 4 #:active-background #:scroll #:insertion-point #: destroy #:draw5 #: activate))4 #:active-background #:scroll #:insertion-point #:create-widget 5 #:destroy #:draw #:activate)) 6 6 7 7 (in-package #:tui-widget-generic) … … 26 26 (row :type (integer 0) :initarg :row) 27 27 ;; TODO: initform for bg-color 28 (inactive-background :init arg :inactive-background)29 (active-background :init arg :active-background)))28 (inactive-background :initform '(#\Nul 0) :initarg :inactive-background) 29 (active-background :initform '(#\Nul 0) :initarg :active-background))) 30 30 31 31 (defclass scroll () … … 39 39 40 40 41 (defgeneric create-widget (type parent y x &key &allow-other-keys)) 42 41 43 (defgeneric destroy (widget)) 42 44
Note: See TracChangeset
for help on using the changeset viewer.
