Changeset main,22 for main/tui.asd


Ignore:
Timestamp:
11/02/2007 11:42:20 PM (19 years ago)
Author:
David Owen <dsowen@…>
branch-nick:
tui
revision id:
dsowen@fugue88.ws-20071102234220-fdq27h2zdpxiruf2
Message:

New grid class, with separate model (for fast access of slow or large sources), display, and interaction.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/tui.asd

    r16 r22  
    22
    33(asdf:defsystem #:tui
    4   :depends-on (#:cffi)
     4  :depends-on (#:cffi #:dso-util)
    55  :components (#|(:file "curses")|#
    66               (:file "cdk")
    7                (:file "panel")
    8                (:file "input")
    9                (:file "flat-menu"))
    10   :serial t)
     7               (:module "grid"
     8                        :depends-on ("cdk")
     9                        :components ((:file "package")
     10                                     (:file "model")
     11                                     (:file "display")
     12                                     (:file "interaction"))
     13                        :serial t)
     14               (:file "panel"
     15                      :depends-on ("cdk"))
     16               (:file "input"
     17                      :depends-on ("cdk"))
     18               (:file "flat-menu"
     19                      :depends-on ("cdk"))))
Note: See TracChangeset for help on using the changeset viewer.