home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 18 / amigaformatcd18.iso / mui / mui_developer / autodocs / mui_slider.doc < prev    next >
Text File  |  1997-03-10  |  2KB  |  98 lines

  1. TABLE OF CONTENTS
  2.  
  3. Slider.mui/Slider.mui
  4. Slider.mui/MUIA_Slider_Horiz
  5. Slider.mui/MUIA_Slider_Level
  6. Slider.mui/MUIA_Slider_Max
  7. Slider.mui/MUIA_Slider_Min
  8. Slider.mui/MUIA_Slider_Quiet
  9. Slider.mui/MUIA_Slider_Reverse
  10. Slider.mui/Slider.mui
  11.  
  12.     The slider class generates a gui element that allows a
  13.     user to adjust a numeric value. The programmer has not
  14.     very much influence on the slider's outfit, there are
  15.     only very few tags available. Future versions of MUI
  16.     will probably include some preferences options to
  17.     allow the user (*not* the programmer) to configure
  18.     this outfit.
  19.  
  20.     Note that since slider is a subclass of group class,
  21.     you can get horizontal or vertical sliders by simply
  22.     using the MUIA_Group_Horiz attribute. Default is
  23.     a horizontal slider.
  24. Slider.mui/MUIA_Slider_Horiz
  25.  
  26.     NAME
  27.     MUIA_Slider_Horiz -- (V11) [ISG], BOOL
  28.  
  29.     FUNCTION
  30.     Specify if you want a horizontal or vertical
  31.     slider. Also understands MUIA_Group_Horiz to be
  32.     compatible with previous versions of MUI.
  33. Slider.mui/MUIA_Slider_Level
  34.  
  35.     NAME
  36.     MUIA_Slider_Level -- (V4 ) [ISG], LONG (OBSOLETE)
  37.  
  38.     FUNCTION
  39.     The current position of the slider knob. This value
  40.     is guaranteed to be between MUIA_Slider_Min and
  41.     MUIA_Slider_Max.
  42.  
  43.     EXAMPLE
  44.     /* vertical task priority slider */
  45.     SliderObject,
  46.        MUIA_Group_Horiz , FALSE,
  47.        MUIA_Slider_Min  , -20,
  48.        MUIA_Slider_Max  ,  20,
  49.        MUIA_Slider_Level,   0,
  50.        End;
  51.  
  52.     SEE ALSO
  53.     MUIA_Slider_Min, MUIA_Slider_Max
  54. Slider.mui/MUIA_Slider_Max
  55.  
  56.     NAME
  57.     MUIA_Slider_Max -- (V4 ) [ISG], LONG (OBSOLETE)
  58.  
  59.     FUNCTION
  60.     Adjust the maximum value for a slider object.
  61.  
  62.     SEE ALSO
  63.     MUIA_Slider_Min, MUIA_Slider_Level
  64. Slider.mui/MUIA_Slider_Min
  65.  
  66.     NAME
  67.     MUIA_Slider_Min -- (V4 ) [ISG], LONG (OBSOLETE)
  68.  
  69.     FUNCTION
  70.     Adjust the minimum value for a slider object.
  71.     Of course you can use negative number, e.g.
  72.     for a slider to adjust task priority.
  73.  
  74.     SEE ALSO
  75.     MUIA_Slider_Max, MUIA_Slider_Level
  76. Slider.mui/MUIA_Slider_Quiet
  77.  
  78.     NAME
  79.     MUIA_Slider_Quiet -- (V6 ) [I..], BOOL
  80.  
  81.     FUNCTION
  82.     When set to TRUE, the slider doesn't display it's current
  83.     level in a text object.
  84.  
  85.     SEE ALSO
  86.     MUIA_Slider_Level
  87. Slider.mui/MUIA_Slider_Reverse
  88.  
  89.     NAME
  90.     MUIA_Slider_Reverse -- (V4 ) [ISG], BOOL (OBSOLETE)
  91.  
  92.     FUNCTION
  93.     Setting this attribute to TRUE will reverse the direction
  94.     of the slider.
  95.  
  96.     SEE ALSO    
  97.     MUIA_Slider_Min, MUIA_Slider_Max, MUIA_Slider_Level
  98.