ooodev.adapter.awt.focus_listener module

class ooodev.adapter.awt.focus_listener.FocusListener(trigger_args=None, subscriber=None)[source]

Bases: AdapterBase, XFocusListener

Makes it possible to receive keyboard focus events.

The window which has the keyboard focus is the window which gets the keyboard events.

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 (XExtendedToolkit, XWindow, optional) – An UNO object that implements the XExtendedToolkit or XWindow interface. If passed in then this listener instance is automatically added to it.

Return type:

None

disposing(event)[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:

event (com.sun.star.lang.EventObject) –

focusGained(event)[source]

is invoked when a window gains the keyboard focus.

Return type:

None

Parameters:

event (com.sun.star.awt.FocusEvent) –

focusLost(event)[source]

is invoked when a window loses the keyboard focus.

Return type:

None

Parameters:

event (com.sun.star.awt.FocusEvent) –