merged tag ooo/OOO330_m14
[LibreOffice.git] / offapi / com / sun / star / sheet / ExternalLinkInfo.idl
blobfa8590f7f67892e8a7c4e6f559c89dc9d14a4d7a
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef __com_sun_star_sheet_ExternalLinkInfo_idl__
28 #define __com_sun_star_sheet_ExternalLinkInfo_idl__
30 #ifndef __com_sun_star_sheet_ExternalLinkType_idl__
31 #include <com/sun/star/sheet/ExternalLinkType.idl>
32 #endif
34 //=============================================================================
36 module com { module sun { module star { module sheet {
38 //=============================================================================
39 /** describes an external link in a formula.
41 @since OOo3.1
43 struct ExternalLinkInfo
45 //-------------------------------------------------------------------------
46 /** Link type, one of <type>ExternalLinkType</type> constants.
48 long Type;
50 //-------------------------------------------------------------------------
51 /** Location of this link type.
53 <p>Modes used:
55 <ol>
56 <li>If <member>Type</member> is <const>ExternalLinkType::EXTERNAL
57 </const>, this member shall contain a <atom>string</atom> with the
58 <em>URI</em> of a document. The formula that would need this
59 information for example would contain <code>=[1]Sheet1!A1</code> or
60 <code>='[1]Sheet name'!A1</code> where <em>[1]</em> does resolve to
61 the URI contained in the member <member>Data</member>. Note that the
62 quotes cover both, the document name and the sheet name.</li>
64 <li>If <member>Type</member> is <const>ExternalLinkType::DDE</const>,
65 this member shall contain a <type>DDELinkInfo</type> describing
66 service name, topic, and all known items of a DDE link.</li>
67 </ol></p>
69 any Data;
73 //=============================================================================
75 }; }; }; };
77 #endif