Class XSelectionChangeAdapter

class ooodev.listeners.x_selection_change_adapter.XSelectionChangeAdapter(*args, **kwargs)[source]

Makes it possible to receive an event when the current selection changes.

This class is meant a parent class.

Parameters:
  • args (Any) –

  • kwargs (Any) –

Return type:

Any

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

selectionChanged(event)[source]

is called when the selection changes.

You can get the new selection via XSelectionSupplier from com.sun.star.lang.EventObject.Source.

Return type:

None

Parameters:

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