Table Knob
Knob: a component to pick a value between a min and a max, that accept keyboard and mouse wheel inputs.
Summary
Field | Type | Summary |
---|---|---|
ArcColor | string | Color of the arc (from min to max) in RRGGBB format. |
DefaultValue | number | Default (factory) value. |
DisplayValueMask | Display value mask string or function If nil (default), display the raw value. | |
Graduations | table | Graduations of the knob. |
GraduationsColor | string | Color of the graduations in RRGGBB format. |
IsVisibleMinMax | boolean | Are min and max visibles? |
IsVisibleValue | boolean | Is the value displayed at the center of the knob? |
MaxValue | number | Maximum value |
MinValue | number | Minimum value |
Step | number | Step between two possible values |
TextColor | string | Color of texts (min, max, value) in RRGGBB format. |
Value | number | Value of the slider |
ValueColor | string | Selected value color, in RRGGBB format. |
Return type | Function and summary |
---|---|
OnChange(Dialog dlg, Knob knob, number value) Function fired when value is modified. |
Fields
number Knob.MinValue
Minimum value
number Knob.MaxValue
Maximum value
boolean Knob.IsVisibleValue
Is the value displayed at the center of the knob?
Knob.DisplayValueMask
Display value mask string or function If nil (default), display the raw value.
If string (by default if an entry name.DisplayValueMask exists in lexicon), "%x"
means the value, e.g. "%x Hz"
If function, accept a number as unique argument and must return a string.
boolean Knob.IsVisibleMinMax
Are min and max visibles?
number Knob.Step
Step between two possible values
number Knob.DefaultValue
Default (factory) value.
A dual click on the slider reset value to this one.
number Knob.Value
Value of the slider
table Knob.Graduations
Graduations of the knob.
By default, no graduation. table of values, or values with alternative label.
- Example
-
knobVolume.Graduations = {0, 16, 32, 48, 64, 80, 96, 112, 127} knobPanning.Graduations = {{0,"Left"}, 16, 32, 48, {64,"Center"}, 80, 96, 112, {127,"Right"}}