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