Ignore:
Timestamp:
11/12/2007 07:08:49 PM (19 years ago)
Author:
David Owen <dsowen@…>
branch-nick:
tui
revision id:
dsowen@tux-20071112190849-f4iha3mmvx2nskce
Message:

Textboxes and numberboxes now change colors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/widget/generic.lisp

    r45 r46  
    11(defpackage #:tui-widget-generic
    22  (: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))
    56
    67(in-package #:tui-widget-generic)
     
    2324  ((parent-window :initarg :parent-window)
    2425   (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)))
    2630
    2731(defclass scroll ()
Note: See TracChangeset for help on using the changeset viewer.