ooodev.adapter.frame.border_resize_listener module

class ooodev.adapter.frame.border_resize_listener.BorderResizeListener(trigger_args=None, subscriber=None)[source]

Bases: AdapterBase, XBorderResizeListener

Allows to listen to border resize events of a controller.

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.

  • add_listener (bool, optional) – If True listener is automatically added. Default True.

  • subscriber (XControllerBorder, optional) – An UNO object that implements the XControllerBorder interface. If passed in then this listener instance is automatically added to it.

Return type:

None

borderWidthsChanged(obj, new_size)[source]

notifies the listener that the controller’s border widths have been changed.

Return type:

None

Parameters:
  • obj (com.sun.star.uno.XInterface) –

  • new_size (com.sun.star.frame.BorderWidths) –

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) –