ooodev.adapter.awt.window_listener module
- class ooodev.adapter.awt.window_listener.WindowListener(trigger_args=None, subscriber=None)[source]
Bases:
AdapterBase
,XWindowListener
Makes it possible to receive window events.
Component events are provided only for notification purposes. Moves and resizes will be handled internally by the window component, so that GUI layout works properly regardless of whether a program registers such a listener or not.
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 (XWindow, optional) – An UNO object that implements the
XWindow
interface. If passed in then this listener instance is automatically added to it.
- Return type:
None
- 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) –
- windowHidden(e)[source]
is invoked when the window has been hidden.
- Return type:
None
- Parameters:
e (com.sun.star.lang.EventObject) –
- windowMoved(e)[source]
is invoked when the window has been moved.
- Return type:
None
- Parameters:
e (com.sun.star.awt.WindowEvent) –