home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / TextEdit / ScalingScrollView.h < prev    next >
Text File  |  1995-03-06  |  300b  |  16 lines

  1. #import <AppKit/NSScrollView.h>
  2.  
  3. @class NSPopUpButton;
  4.  
  5. @interface ScalingScrollView : NSScrollView {
  6.     NSPopUpButton *_scalePopUpButton;
  7.     float scaleFactor;
  8. }
  9.  
  10. - (void)scalePopUpAction:(id)sender;
  11. - (void)_makeScalePopUpButton;
  12. - (void)setScaleFactor:(float)factor;
  13. - (float)scaleFactor;
  14.  
  15. @end
  16.