#include <ActionListener.h>

Public Member Functions | |
| virtual void | performAction (Object *sender)=0 |
| A method to deal with action events. | |
| virtual string | toString () const =0 |
| Returns a textual representation. | |
| virtual string | className () const =0 |
| Returns the class name of the object. | |
| virtual enum classId | classId () const =0 |
| Returns the class id of the object. | |
The ActionListener is an abstract class designed to be derived from by all classes which intend to recieve and perform action events from MouseListeners
| virtual void ActionListener::performAction | ( | Object * | sender | ) | [pure virtual] |
A method to deal with action events.
Every ActionListener must implement this method to receive and process action events. Those will usually be sent by the MouseListener which calls this method.
| virtual string ActionListener::toString | ( | ) | const [pure virtual] |
| virtual string ActionListener::className | ( | ) | const [pure virtual] |
| virtual enum classId ActionListener::classId | ( | ) | const [pure virtual] |
1.5.6