A class for receiving events from a Label. More...
Inherited by ComboBox.
Public Member Functions | |
| virtual | ~Listener () |
| Destructor. | |
| virtual void | labelTextChanged (Label *labelThatHasChanged)=0 |
| Called when a Label's text has changed. | |
A class for receiving events from a Label.
You can register a Label::Listener with a Label using the Label::addListener() method, and it will be called when the text of the label changes, either because of a call to Label::setText() or by the user editing the text (if the label is editable).
| virtual Label::Listener::~Listener | ( | ) | [virtual] |
Destructor.
| virtual void Label::Listener::labelTextChanged | ( | Label * | labelThatHasChanged | ) | [pure virtual] |