1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef __com_sun_star_text_TextColumns_idl__
24#define __com_sun_star_text_TextColumns_idl__
25
26#ifndef __com_sun_star_text_XTextColumns_idl__
27#include <com/sun/star/text/XTextColumns.idl>
28#endif
29
30#ifndef __com_sun_star_style_VerticalAlignment_idl__
31#include <com/sun/star/style/VerticalAlignment.idl>
32#endif
33
34#ifndef __com_sun_star_util_Color_idl__
35#include <com/sun/star/util/Color.idl>
36#endif
37
38//=============================================================================
39
40 module com {  module sun {  module star {  module text {
41
42//=============================================================================
43
44// DocMerge from xml: service com::sun::star::text::TextColumns
45/** provides access to columns in text (e.g., in TextFrames ).
46 */
47published service TextColumns
48{
49	// DocMerge: empty anyway
50	interface com::sun::star::text::XTextColumns;
51
52    //------------------------------------------------------------------------
53    /** determines whether the columns all have equal width. This flag is set if XTextColumns::setColumnCount() is called
54     and it is reset if XTextColumns::setColumns() is called.
55	 */
56    [readonly, property]  boolean IsAutomatic;
57    //------------------------------------------------------------------------
58    /** contains the distance between the columns. It is valid if the property IsAutomatic is set.
59 <!-- The h -->Half of this distance is set to the left and right margins of all columns,
60	except for the left margin of the first column, and the right margin of the last column.*/
61    [property]  long AutomaticDistance;
62    //------------------------------------------------------------------------
63    /** determines the width of the separator lines between the columns.
64	 */
65    [property]  long SeparatorLineWidth;
66    //------------------------------------------------------------------------
67    /** determines the color of the separator lines between the columns.
68	 */
69    [property]  com::sun::star::util::Color SeparatorLineColor;
70    //------------------------------------------------------------------------
71    /** determines the relative height of the separator lines between the columns.
72	 */
73    [property]  long SeparatorLineRelativeHeight;
74    //------------------------------------------------------------------------
75    /** determines the vertical alignment of the separator lines between the columns.
76	 */
77    [property]  com::sun::star::style::VerticalAlignment SeparatorLineVerticalAlignment;
78    //------------------------------------------------------------------------
79    /** determines whether separator lines are on.
80	 */
81    [property]  boolean SeparatorLineIsOn;
82    //------------------------------------------------------------------------
83};
84
85//=============================================================================
86
87}; }; }; };
88
89#endif
90