home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / objc / dbkit / SimpleTableView.1.README < prev    next >
Encoding:
Text File  |  1993-06-03  |  2.3 KB  |  58 lines

  1. SimpleTableView example
  2. Example use of DBTableView
  3.  
  4. This application is provided in source form only, compilable on any 
  5. NEXTSTEP 3.1 system (68k, or 486).  It may also compile fine on 3.0 
  6. versions of NEXTSTEP, but it has not been tested on that platform.  
  7. This application doesn't necessarily provide any useful functionality 
  8. by itself.  But it does provide an example using the DBTableView 
  9. object within the dbkit.  It shows how to supply custom DBFormatter 
  10. subclasses for DBTableView for displaying data in table form.
  11.  
  12. After compiling the example code, select the "open" function from the 
  13. "Table" submenu.  Select and open the file named "sample.simpleTbl" 
  14. within the app wrapper.  This text file contains a simple table format 
  15. used by SimpleTableView.app.  Rows can be added, and deleted.  Items 
  16. in the table can be changed.  And the column widths can be changed 
  17. with the mouse by dragging on the edges of the column titles.  Table 
  18. data and column widths are saved back to the file when "Save" is 
  19. selected.  Columns can also be moved from one location to another, but 
  20. column location is not currently saved to the text file.
  21.  
  22. In this example, the first column of the table is considered the key column in the table.  All entries in the first column must be unique.
  23.  
  24. ----------------------------------------------------------------------
  25. You may redistribute this example program and source code, and to use 
  26. fragments of this code in your own applications if you find them to be 
  27. useful.  This example application and source code come with no 
  28. warranty of any kind, and the user assumes all responsibility for its 
  29. use.  
  30. ----------------------------------------------------------------------
  31.  
  32. The source:
  33.  
  34. BoolFormatter.[hm]
  35. Custom subclass of DBFormatter to provide a toggle formatter for 
  36. DBTableView.
  37.  
  38. EditFormatter.[hm]
  39. Custom subclass of DBEditableFormatter to allow setting the text 
  40. attributes of a field.
  41.  
  42. DataTableView.[hm]
  43. Custom subclass of DBTableView that records certain mouse events.
  44.  
  45. DataEditor.[hm]
  46. This object handles the events associated with the DataTableView edit 
  47. panel.
  48.  
  49. DataTable.[hm]
  50. This object holds the table information provided to DataTableView.
  51.  
  52. FileTable.[hm]
  53. Subclass of DataTable designed to read table information for flat text 
  54. files.
  55.  
  56. SimpleTableView.[hm]
  57. Main Application subclass providing startup initialization.
  58.