home *** CD-ROM | disk | FTP | other *** search
- README for FAXCover.app 5-Apr-94
-
- I'm tired of going into WriteNow or Edit to type a minute document to
- FAX, the contents of which could just as well be on the cover page.
-
- So I cobbled up this micro-app which lets you bring up a FAX Panel to
- send a one-page FAX consisting soley of the (edited) cover page.
-
- Who knows, if I get feedback from people who like it, I may enhance it
- to offer a FAXCover service :-) Feedback to faxcover@hodain.ci.net
-
- This application is in the public domain. The source is appended to
- this message.
-
- Opener will unpack FAXCover.mab.tar.gz into FAXCover.app, so will
- % gunzip < FAXCover.mab.tar.gz | gnutar -xf -
-
-
- Hugh
- --
- Hugh Secker-Walker | hugh@hodain.ci.net (NeXTmail ok)
- Perceptual Acoustics | hugh@ear.mit.edu
-
-
-
- #import <appkit/appkit.h>
-
- @interface FAXView:View
- {
- }
-
- - (BOOL)getRect:(NXRect *)theRect forPage:(int)page;
- - (BOOL)knowsPagesFirst:(int *)firstPageNum last:(int *)lastPageNum;
-
- @end
-
-
- @implementation FAXView
-
- - (BOOL)knowsPagesFirst:(int *)firstPageNum last:(int *)lastPageNum
- {
- return YES;
- }
-
- - (BOOL)getRect:(NXRect *)theRect forPage:(int)page
- {
- return NO;
- }
-
- @end
-