home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2 / Openstep-4.2-Intel-Developer.iso / NextLibrary / Frameworks / AppKit.framework / Versions / B / Headers / NSSlider.h < prev    next >
Text File  |  1996-10-17  |  727b  |  32 lines

  1. /*
  2.     NSSlider.h
  3.     Application Kit
  4.     Copyright (c) 1994-1996, NeXT Software, Inc.
  5.     All rights reserved.
  6. */
  7.  
  8. #import <AppKit/NSControl.h>
  9.  
  10. @interface NSSlider : NSControl
  11.  
  12. - (double)minValue;
  13. - (void)setMinValue:(double)aDouble;
  14. - (double)maxValue;
  15. - (void)setMaxValue:(double)aDouble;
  16. - (void)setTitleCell:(NSCell *)aCell;
  17. - (id)titleCell;
  18. - (void)setTitleColor:(NSColor *)newColor;
  19. - (NSColor *)titleColor;
  20. - (void)setTitleFont:(NSFont *)fontObj;
  21. - (NSFont *)titleFont;
  22. - (NSString *)title;
  23. - (void)setTitle:(NSString *)aString;
  24. - (void)setKnobThickness:(float)aFloat;
  25. - (float)knobThickness;
  26. - (void)setImage:(NSImage *)backgroundImage;
  27. - (NSImage *)image;
  28. - (int)isVertical;
  29. - (BOOL)acceptsFirstMouse:(NSEvent *)theEvent;
  30.  
  31. @end
  32.