home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / rwclassdef.tcl < prev    next >
Text File  |  1997-09-05  |  1KB  |  51 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #    (c) Cadre Technologies Inc. 1995
  4. #
  5. #    File:        %W%
  6. #    Author:        Harm Leijendeckers
  7. #    Description:    Definition of class Report
  8. #
  9. #---------------------------------------------------------------------------
  10. # SccsId = %W%    %G%    Copyright 1995 Cadre Technologies Inc.
  11.  
  12.  
  13. Class Report : {GCObject} {
  14.     constructor
  15.  
  16. # public:
  17.     # print methods
  18.     method init
  19.     method print
  20.     method line
  21.     method page
  22.     method separator
  23.     method space
  24.     method file
  25.  
  26.     # header/footer methods
  27.     method footer
  28.     method header
  29.     method remove
  30.  
  31.     # info methods
  32.     method queued
  33.  
  34.     # attributes which can be used to print
  35.     attribute pagelen
  36.     attribute linelen
  37.     attribute pageno
  38.     attribute lineno
  39.     attribute date
  40.  
  41. # private:
  42.     # header/footer methods
  43.     method doHeader
  44.     method doFooter
  45.  
  46.     # the ones that should not be used outside Report class
  47.     attribute headerList
  48.     attribute footerList
  49.     attribute toPrint
  50. }
  51.