ooodev.adapter.form.approve_action_listener module
- class ooodev.adapter.form.approve_action_listener.ApproveActionListener(trigger_args=None, subscriber=None)[source]
Bases:
AdapterBase,XApproveActionListenerCan be implemented to listen and probably veto actions to be performed on components.
An example for an action would be the click of a CommandButton.
See also
- Parameters:
args (Any) –
kwargs (Any) –
- Return type:
Any
- __init__(trigger_args=None, subscriber=None)[source]
Constructor
- Parameters:
trigger_args (GenericArgs, Optional) – Args that are passed to events when they are triggered.
subscriber (XApproveActionBroadcaster, optional) – An UNO object that implements the
XApproveActionBroadcasterinterface. If passed in then this listener instance is automatically added to it.
- Return type:
None
- approveAction(aEvent)[source]
Event is invoked when an action is preformed. If event is canceled then the action will be canceled.
- Parameters:
event (EventObject) – Event data for the event.
aEvent (com.sun.star.lang.EventObject) –
- Returns:
Trueif the action should be performed,Falseotherwise.- Return type:
bool
Note
When
approveActionevent is invoked it will contain aCancelEventArgsinstance as the trigger event. When the event is triggered theCancelEventArgs.cancelcan be set toTrueto cancel the action. Also if canceled theCancelEventArgs.handledcan be set toTrueto indicate that the action should be performed. TheCancelEventArgs.event_datawill contain the originalcom.sun.star.lang.EventObjectthat triggered the update.
- disposing(Source)[source]
Gets called when the broadcaster is about to be disposed.
All listeners and all other objects, which reference the broadcaster should release the reference to the source. No method should be invoked anymore on this object ( including
XComponent.removeEventListener()).This method is called for every listener registration of derived listener interfaced, not only for registrations at
XComponent.- Return type:
None- Parameters:
Source (com.sun.star.lang.EventObject) –