LibreOffice
LibreOffice 24.2 SDK API Reference
|
Interface to be implemented by a FilePicker listener. More...
import"XFilePickerListener.idl";
Public Member Functions | |
void | fileSelectionChanged ([in] FilePickerEvent aEvent) |
A client receives this event if the file selection within the FilePicker service dialog changes. More... | |
void | directoryChanged ([in] FilePickerEvent aEvent) |
A client receives this event if the directory selection within the FilePicker dialog changes. More... | |
string | helpRequested ([in] FilePickerEvent aEvent) |
A client receives this event if the F1 key or the help button was pressed. More... | |
void | controlStateChanged ([in] FilePickerEvent aEvent) |
A client receives this event if the state of a control within the FilePicker service dialog changes. More... | |
void | dialogSizeChanged () |
A client receives this event if the size of the FilePicker dialog has changed. More... | |
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. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
Interface to be implemented by a FilePicker listener.
The XFilePickerListener interface must be implemented by the clients of the FilePicker service which need to be informed about events while the FilePicker service is displayed.
void controlStateChanged | ( | [in] FilePickerEvent | aEvent | ) |
A client receives this event if the state of a control within the FilePicker service dialog changes.
aEvent | of type FilePickerEvent that describes the event. |
void dialogSizeChanged | ( | ) |
A client receives this event if the size of the FilePicker dialog has changed.
If the FilePicker dialog contains a preview the client may ask for the new dimension of the preview area.
void directoryChanged | ( | [in] FilePickerEvent | aEvent | ) |
A client receives this event if the directory selection within the FilePicker dialog changes.
aEvent | Of type FilePickerEvent that describes the event. |
void fileSelectionChanged | ( | [in] FilePickerEvent | aEvent | ) |
A client receives this event if the file selection within the FilePicker service dialog changes.
aEvent | of type FilePickerEvent that describes the event |
string helpRequested | ( | [in] FilePickerEvent | aEvent | ) |
A client receives this event if the F1 key or the help button was pressed.
aEvent | of type FilePickerEvent that describes the event |