1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
24 module com
{ module sun
{ module star
{ module sheet
{
27 /** represents a model component which consists of some settings and
28 one or more spreadsheets.
30 published service SpreadsheetDocument
33 /** common service for all types of documents.
35 service com
::sun
::star
::document
::OfficeDocument
;
38 /** contributes spreadsheet document specific properties.
42 [optional] service com
::sun
::star
::sheet
::SpreadsheetDocumentSettings
;
45 /** provides methods to create instances of several spreadsheet
48 interface com
::sun
::star
::lang
::XMultiServiceFactory
;
51 /** provides common methods for a document model.
53 <p>This interface is derived from
54 com::sun::star::lang::XComponent.</p>
56 interface com
::sun
::star
::frame
::XModel
;
59 /** provides methods to control the automatic update of cell contents.
61 interface com
::sun
::star
::document
::XActionLockable
;
64 /** provides access to the collection of link targets available in
67 interface com
::sun
::star
::document
::XLinkTargetSupplier
;
70 /** provides methods to protect and unprotect the document.
72 interface com
::sun
::star
::util
::XProtectable
;
75 /** provides access to the collection of spreadsheets.
77 interface com
::sun
::star
::sheet
::XSpreadsheetDocument
;
80 /** controls the recalculation settings of the document.
82 interface com
::sun
::star
::sheet
::XCalculatable
;
85 /** provides a method to refresh all auditing arrows.
87 interface com
::sun
::star
::sheet
::XDocumentAuditing
;
90 /** provides methods to perform a data consolidation.
92 interface com
::sun
::star
::sheet
::XConsolidatable
;
95 /** provides a method to perform a goal seek.
97 interface com
::sun
::star
::sheet
::XGoalSeek
;
100 /** provides access to the collection of draw pages of this document.
102 interface com
::sun
::star
::drawing
::XDrawPagesSupplier
;
105 /** provides access to the collection of style families.
107 <p>A spreadsheet document contains 2 families of styles:
108 "PageStyles" and "CellStyles".</p>
110 interface com
::sun
::star
::style
::XStyleFamiliesSupplier
;
113 /** provides access to the collection of number formats contained in
116 interface com
::sun
::star
::util
::XNumberFormatsSupplier
;
119 /** contains the collection of named ranges in the document.
121 [readonly, property
] com
::sun
::star
::sheet
::XNamedRanges NamedRanges
;
124 /** contains the collection of database ranges in the document.
126 [readonly, property
] com
::sun
::star
::sheet
::XDatabaseRanges DatabaseRanges
;
129 /** contains the collection of column label ranges in the document.
131 [readonly, property
] com
::sun
::star
::sheet
::XLabelRanges ColumnLabelRanges
;
134 /** contains the collection of row label ranges in the document.
136 [readonly, property
] com
::sun
::star
::sheet
::XLabelRanges RowLabelRanges
;
139 /** contains the collection of sheet links in the document.
141 [readonly, property
] com
::sun
::star
::container
::XNameAccess SheetLinks
;
144 /** contains the collection of area links in the document.
146 [readonly, property
] com
::sun
::star
::sheet
::XAreaLinks AreaLinks
;
149 /** contains the collection of DDE links in the document.
151 [readonly, property
] com
::sun
::star
::container
::XNameAccess DDELinks
;
154 // /** contains the collection of external document links in the document.
158 // [optional, readonly, property] com::sun::star::sheet::XExternalDocLinks ExternalDocLinks;
164 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */