|
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 |
An abstract interface which represents a UI element that supports a cell interface. More...
#include "juce_AccessibilityCellInterface.h"
Public Member Functions | |
| virtual | ~AccessibilityCellInterface ()=default |
| Destructor. | |
| virtual int | getDisclosureLevel () const =0 |
| Returns the indentation level for the cell. | |
| virtual const AccessibilityHandler * | getTableHandler () const =0 |
| Returns the AccessibilityHandler of the table which contains the cell. | |
| virtual std::vector< const AccessibilityHandler * > | getDisclosedRows () const |
| Returns a list of the accessibility elements that are disclosed by this element, if any. | |
An abstract interface which represents a UI element that supports a cell interface.
This typically represents a single cell inside of a UI element which implements an AccessibilityTableInterface.
@tags{Accessibility}
Definition at line 36 of file juce_AccessibilityCellInterface.h.
|
virtual |
Returns a list of the accessibility elements that are disclosed by this element, if any.
Reimplemented in juce::TreeView::ItemComponent::ItemAccessibilityHandler::ItemCellInterface.
Definition at line 49 of file juce_AccessibilityCellInterface.h.
Returns the indentation level for the cell.
Implemented in juce::TreeView::ItemComponent::ItemAccessibilityHandler::ItemCellInterface.
|
pure virtual |
Returns the AccessibilityHandler of the table which contains the cell.
Implemented in juce::TreeView::ItemComponent::ItemAccessibilityHandler::ItemCellInterface.