home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / NestleView.h < prev    next >
Text File  |  1996-04-26  |  589b  |  25 lines

  1. /* NestleView.h
  2.  *
  3.  * by Nik Gervae, Technical Publications, NeXT Software Inc.
  4.  *
  5.  * You may freely copy, distribute, and reuse the code in this example.
  6.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to
  7.  * its fitness for any particular use.
  8.  */
  9.  
  10.  
  11. #import <AppKit/AppKit.h>
  12.  
  13.  
  14. /* NestleView's job is to provide a buffer zone around the ruler's
  15.  * client, an instance of RectsView. I did this to test what happens
  16.  * to the coordinate mapping when the client isn't the scroll view's
  17.  * document view. */
  18.  
  19. @interface NestleView : NSView
  20. {
  21.     id nestledView;
  22. }
  23.  
  24. @end
  25.