:: com :: sun :: star :: util ::

interface XModeChangeBroadcaster
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XModeChangeBroadcaster
Description
broadcasts changes in an object's internal mode.
See also
XModeSelector
See also
XModeChangeListener
See also
XModeChangeApproveListener
Since version
OpenOffice.org 1.1.5

Methods' Summary
addModeChangeListener adds the given listener to the list of components to be notified when the mode changes.
removeModeChangeListener removes the given listener from the list of components to be notified when the mode changes.
addModeChangeApproveListener adds the given listener to the list of components to be notified when the mode is about to change.
removeModeChangeApproveListener remove the given listener from the list of components to be notified when the mode is about to change.
Methods' Details
addModeChangeListener
void
addModeChangeListener(
 
[in] XModeChangeListener
 
_rxListener );

Description
adds the given listener to the list of components to be notified when the mode changes.
removeModeChangeListener
void
removeModeChangeListener(
 
[in] XModeChangeListener
 
_rxListener );

Description
removes the given listener from the list of components to be notified when the mode changes.
addModeChangeApproveListener
void
addModeChangeApproveListener(
 
[in] XModeChangeApproveListener 

raises(

 
_rxListener ) 
::com::sun::star::lang::NoSupportException );

Description
adds the given listener to the list of components to be notified when the mode is about to change.
Throws
com::sun::star::lang::NoSupportException if the component does not allow vetoing mode changes
removeModeChangeApproveListener
void
removeModeChangeApproveListener(
 
[in] XModeChangeApproveListener 

raises(

 
_rxListener ) 
::com::sun::star::lang::NoSupportException );

Description
remove the given listener from the list of components to be notified when the mode is about to change.
Throws
com::sun::star::lang::NoSupportException if the component does not allow vetoing mode changes
Top of Page