Index: A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z
The ActionEvent class manages ActionEvents, which are sent when an action takes place on a toolkit component. An example of this is when a user presses a FlexButton.
#include <toolkit/evtact.h>
public: | |
enum | ActionEventType; |
ActionEvent(FlexComponent *source, ActionEventType actionEventType); | |
ActionEventType | _actionEventType; |
protected: |
public: | ||
---|---|---|
FlexComponent * | GetSource(void); | |
protected: |
Back to the top of ActionEvent
Back to the top of ActionEvent
Back to the top of ActionEvent
The types of ActionEvents.
Declared as:
enum ActionEventType { AET_ACTION_PERFORMED = 0 };
Back to the top of ActionEvent
ActionEvent(FlexComponent *source, ActionEventType actionEventType);
Constructs an ActionEvent object with the specified source object and event type.
Prototype:
ActionEvent(FlexComponent *source, ActionEventType actionEventType);
Back to the top of ActionEvent
ActionEventType _actionEventType;
The ActionEventType of this event. This data member is set by the constructor.
Range: ActionEventType.
Declared as:
ActionEventType _actionEventType;
Back to the top of ActionEvent