JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::AccessibilityTableInterface Class Referenceabstract

An abstract interface which represents a UI element that supports a table interface. More...

#include <juce_AccessibilityTableInterface.h>

Public Member Functions

virtual ~AccessibilityTableInterface ()=default
 Destructor. More...
 
virtual const AccessibilityHandlergetCellHandler (int row, int column) const =0
 Returns the AccessibilityHandler for one of the cells in the table, or nullptr if there is no cell at the specified position. More...
 
virtual int getNumColumns () const =0
 Returns the total number of columns in the table. More...
 
virtual int getNumRows () const =0
 Returns the total number of rows in the table. More...
 

Detailed Description

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}

Constructor & Destructor Documentation

◆ ~AccessibilityTableInterface()

virtual juce::AccessibilityTableInterface::~AccessibilityTableInterface ( )
virtualdefault

Destructor.

Member Function Documentation

◆ getCellHandler()

virtual const AccessibilityHandler* juce::AccessibilityTableInterface::getCellHandler ( int  row,
int  column 
) const
pure virtual

Returns the AccessibilityHandler for one of the cells in the table, or nullptr if there is no cell at the specified position.

Referenced by juce::UIAGridProvider::GetItem().

◆ getNumColumns()

virtual int juce::AccessibilityTableInterface::getNumColumns ( ) const
pure virtual

Returns the total number of columns in the table.

Referenced by juce::UIAGridProvider::get_ColumnCount(), and juce::UIAGridProvider::GetItem().

◆ getNumRows()

virtual int juce::AccessibilityTableInterface::getNumRows ( ) const
pure virtual

Returns the total number of rows in the table.

Referenced by juce::UIAGridProvider::get_RowCount(), and juce::UIAGridProvider::GetItem().


The documentation for this class was generated from the following file: