1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: DispatchDescriptor.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_frame_DispatchDescriptor_idl__
31 #define __com_sun_star_frame_DispatchDescriptor_idl__
33 #ifndef __com_sun_star_util_URL_idl__
34 #include
<com
/sun
/star
/util
/URL.idl
>
38 //=============================================================================
40 module com
{ module sun
{ module star
{ module frame
{
42 //=============================================================================
43 /** describes a feature to be retrieved by a URL that
44 has to be loaded into a specified frame
47 For a normal dispatch calls all needed parameters are seperated.
48 For optimized remote functionality <member>XDispatch::queryDispatches()</member>
49 it's neccessary to pack these parameters in a flat structure wich can be used
53 @see XDispatchProvider::queryDispatches()
55 published
struct DispatchDescriptor
57 //-------------------------------------------------------------------------
58 /** specifies the URL of the resource/function
61 Must be a full parsed URL. Use service <type scope="com::sun::star::util">URLTransformer</type>
65 @see com::sun::star::util::URLTransformer
67 com
::sun
::star
::util
::URL FeatureURL
;
69 //-------------------------------------------------------------------------
70 /** name of the target frame
73 Special targets (e.g. "_blank", "_self") or realy existing target names can be used.
76 @see XDispatchProvider::queryDispatch()
80 //-------------------------------------------------------------------------
81 /** describes how the target frame is to be searched
84 This optional parameter is used if <var>FrameName</var> isn't a special target only.
92 //=============================================================================