Changeset main,55 for main/grid/model.lisp
- Timestamp:
- 11/16/2007 04:52:26 PM (19 years ago)
- branch-nick:
- tui
- revision id:
- dsowen@fugue88.ws-20071116165226-urvzht93m31b4n1t
- File:
-
- 1 edited
-
main/grid/model.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
main/grid/model.lisp
r26 r55 2 2 3 3 4 5 (defgeneric rows (grid-data) 6 (:documentation 7 "Returns the number of rows of data.")) 4 8 5 9 #|(defgeneric header-rows (grid-data) … … 10 14 (:method (grid-data) 0))|# 11 15 16 (defgeneric columns (grid-data) 17 (:documentation 18 "Returns the number of columns of data.")) 19 12 20 #|(defgeneric header-columns (grid-data) 13 21 (:documentation … … 17 25 (:method (grid-data) 0))|# 18 26 19 #|(defgeneric column-width (grid-data column)27 (defgeneric column-width (grid-data column) 20 28 (:documentation 21 29 "Returns the width of the column, as the total number of characters 22 30 requested for this column. The count may be less than the length of 23 the maximal item in the column."))|# 24 25 (defgeneric rows (grid-data) 26 (:documentation 27 "Returns the number of rows of data.")) 28 29 (defgeneric columns (grid-data) 30 (:documentation 31 "Returns the number of columns of data.")) 31 the maximal item in the column.")) 32 32 33 33 (defgeneric item (grid-data row column)
Note: See TracChangeset
for help on using the changeset viewer.
