home *** CD-ROM | disk | FTP | other *** search
/ Altsys Virtuoso 2.0K / virtuoso_20k.iso / DemoApps / Comm / FAXCover / README < prev   
Encoding:
Text File  |  1994-04-06  |  1.1 KB  |  51 lines

  1. README for FAXCover.app                                    5-Apr-94
  2.  
  3. I'm tired of going into WriteNow or Edit to type a minute document to
  4. FAX, the contents of which could just as well be on the cover page.
  5.  
  6. So I cobbled up this micro-app which lets you bring up a FAX Panel to
  7. send a one-page FAX consisting soley of the (edited) cover page.
  8.  
  9. Who knows, if I get feedback from people who like it, I may enhance it
  10. to offer a FAXCover service :-)   Feedback to faxcover@hodain.ci.net
  11.  
  12. This application is in the public domain.  The source is appended to
  13. this message.
  14.  
  15. Opener will unpack FAXCover.mab.tar.gz into FAXCover.app, so will
  16. % gunzip < FAXCover.mab.tar.gz | gnutar -xf -
  17.  
  18.  
  19. Hugh
  20. --
  21. Hugh Secker-Walker     |   hugh@hodain.ci.net (NeXTmail ok)
  22. Perceptual Acoustics   |   hugh@ear.mit.edu
  23.  
  24.  
  25.  
  26. #import <appkit/appkit.h>
  27.  
  28. @interface FAXView:View
  29. {
  30. }
  31.  
  32. - (BOOL)getRect:(NXRect *)theRect forPage:(int)page;
  33. - (BOOL)knowsPagesFirst:(int *)firstPageNum last:(int *)lastPageNum;
  34.  
  35. @end
  36.  
  37.  
  38. @implementation FAXView
  39.  
  40. - (BOOL)knowsPagesFirst:(int *)firstPageNum last:(int *)lastPageNum
  41. {
  42.   return YES;
  43. }
  44.  
  45. - (BOOL)getRect:(NXRect *)theRect forPage:(int)page
  46. {
  47.   return NO;
  48. }
  49.  
  50. @end
  51.