|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
A value interface that represents a non-ranged numeric value. More...
#include "juce_AccessibilityValueInterface.h"
Public Member Functions | |
| bool | isReadOnly () const override=0 |
| Returns true if the value is read-only and cannot be modified by an accessibility client. | |
| double | getCurrentValue () const override=0 |
| Returns the current value. | |
| void | setValue (double newValue) override=0 |
| Sets the current value to a new value. | |
| String | getCurrentValueAsString () const final |
| Returns the current value as a String. | |
| void | setValueAsString (const String &newValue) final |
| Sets the current value to a new String value. | |
| AccessibleValueRange | getRange () const final |
| If this is a ranged value, this should return a valid AccessibleValueRange object representing the supported numerical range. | |
Public Member Functions inherited from juce::AccessibilityValueInterface | |
| virtual | ~AccessibilityValueInterface ()=default |
| Destructor. | |
A value interface that represents a non-ranged numeric value.
@tags{Accessibility}
Definition at line 168 of file juce_AccessibilityValueInterface.h.
|
overridepure virtual |
Returns the current value.
Implements juce::AccessibilityValueInterface.
|
finalvirtual |
Returns the current value as a String.
Implements juce::AccessibilityValueInterface.
Definition at line 185 of file juce_AccessibilityValueInterface.h.
|
finalvirtual |
If this is a ranged value, this should return a valid AccessibleValueRange object representing the supported numerical range.
Implements juce::AccessibilityValueInterface.
Definition at line 189 of file juce_AccessibilityValueInterface.h.
|
overridepure virtual |
Returns true if the value is read-only and cannot be modified by an accessibility client.
Implements juce::AccessibilityValueInterface.
Sets the current value to a new value.
Implements juce::AccessibilityValueInterface.
|
finalvirtual |
Sets the current value to a new String value.
Implements juce::AccessibilityValueInterface.
Definition at line 187 of file juce_AccessibilityValueInterface.h.