LibreOffice
LibreOffice 24.2 SDK API Reference
|
is an abstract service for a component which offers a more complex user interface to users within a toolbar. More...
import"ToolbarController.idl";
Exported Interfaces | |
interface | com::sun::star::frame::XStatusListener |
with this interface a component can receive events if a feature has changed. More... | |
interface | com::sun::star::lang::XInitialization |
used to initialize a component with required arguments. More... | |
interface | com::sun::star::util::XUpdatable |
used to notify an implementation that it needs to add its listener or remove and add them again. More... | |
interface | com::sun::star::frame::XToolbarController |
used to notify changed features and requests for additional user interface items. More... | |
interface | ::com::sun::star::frame::XSubToolbarController |
used to notify and retrieve information that are specific for sub-toolbar controllers. More... | |
Additional Inherited Members | |
Public Member Functions inherited from XStatusListener | |
void | statusChanged ([in] FeatureStateEvent State) |
is called when the status of the feature changes. 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... | |
Public Member Functions inherited from XInitialization | |
void | initialize ([in] sequence< any > aArguments) raises ( com::sun::star::uno::Exception ) |
initializes the object. More... | |
Public Member Functions inherited from XUpdatable | |
void | update () |
refreshes the data of the object from the connected data source. More... | |
Public Member Functions inherited from XToolbarController | |
void | execute ([in] short KeyModifier) |
provides a function to execute the command which is bound to the toolbar controller. More... | |
void | click () |
notifies a component that a single click has been made on the toolbar item. More... | |
void | doubleClick () |
notifies a component that a double click has been made on the toolbar item. More... | |
com::sun::star::awt::XWindow | createPopupWindow () |
requests to create a pop-up window for additional functions. More... | |
com::sun::star::awt::XWindow | createItemWindow ([in] com::sun::star::awt::XWindow Parent) |
requests to create an item window which can be added to the toolbar. More... | |
Protected Member Functions inherited from XSubToolbarController | |
boolean | opensSubToolbar () |
if the controller features a sub-toolbar. More... | |
string | getSubToolbarName () |
provides the resource URL of the sub-toolbar this controller opens. More... | |
void | functionSelected ([in] string aCommand) |
gets called to notify a controller that a sub-toolbar function has been selected. More... | |
void | updateImage () |
gets called to notify a controller that it should set an image which represents the current selected function. More... | |
is an abstract service for a component which offers a more complex user interface to users within a toolbar.
A generic toolbar function is represented as a button which has a state (enabled,disabled and selected, not selected). A toolbar controller can be added to a toolbar and provide information or functions within a more sophisticated user interface.
A typical example for toolbar controller is the font chooser within the toolbar. It provides all available fonts in a dropdown box and shows the current chosen font.
|
optional |
used to notify and retrieve information that are specific for sub-toolbar controllers.
Used by implementations that want to provide the toolbar button/sub- toolbar function feature. A controller supporting this interface exchanges the function of its own toolbar button, that opened the sub-toolbar, with the one that has been selected on the sub-toolbar.
interface com::sun::star::frame::XStatusListener |
with this interface a component can receive events if a feature has changed.
The toolbar controller implementation should register itself as a listener when its com::sun::star::util::XUpdatable interface has been called.
used to notify changed features and requests for additional user interface items.
Mostly used by a toolbar implementation to forward information to and request services from a toolbar controller component. This interface must be usable after com::sun::star::lang::XInitialization::initialize() has been called. The behavior of the interface is undefined if the controller component hasn't been initialized.
interface com::sun::star::lang::XInitialization |
used to initialize a component with required arguments.
A toolbar controller needs at least three additional arguments provided as com::sun::star::beans::PropertyValue:
interface com::sun::star::util::XUpdatable |
used to notify an implementation that it needs to add its listener or remove and add them again.
A toolbar controller instance is ready for use after this call has been made the first time. The toolbar implementation guarantees that the controller's item window has been added to the toolbar and its reference is held by it.