| LibreOffice
    LibreOffice 24.8 SDK API Reference | 
receives load-related events from a loadable object. More...
import "XLoadListener.idl";
 
  
| Public Member Functions | |
| void | loaded ([in] com::sun::star::lang::EventObject aEvent) | 
| is invoked when the object has successfully connected to a datasource. | |
| void | unloading ([in] com::sun::star::lang::EventObject aEvent) | 
| is invoked when the object is about to be unloaded. | |
| void | unloaded ([in] com::sun::star::lang::EventObject aEvent) | 
| is invoked after the object has disconnected from a datasource. | |
| void | reloading ([in] com::sun::star::lang::EventObject aEvent) | 
| is invoked when the object is about to be reloaded. | |
| void | reloaded ([in] com::sun::star::lang::EventObject aEvent) | 
| is invoked when the object has been reloaded. | |
| Public Member Functions inherited from XEventListener | |
| void | disposing ([in] com::sun::star::lang::EventObject Source) | 
| gets called when the broadcaster is about to be disposed. | |
| Public Member Functions inherited from XInterface | |
| 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. | |
receives load-related events from a loadable object.
The interface is typically implemented by data-bound components, which want to listen to the data source that contains their database form.
| void loaded | ( | [in] com::sun::star::lang::EventObject | aEvent | ) | 
is invoked when the object has successfully connected to a datasource.
| aEvent | the event happened. | 
| void reloaded | ( | [in] com::sun::star::lang::EventObject | aEvent | ) | 
is invoked when the object has been reloaded.
| aEvent | the event happened. | 
| void reloading | ( | [in] com::sun::star::lang::EventObject | aEvent | ) | 
is invoked when the object is about to be reloaded.
Components may use this to stop any other event processing related to the event source until they get the reloaded event.
| aEvent | the event happened. | 
| void unloaded | ( | [in] com::sun::star::lang::EventObject | aEvent | ) | 
is invoked after the object has disconnected from a datasource.
| aEvent | the event happened. | 
| void unloading | ( | [in] com::sun::star::lang::EventObject | aEvent | ) | 
is invoked when the object is about to be unloaded.
Components may use this to stop any other event processing related to the event source before the object is unloaded.
| aEvent | the event happened. |