home *** CD-ROM | disk | FTP | other *** search
/ Altsys Virtuoso 2.0K / virtuoso_20k.iso / DemoApps / Graphics / PostScript / Bezier / Source / DelayInfo.h < prev    next >
Encoding:
Text File  |  1990-04-24  |  748 b   |  26 lines

  1. /*
  2.  * This class provides the ability for an Info Panel, and possibly a bunch of
  3.  * other panels, to be loaded at a later time than when the program is loaded.
  4.  * This is specific to Info Panels, though if I find a need for something
  5.  * similar at a future date, I may change it to be more generic.
  6.  * For information of the use of the DelayInfo class, refer to the accompanying
  7.  * documentation.
  8.  */
  9.  
  10. #import <objc/Object.h>
  11.  
  12. @interface DelayInfo:Object
  13. {
  14.     id    infoPanel;
  15. }
  16.  
  17. + new;                // make sure that infoPanel is nil.
  18. - setInfoPanel:anObject;    // set the infoPanel.
  19. - infoPanel;            // return the infoPanel, or load it.
  20. - info:sender;            // make the info panel be up there.
  21.  
  22. - write:(NXTypedStream *)stream;
  23. - read:(NXTypedStream *)stream;
  24.  
  25. @end
  26.