xref: /aoo42x/main/offapi/com/sun/star/text/BaseIndex.idl (revision c6798233)
1d1766043SAndrew Rist/**************************************************************
2*c6798233SMatthias Seidel *
3d1766043SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4d1766043SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5d1766043SAndrew Rist * distributed with this work for additional information
6d1766043SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7d1766043SAndrew Rist * to you under the Apache License, Version 2.0 (the
8d1766043SAndrew Rist * "License"); you may not use this file except in compliance
9d1766043SAndrew Rist * with the License.  You may obtain a copy of the License at
10*c6798233SMatthias Seidel *
11d1766043SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*c6798233SMatthias Seidel *
13d1766043SAndrew Rist * Unless required by applicable law or agreed to in writing,
14d1766043SAndrew Rist * software distributed under the License is distributed on an
15d1766043SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16d1766043SAndrew Rist * KIND, either express or implied.  See the License for the
17d1766043SAndrew Rist * specific language governing permissions and limitations
18d1766043SAndrew Rist * under the License.
19*c6798233SMatthias Seidel *
20d1766043SAndrew Rist *************************************************************/
21d1766043SAndrew Rist
22d1766043SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#ifndef __com_sun_star_text_BaseIndex_idl__
25cdf0e10cSrcweir#define __com_sun_star_text_BaseIndex_idl__
26cdf0e10cSrcweir
27cdf0e10cSrcweir#ifndef __com_sun_star_util_Color_idl__
28cdf0e10cSrcweir#include <com/sun/star/util/Color.idl>
29cdf0e10cSrcweir#endif
30cdf0e10cSrcweir
31cdf0e10cSrcweir#ifndef __com_sun_star_text_XDocumentIndex_idl__
32cdf0e10cSrcweir#include <com/sun/star/text/XDocumentIndex.idl>
33cdf0e10cSrcweir#endif
34cdf0e10cSrcweir#ifndef _com_sun_star_container_XIndexReplace_idl__
35cdf0e10cSrcweir#include <com/sun/star/container/XIndexReplace.idl>
36cdf0e10cSrcweir#endif
37cdf0e10cSrcweir#ifndef _com_sun_star_text_XTextColumns_idl__
38cdf0e10cSrcweir#include <com/sun/star/text/XTextColumns.idl>
39cdf0e10cSrcweir#endif
40cdf0e10cSrcweir#ifndef __com_sun_star_style_GraphicLocation_idl__
41cdf0e10cSrcweir#include <com/sun/star/style/GraphicLocation.idl>
42cdf0e10cSrcweir#endif
43cdf0e10cSrcweir#ifndef __com_sun_star_lang_Locale_idl__
44cdf0e10cSrcweir#include <com/sun/star/lang/Locale.idl>
45cdf0e10cSrcweir#endif
46cdf0e10cSrcweir#ifndef _com_sun_star_text_XTextSection_idl__
47cdf0e10cSrcweir#include <com/sun/star/text/XTextSection.idl>
48cdf0e10cSrcweir#endif
49cdf0e10cSrcweir
50cdf0e10cSrcweir
51cdf0e10cSrcweir//=============================================================================
52cdf0e10cSrcweir
53*c6798233SMatthias Seidel module com { module sun { module star { module text {
54cdf0e10cSrcweir
55cdf0e10cSrcweir//=============================================================================
56cdf0e10cSrcweir
57cdf0e10cSrcweir// DocMerge from xml: service com::sun::star::text::BaseIndex
58cdf0e10cSrcweir/** specifies the basic service of different indexes within a document.@see com::sun::star::text::DocumentIndex
59cdf0e10cSrcweir		@see com::sun::star::text::ContentIndex
60cdf0e10cSrcweir		@see com::sun::star::text::UserDefinedIndex
61*c6798233SMatthias Seidel		@see com::sun::star::text::IllustrationsIndex
62cdf0e10cSrcweir		@see com::sun::star::text::TableIndex
63cdf0e10cSrcweir		@see com::sun::star::text::ObjectIndex
64cdf0e10cSrcweir */
65cdf0e10cSrcweirpublished service BaseIndex
66cdf0e10cSrcweir{
67cdf0e10cSrcweir	// DocMerge: empty anyway
68cdf0e10cSrcweir	interface com::sun::star::text::XDocumentIndex;
69cdf0e10cSrcweir
70cdf0e10cSrcweir	//-------------------------------------------------------------------------
71cdf0e10cSrcweir	/** contains the title of the index.*/
72cdf0e10cSrcweir
73cdf0e10cSrcweir	// DocMerge: empty anyway
74cdf0e10cSrcweir	[property] string Title;
75*c6798233SMatthias Seidel	/** determines if the index is protected.*/
76cdf0e10cSrcweir
77cdf0e10cSrcweir	// DocMerge: empty anyway
78cdf0e10cSrcweir	[property] boolean IsProtected;
79cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the heading.*/
80cdf0e10cSrcweir
81cdf0e10cSrcweir	// DocMerge: empty anyway
82cdf0e10cSrcweir	[property] string ParaStyleHeading;
83cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the 1st level.*/
84cdf0e10cSrcweir
85cdf0e10cSrcweir	// DocMerge: empty anyway
86cdf0e10cSrcweir	[property] string ParaStyleLevel1;
87cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the 2nd level.*/
88cdf0e10cSrcweir
89cdf0e10cSrcweir	// DocMerge: empty anyway
90cdf0e10cSrcweir	[optional, property] string ParaStyleLevel2;
91cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the 3rd level.*/
92cdf0e10cSrcweir
93cdf0e10cSrcweir	// DocMerge: empty anyway
94cdf0e10cSrcweir	[optional, property] string ParaStyleLevel3;
95cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the 4th level.*/
96cdf0e10cSrcweir
97cdf0e10cSrcweir	// DocMerge: empty anyway
98cdf0e10cSrcweir	[optional, property] string ParaStyleLevel4;
99cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the 5th level.*/
100cdf0e10cSrcweir
101cdf0e10cSrcweir	// DocMerge: empty anyway
102cdf0e10cSrcweir	[optional, property] string ParaStyleLevel5;
103cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the 6th level.*/
104cdf0e10cSrcweir
105cdf0e10cSrcweir	// DocMerge: empty anyway
106cdf0e10cSrcweir	[optional, property] string ParaStyleLevel6;
107cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the 7th level.*/
108cdf0e10cSrcweir
109cdf0e10cSrcweir	// DocMerge: empty anyway
110cdf0e10cSrcweir	[optional, property] string ParaStyleLevel7;
111cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the 8th level.*/
112cdf0e10cSrcweir
113cdf0e10cSrcweir	// DocMerge: empty anyway
114cdf0e10cSrcweir	[optional, property] string ParaStyleLevel8;
115cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the 9th level.*/
116cdf0e10cSrcweir
117cdf0e10cSrcweir	// DocMerge: empty anyway
118cdf0e10cSrcweir	[optional, property] string ParaStyleLevel9;
119cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the 10th level.*/
120cdf0e10cSrcweir
121cdf0e10cSrcweir	// DocMerge: empty anyway
122cdf0e10cSrcweir	[optional, property] string ParaStyleLevel10;
123cdf0e10cSrcweir	/** contains the name of the paragraph style that is applied to the separator level.*/
124cdf0e10cSrcweir
125cdf0e10cSrcweir	// DocMerge: empty anyway
126cdf0e10cSrcweir	[optional, property] string ParaStyleSeparator;
127cdf0e10cSrcweir	/** contains the column interface.*/
128cdf0e10cSrcweir
129cdf0e10cSrcweir	// DocMerge: empty anyway
130cdf0e10cSrcweir	[property] XTextColumns TextColumns;
131cdf0e10cSrcweir	/** contains the URL of a graphic file that is displayed as background graphic*/
132cdf0e10cSrcweir
133cdf0e10cSrcweir	// DocMerge: empty anyway
134cdf0e10cSrcweir	[property] string BackGraphicURL;
135cdf0e10cSrcweir	/** contains the name of the filter of the graphic file that is
136cdf0e10cSrcweir	 	displayed as background graphic*/
137cdf0e10cSrcweir
138cdf0e10cSrcweir	// DocMerge: empty anyway
139cdf0e10cSrcweir	[property] string BackGraphicFilter;
140cdf0e10cSrcweir
141cdf0e10cSrcweir	// DocMerge from xml: property com::sun::star::text::BaseIndex::BackGraphicLocation
142cdf0e10cSrcweir	/** determines the position of the background graphic.@see GraphicLocation
143cdf0e10cSrcweir	 */
144cdf0e10cSrcweir	[property] com::sun::star::style::GraphicLocation BackGraphicLocation;
145cdf0e10cSrcweir
146cdf0e10cSrcweir	// DocMerge from xml: property com::sun::star::text::BaseIndex::BackTransparent
147cdf0e10cSrcweir	/** specifies the color of the background.
148*c6798233SMatthias Seidel	 */
149cdf0e10cSrcweir	[property] com::sun::star::util::Color BackColor;
150*c6798233SMatthias Seidel
151cdf0e10cSrcweir	/** If <TRUE/>, the background color value in "BackColor" is not visible.
152cdf0e10cSrcweir	 */
153cdf0e10cSrcweir	[property] boolean BackTransparent;
154cdf0e10cSrcweir
155cdf0e10cSrcweir	/** returns the interface of the level format of the index.
156cdf0e10cSrcweir	 <p>
157cdf0e10cSrcweir		The description of the format of the levels depends on the type of the document index.
158cdf0e10cSrcweir	 </p>
159cdf0e10cSrcweir	 @see DocumentIndexLevelFormat
160cdf0e10cSrcweir	 */
161cdf0e10cSrcweir	// DocMerge: empty anyway
162cdf0e10cSrcweir	[optional, property] com::sun::star::container::XIndexReplace LevelFormat;
163*c6798233SMatthias Seidel	/** determines if the content of the document index is created from the
164cdf0e10cSrcweir	 	complete document content or from the current chapter only.
165cdf0e10cSrcweir	 <p> It is not available in the bibliography</p>*/
166cdf0e10cSrcweir	[optional, property] boolean CreateFromChapter;
167*c6798233SMatthias Seidel	//------------------------------------------------------------------------
168cdf0e10cSrcweir	/** the text section containing the content of the index */
169cdf0e10cSrcweir	[property] com::sun::star::text::XTextSection ContentSection;
170*c6798233SMatthias Seidel	//------------------------------------------------------------------------
171*c6798233SMatthias Seidel	//------------------------------------------------------------------------
172cdf0e10cSrcweir	/** the text section containing the header of the index */
173cdf0e10cSrcweir	[property] com::sun::star::text::XTextSection HeaderSection;
174*c6798233SMatthias Seidel	//------------------------------------------------------------------------
175cdf0e10cSrcweir};
176cdf0e10cSrcweir
177cdf0e10cSrcweir//=============================================================================
178cdf0e10cSrcweir
179cdf0e10cSrcweir}; }; }; };
180cdf0e10cSrcweir
181cdf0e10cSrcweir#endif
182