fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / filter / inc / xllink.hxx
blob08cbb27c18e5f8a0e0d7cf417c41ab139388dd17
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SC_SOURCE_FILTER_INC_XLLINK_HXX
21 #define INCLUDED_SC_SOURCE_FILTER_INC_XLLINK_HXX
23 #include <sal/types.h>
25 // Constants and Enumerations =================================================
27 const sal_uInt16 EXC_TAB_EXTERNAL = 0xFFFE; /// Special sheet index for external links.
28 const sal_uInt16 EXC_TAB_DELETED = 0xFFFF; /// Deleted sheet in a 3D reference.
30 // (0x0016) EXTERNCOUNT -------------------------------------------------------
32 const sal_uInt16 EXC_ID_EXTERNCOUNT = 0x0016;
34 // (0x0017) EXTERNSHEET -------------------------------------------------------
36 const sal_uInt16 EXC_ID_EXTERNSHEET = 0x0017;
38 const sal_Unicode EXC_EXTSH_URL = '\x01';
39 const sal_Unicode EXC_EXTSH_OWNTAB = '\x02';
40 const sal_Unicode EXC_EXTSH_TABNAME = '\x03';
41 const sal_Unicode EXC_EXTSH_OWNDOC = '\x04';
42 const sal_Unicode EXC_EXTSH_ADDIN = '\x3A';
44 // (0x0023) EXTERNNAME --------------------------------------------------------
46 const sal_uInt16 EXC_ID_EXTERNNAME = 0x0023;
48 const sal_uInt16 EXC_EXTN_BUILTIN = 0x0001;
49 const sal_uInt16 EXC_EXTN_OLE = 0x0010;
50 const sal_uInt16 EXC_EXTN_OLE_OR_DDE = 0xFFFE;
52 const sal_uInt16 EXC_EXTN_EXPDDE_STDDOC = 0x7FEA; /// for export
53 const sal_uInt16 EXC_EXTN_EXPDDE = 0x7FE2; /// for export
55 // (0x0059, 0x005A) XCT, CRN --------------------------------------------------
57 const sal_uInt16 EXC_ID_XCT = 0x0059;
58 const sal_uInt16 EXC_ID_CRN = 0x005A;
60 // (0x013D) TABID -------------------------------------------------------------
62 const sal_uInt16 EXC_ID_TABID = 0x013D;
64 // (0x01AE) SUPBOOK -----------------------------------------------------------
66 const sal_uInt16 EXC_ID_SUPBOOK = 0x01AE;
68 const sal_uInt16 EXC_SUPB_SELF = 0x0401;
69 const sal_uInt16 EXC_SUPB_ADDIN = 0x3A01;
71 /** This enumeration specifies the type of a SUPBOOK record. */
72 enum XclSupbookType
74 EXC_SBTYPE_UNKNOWN, /// unknown SUPBOOK record type.
75 EXC_SBTYPE_SELF, /// SUPBOOK is used for internal references.
76 EXC_SBTYPE_EXTERN, /// SUPBOOK is used for external references.
77 EXC_SBTYPE_ADDIN, /// SUPBOOK contains add-in functions.
78 EXC_SBTYPE_SPECIAL, /// SUPBOOK is used for DDE or OLE links.
79 EXC_SBTYPE_EUROTOOL /// SUPBOOK is used for EUROCONVERT.
82 #endif
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */