Text Document Controller
From Apache OpenOffice Wiki
< Documentation | DevGuide
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
The text document model knows its controller and it can lock the controller to block user interaction. The appropriate methods in the model's com.sun.star.frame.XModel interface are:
void lockControllers() void unlockControllers() boolean hasControllersLocked() com::sun::star::frame::XController getCurrentController() void setCurrentController( [in] com::sun::star::frame::XController xController)
The controller returned by getCurrentController()
shares the following interfaces with all other document controllers in Apache OpenOffice:
- com.sun.star.frame.XController
- com.sun.star.frame.XDispatchProvider
- com.sun.star.ui.XContextMenuInterceptor
Document controllers are explained in the Office Development.
Content on this page is licensed under the Public Documentation License (PDL). |