home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / ScrollingText / Document.h next >
Text File  |  1991-04-21  |  525b  |  21 lines

  1. /* Document.h
  2. *  Purpose: A subclass of Window which creates an instance of the PageScrollView.
  3. *
  4. *  You may freely copy, distribute, and reuse the code in this example.
  5. *  NeXT disclaims any warranty of any kind, expressed or  implied, as to its fitness
  6. *  for any particular use.
  7. *
  8. */
  9.  
  10. #import <appkit/Window.h>
  11.  
  12. @interface Document:Window
  13. {
  14. }
  15.  
  16. - init;
  17. - initContent:(const NXRect *)contentRect  style:(int)aStyle  backing:(int)bufferingType
  18.     buttonMask:(int)mask  defer:(BOOL)flag  screen:(const NXScreen *)aScreen;
  19.  
  20. @end
  21.