Receives events from a TableHeaderComponent when columns are resized, moved, etc. More...
#include <juce_TableHeaderComponent.h>
Public Member Functions | |
Listener () | |
virtual | ~Listener () |
Destructor. More... | |
virtual void | tableColumnDraggingChanged (TableHeaderComponent *tableHeader, int columnIdNowBeingDragged) |
This is called when the user begins or ends dragging one of the columns around. More... | |
virtual void | tableColumnsChanged (TableHeaderComponent *tableHeader)=0 |
This is called when some of the table's columns are added, removed, hidden, or rearranged. More... | |
virtual void | tableColumnsResized (TableHeaderComponent *tableHeader)=0 |
This is called when one or more of the table's columns are resized. More... | |
virtual void | tableSortOrderChanged (TableHeaderComponent *tableHeader)=0 |
This is called when the column by which the table should be sorted is changed. More... | |
Receives events from a TableHeaderComponent when columns are resized, moved, etc.
You can register one of these objects for table events using TableHeaderComponent::addListener() and TableHeaderComponent::removeListener().
|
inline |
|
inlinevirtual |
Destructor.
|
virtual |
This is called when the user begins or ends dragging one of the columns around.
When the user starts dragging a column, this is called with the ID of that column. When they finish dragging, it is called again with 0 as the ID.
Reimplemented in juce::TableListBox.
|
pure virtual |
This is called when some of the table's columns are added, removed, hidden, or rearranged.
Implemented in juce::TableListBox.
|
pure virtual |
This is called when one or more of the table's columns are resized.
Implemented in juce::TableListBox.
|
pure virtual |
This is called when the column by which the table should be sorted is changed.
Implemented in juce::TableListBox.