-
Notifications
You must be signed in to change notification settings - Fork 0
MUI_Slider
The slider class generates a GU element that allows a user to adjust a numeric value. The programmer has not very much influence on the slider's outfit, there are only very few tags available. Future versions of MUI will probably include some preferences options to allow the user (NOT the programmer) to configure this outfit.
Note that since slider is a subclass of group class, you can get horizontal or vertical sliders by simply using the MUIA_Group_Horiz attribute. Default is a horizontal slider.
Attribute | Version | ISG | Type |
---|---|---|---|
MUIA_Slider_Horiz | V11 | ISG | BOOL |
MUIA_Slider_Level | V4 | ISG |
LONG (OBSOLETE)
|
MUIA_Slider_Max | V4 | ISG |
LONG (OBSOLETE)
|
MUIA_Slider_Min | V4 | ISG |
LONG (OBSOLETE)
|
MUIA_Slider_Quiet | V6 | I.. | BOOL |
MUIA_Slider_Reverse | V4 | ISG |
BOOL (OBSOLETE)
|
MUIA_Slider_Horiz -- V11 [ISG], BOOL
, 0x8042fad1
Specify if you want a horizontal or vertical slider. Also understands MUIA_Group_Horiz to be compatible with previous versions of MUI.
MUIA_Slider_Level -- V4 [ISG], LONG
, 0x8042ae3a (OBSOLETE)
The current position of the slider knob. This value is guaranteed to be between MUIA_Slider_Min and MUIA_Slider_Max.
/* vertical task priority slider */
SliderObject,
MUIA_Group_Horiz, FALSE,
MUIA_Slider_Min, -20,
MUIA_Slider_Max, 20,
MUIA_Slider_Level, 0,
End;
MUIA_Slider_Min, MUIA_Slider_Max
MUIA_Slider_Max -- V4 [ISG], LONG
, 0x8042d78a (OBSOLETE)
Adjust the maximum value for a slider object.
MUIA_Slider_Min, MUIA_Slider_Level
MUIA_Slider_Min -- V4 [ISG], LONG
, 0x8042e404 (OBSOLETE)
Adjust the minimum value for a slider object. Of course you can use negative number, e.g. for a slider to adjust task priority.
MUIA_Slider_Max, MUIA_Slider_Level
MUIA_Slider_Quiet -- V6 [I..], BOOL
, 0x80420b26
When set to TRUE, the slider doesn't display it's current level in a text object.
MUIA_Slider_Reverse -- V4 [ISG], BOOL
, 0x8042f2a0 (OBSOLETE)
Setting this attribute to TRUE will reverse the direction of the slider.
MUIA_Slider_Min, MUIA_Slider_Max, MUIA_Slider_Level
Copyright © 1992-2006 by Stefan Stuntz Copyright © 2006-2021 by Thore Böckelmann, Jens Maus |
MUI for AmigaOS Homepage MUI for AmigaOS Wiki |
Updated: 11-Oct-2021 |