|
LMMS
|
#include <juce_AccessibilityTableInterface.h>
Public Member Functions | |
| virtual | ~AccessibilityTableInterface ()=default |
| virtual int | getNumRows () const =0 |
| virtual int | getNumColumns () const =0 |
| virtual const AccessibilityHandler * | getCellHandler (int row, int column) const =0 |
An abstract interface which represents a UI element that supports a table interface.
Examples of UI elements which typically support a table interface are lists, tables, and trees.
@tags{Accessibility}
|
virtualdefault |
Destructor.
|
pure virtual |
Returns the AccessibilityHandler for one of the cells in the table, or nullptr if there is no cell at the specified position.
|
pure virtual |
Returns the total number of columns in the table.
|
pure virtual |
Returns the total number of rows in the table.