interface XTerminateListener in module com::sun::star::frame::

(Global Index)

Syntax

interface XTerminateListener : com::sun::star::lang::XEventListener ;

Description

has to be provided if an object wants to receive an event when the master environment (e.g., desktop) is terminated.

See also

XDesktop::addTerminateListener

See also

XDesktop::removeTerminateListener

Method Summary

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

notifyTermination is called when the master environment is finally terminated.

Method Details



queryTermination

Syntax

void queryTermination (
com::sun::star::lang::EventObject aEvent )
raises ( com::sun::star::frame::TerminationVetoException );

Description

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


notifyTermination

Syntax

void notifyTermination (
com::sun::star::lang::EventObject aEvent );

Description

is called when the master environment is finally terminated.

Top of Page