home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Misc / RZToDoList / Source / FileImage.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  574 b   |  26 lines

  1. /* 
  2.  * FileImage
  3.  *
  4.  * A GraphicImage subclass that represents a file
  5.  *
  6.  * You may freely copy, distribute and reuse the code in this example.
  7.  * This code is provided AS IS without warranty of any kind, expressed 
  8.  * or implied, as to its fitness for any particular use.
  9.  *
  10.  * Copyright 1995 Ralph Zazula (rzazula@next.com).  All Rights Reserved.
  11.  *
  12.  */
  13.  
  14. #import "GraphicImage.h"
  15.  
  16. @interface FileImage:GraphicImage
  17. {
  18.     char    *fileName;
  19. }
  20.  
  21. - initForImage:image fileName:(const char *)name;
  22. - readRichText:(NXStream *)stream forView:view;
  23. - performDoubleClickAction;
  24.  
  25. @end
  26.