Changeset main,46 for main/widget/generic.lisp
- Timestamp:
- 11/12/2007 07:08:49 PM (19 years ago)
- branch-nick:
- tui
- revision id:
- dsowen@tux-20071112190849-f4iha3mmvx2nskce
- File:
-
- 1 edited
-
main/widget/generic.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
main/widget/generic.lisp
r45 r46 1 1 (defpackage #:tui-widget-generic 2 2 (:use #:cl) 3 (:export #:text #:widget #:parent-window #:column #:row #:scroll 4 #:insertion-point #:destroy #:draw #:activate)) 3 (:export #:text #:widget #:parent-window #:column #:row #:inactive-background 4 #:active-background #:scroll #:insertion-point #:destroy #:draw 5 #:activate)) 5 6 6 7 (in-package #:tui-widget-generic) … … 23 24 ((parent-window :initarg :parent-window) 24 25 (column :type (integer 0) :initarg :column) 25 (row :type (integer 0) :initarg :row))) 26 (row :type (integer 0) :initarg :row) 27 ;; TODO: initform for bg-color 28 (inactive-background :initarg :inactive-background) 29 (active-background :initarg :active-background))) 26 30 27 31 (defclass scroll ()
Note: See TracChangeset
for help on using the changeset viewer.
