LibreOffice
LibreOffice 24.8 SDK API Reference
|
is the interface for receiving notifications about reset events. More...
import <XResetListener.idl;
Public Member Functions | |
boolean | approveReset ([in] com::sun::star::lang::EventObject rEvent) |
is invoked before a component is reset. | |
void | resetted ([in] com::sun::star::lang::EventObject rEvent) |
is invoked when a component has been reset. | |
![]() | |
void | disposing ([in] com::sun::star::lang::EventObject Source) |
gets called when the broadcaster is about to be disposed. | |
![]() | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. | |
void | acquire () |
increases the reference counter by one. | |
void | release () |
decreases the reference counter by one. | |
is the interface for receiving notifications about reset events.
The listener is called if a component implementing the XReset interface performs a reset.
Order of events:
boolean approveReset | ( | [in] com::sun::star::lang::EventObject | rEvent | ) |
is invoked before a component is reset.
rEvent | the event happened. |
TRUE
when reset was approved, FALSE
when the reset operation should be canceled. void resetted | ( | [in] com::sun::star::lang::EventObject | rEvent | ) |
is invoked when a component has been reset.
rEvent | the event happened. |