home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Palettes / MiscLogSliderPalette / MiscLogSlider.subproj / MiscLogSlider.h < prev    next >
Encoding:
Text File  |  1994-03-27  |  740 b   |  27 lines

  1. //
  2. //    MiscLogSlider.h -- a Slider subclass with logarithmic transfer function
  3. //        Written by Don Yacktman, Copyright (c) 1994 by Don Yacktman.
  4. //                Version 1.0  All rights reserved.
  5. //        This notice may not be removed from this source code.
  6. //
  7. //    This object is included in the MiscKit by permission from the author
  8. //    and its use is governed by the MiscKit license, found in the file
  9. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  10. //    for a list of all applicable permissions and restrictions.
  11. //    
  12.  
  13. #import <appkit/Slider.h>
  14. #import <misckit/MiscLogSliderCell.h>
  15.  
  16. @interface MiscLogSlider:Slider
  17. {
  18. }
  19.  
  20. + initialize;
  21. + setCellClass:classId;
  22. - initFrame:(NXRect *)nf;
  23. - setBase:(double)newBase;
  24. - (double)base;
  25.  
  26. @end
  27.