|
JUCE
|
A value interface that represents a 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. More... | |
| double | getCurrentValue () const override=0 |
| Returns the current value. More... | |
| void | setValue (double newValue) override=0 |
| Sets the current value to a new value. More... | |
| AccessibleValueRange | getRange () const override=0 |
| Returns the range. More... | |
| String | getCurrentValueAsString () const final |
| void | setValueAsString (const String &newValue) final |
Public Member Functions inherited from AccessibilityValueInterface | |
| virtual | ~AccessibilityValueInterface ()=default |
| Destructor. More... | |
| virtual bool | isReadOnly () const =0 |
| Returns true if the value is read-only and cannot be modified by an accessibility client. More... | |
| virtual double | getCurrentValue () const =0 |
| Returns the current value as a double. More... | |
| virtual String | getCurrentValueAsString () const =0 |
| Returns the current value as a String. More... | |
| virtual void | setValue (double newValue)=0 |
| Sets the current value to a new double value. More... | |
| virtual void | setValueAsString (const String &newValue)=0 |
| Sets the current value to a new String value. More... | |
| virtual AccessibleValueRange | getRange () const =0 |
| If this is a ranged value, this should return a valid AccessibleValueRange object representing the supported numerical range. More... | |
A value interface that represents a ranged numeric value.
|
overridepure virtual |
Returns true if the value is read-only and cannot be modified by an accessibility client.
Implements AccessibilityValueInterface.
|
overridepure virtual |
Returns the current value.
Implements AccessibilityValueInterface.
|
overridepure virtual |
Sets the current value to a new value.
Implements AccessibilityValueInterface.
|
overridepure virtual |
Returns the range.
Implements AccessibilityValueInterface.
|
finalvirtual |
Implements AccessibilityValueInterface.
|
finalvirtual |
Implements AccessibilityValueInterface.