Methods' Summary |
dispatch |
dispatches (executes) an URL asynchronously.
|
addStatusListener |
registers a listener of a control for a specific URL
at this object to receive status events.
|
removeStatusListener |
unregisters a listener from a control.
|
Methods' Details |
dispatch
- Description
- dispatches (executes) an URL asynchronously.
It is only allowed to dispatch URLs for which this XDispatch
was explicitly queried. Additional arguments ("'#..." or "?...") are allowed.
- Parameter URL
- fully parsed URL describing the feature which should be dispatched (=executed)
- Parameter Arguments
- optional arguments for this request.
They depend on the real implementation of the dispatch object.
- Example
// some code for a click-handler (Java)
void myOnClick(String sURL,String sTargetFrame,com.sun.star.beans.PropertyValue[] lArguments)
{
com.sun.star.util.URL[] aURL = new com.sun.star.util.URL[1];
aURL[0] = new com.sun.star.util.URL();
aURL[0].Complete = sURL;
com.sun.star.util.XURLTransformer xParser = (com.sun.star.util.XURLTransformer)UnoRuntime.queryInterface(
com.sun.star.util.XURLTransformer.class,
mxServiceManager.createInstance("com.sun.star.util.URLTransformer"));
xParser.parseStrict(aURL);
com.sun.star.frame.XDispatch xDispatcher = mxFrame.queryDispatch(aURL[0], sTargetFrame, com.sun.star.frame.FrameSearchFlag.GLOBAL);
if(xDispatcher!=null)
xDispatcher.dispatch(aURL[0], lArguments);
}
|
|
addStatusListener
- Description
- registers a listener of a control for a specific URL
at this object to receive status events.
It is only allowed to register URLs for which this XDispatch
was explicitly queried. Additional arguments ("#..." or "?...") will be ignored.
Note: Notifications can't be guaranteed! This will be a part of interface XNotifyingDispatch.
- Parameter Control
- listener that wishes to be informed
- Parameter URL
- the URL (without additional arguments) the listener wishes to be registered for.
A listener can be registered for more than one URL at the same time.
- See also
- XStatusListener, XDispatch::removeStatusListener()
|
|
removeStatusListener
- Description
- unregisters a listener from a control.
- Parameter Control
- listener that wishes to be unregistered
- Parameter URL
- URL the listener was registered for.
Additional arguments ("#..." or "?...") will be ignored.
- See also
- XStatusListener, XDispatch::addStatusListener()
|
|
Top of Page
Copyright © 2000, 2013 LibreOffice contributors and/or their affiliates. All rights reserved.
LibreOffice was created by The Document Foundation, based on OpenOffice.org, which is Copyright 2000, 2010 Oracle and/or its affiliates.
The Document Foundation acknowledges all community members, please find more info at our website.
Privacy Policy | Impressum (Legal Info) | Copyright information: The source code of LibreOffice is licensed under the GNU Lesser General Public License (LGPLv3). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.