Class XTerminateAdapter

class ooodev.listeners.x_terminate_adapter.XTerminateAdapter(*args, **kwargs)[source]

XTerminateListener implementation

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

notifyTermination(Event)[source]

is called when the master environment is finally terminated.

No veto will be accepted then.

Return type:

None

Parameters:

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

queryTermination(Event)[source]

is called when the master environment (e.g., desktop) is about to terminate.

Termination can be intercepted by throwing TerminationVetoException. Interceptor will be the new owner of desktop and should call XDesktop.terminate() after finishing his own operations.

Raises:

TerminationVetoExceptionTerminationVetoException

Return type:

None

Parameters:

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