ooodev.adapter.ui.ui_configuration_listener module

class ooodev.adapter.ui.ui_configuration_listener.UIConfigurationListener(trigger_args=None, subscriber=None)[source]

Bases: AdapterBase, XUIConfigurationListener

Supplies information about changes of a user interface configuration manager.

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 (XUIConfiguration, optional) – An UNO object that implements com.sun.star.ui.XUIConfiguration. 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) –

elementInserted(event)[source]

Invoked when a configuration has inserted an user interface element.

Return type:

None

Parameters:

event (com.sun.star.ui.ConfigurationEvent) –

elementRemoved(event)[source]

is invoked when a configuration has removed an user interface element.

Return type:

None

Parameters:

event (com.sun.star.ui.ConfigurationEvent) –

elementReplaced(event)[source]

is invoked when a configuration has replaced an user interface element.

Return type:

None

Parameters:

event (com.sun.star.ui.ConfigurationEvent) –