Changeset main,40 for main/tui.asd


Ignore:
Timestamp:
11/08/2007 05:59:22 AM (19 years ago)
Author:
David Owen <dsowen@…>
branch-nick:
tui-new
revision id:
dsowen@fugue88.ws-20071108055922-um13hpocv9vyqyit
Message:

New widgets architecture with common generic functions.
Added label widget.
Converted textbox and numberbox widgets.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/tui.asd

    r35 r40  
    99                        :components ((:file "generic")
    1010                                     (:file "screen"
    11                                             :depends-on ("generic"))))
     11                                      :depends-on ("generic"))))
    1212               (:file "cursor"
    1313                      :depends-on ("window"))
    1414               (:file "output"
    1515                      :depends-on ("cursor" "window"))
    16                (:file "textbox"
    17                       :depends-on ("cursor" "input" "output" "window"))
    1816               (:file "display-string"
    1917                      ;; "input" only for testing
    2018                      :depends-on ("cdk" "input"))
     19               (:module "widget"
     20                        :depends-on ("cursor" "input" "output" "window")
     21                        :components ((:file "generic")
     22                                     (:file "label"
     23                                      :depends-on ("generic"))
     24                                     (:file "textbox"
     25                                      :depends-on ("generic"))
     26                                     (:file "numberbox"
     27                                      :depends-on ("generic" "textbox"))
     28                                     (:file "package"
     29                                      :depends-on ("label"
     30                                                   "textbox"
     31                                                   "numberbox"))))
    2132               (:module "grid"
    2233                        :depends-on ("cdk" "display-string")
Note: See TracChangeset for help on using the changeset viewer.