1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#ifndef __com_sun_star_text_TextTableCursor_idl__
28#define __com_sun_star_text_TextTableCursor_idl__
29
30#ifndef __com_sun_star_text_XTextTableCursor_idl__
31#include <com/sun/star/text/XTextTableCursor.idl>
32#endif
33
34#ifndef __com_sun_star_beans_XPropertySet_idl__
35#include <com/sun/star/beans/XPropertySet.idl>
36#endif
37#ifndef __com_sun_star_style_CharacterProperties_idl__
38#include <com/sun/star/style/CharacterProperties.idl>
39#endif
40#ifndef __com_sun_star_style_CharacterPropertiesAsian_idl__
41#include <com/sun/star/style/CharacterPropertiesAsian.idl>
42#endif
43#ifndef __com_sun_star_style_CharacterPropertiesComplex_idl__
44#include <com/sun/star/style/CharacterPropertiesComplex.idl>
45#endif
46#ifndef __com_sun_star_style_ParagraphProperties_idl__
47#include <com/sun/star/style/ParagraphProperties.idl>
48#endif
49#ifndef _com_sun_star_xml_UserDefinedAttributesSupplier_idl_
50#include <com/sun/star/xml/UserDefinedAttributesSupplier.idl>
51#endif
52
53
54//=============================================================================
55
56 module com {  module sun {  module star {  module text {
57
58//=============================================================================
59
60/** specifies a cursor in text tables.
61
62    <p>This cursor can be used to:</p>
63	<ul>
64        <li>travel through text table cells</li>
65        <li>select text table cells</li>
66        <li>get property values from the selected cells</li>
67        <li>set property values in the selected cells</li>
68	</ul>
69
70    @see    com::sun::star::text::TextTable
71 */
72published service TextTableCursor
73{
74	interface com::sun::star::text::XTextTableCursor;
75
76	interface com::sun::star::beans::XPropertySet;
77
78    service com::sun::star::style::CharacterProperties;
79    service com::sun::star::style::CharacterPropertiesAsian;
80    service com::sun::star::style::CharacterPropertiesComplex;
81    service com::sun::star::style::ParagraphProperties;
82
83    [optional] service com::sun::star::xml::UserDefinedAttributesSupplier;
84};
85
86//=============================================================================
87
88}; }; }; };
89
90#endif
91