ooodev.adapter.awt.action_listener module
- class ooodev.adapter.awt.action_listener.ActionListener(trigger_args=None, subscriber=None)[source]
Bases:
AdapterBase
,XActionListener
Makes it possible to receive action events.
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 (Any, optional) – An UNO object that has a
addActionListener()
Method. If passed in then this listener instance is automatically added to it. Valid objects are: Listbox, ComboBox, Button, HyperLink, FixedHyperlink, ImageButton or any other UNO object that hasaddActionListener()
method.
- Return type:
None
- actionPerformed(rEvent)[source]
is invoked when an action is performed.
- Return type:
None
- Parameters:
rEvent (com.sun.star.awt.ActionEvent) –
- 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) –