summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text/LabelFollow.idl
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-05 16:33:13 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-05 16:33:13 +0000
commitb04fc44f59d89dff6477e1abd390190efad8a6f9 (patch)
tree1befb9d30d9d6d8b5af9232d0b200a7ee7c7ed66 /offapi/com/sun/star/text/LabelFollow.idl
parentf2d4eb27939431284bd25888cb2e90b3936afe6b (diff)
INTEGRATION: CWS swnewlistlevelattrs_DEV300 (1.1.2); FILE ADDED
2008/01/18 07:45:18 od 1.1.2.1: #i85348# new constants group com::sun::star::text::LabelFollow
Diffstat (limited to 'offapi/com/sun/star/text/LabelFollow.idl')
-rw-r--r--offapi/com/sun/star/text/LabelFollow.idl74
1 files changed, 74 insertions, 0 deletions
diff --git a/offapi/com/sun/star/text/LabelFollow.idl b/offapi/com/sun/star/text/LabelFollow.idl
new file mode 100644
index 000000000000..5f8bae98e957
--- /dev/null
+++ b/offapi/com/sun/star/text/LabelFollow.idl
@@ -0,0 +1,74 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: LabelFollow.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: kz $ $Date: 2008-03-05 17:33:13 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+#ifndef __com_sun_star_text_LabelFollow_idl__
+#define __com_sun_star_text_LabelFollow_idl__
+
+
+//=============================================================================
+
+ module com { module sun { module star { module text {
+
+//=============================================================================
+
+/** These enumeration values specify character following the list label
+
+ @since OOo 3.0
+ */
+published constants LabelFollow
+{
+ //-------------------------------------------------------------------------
+
+ /** list tab stop
+ */
+ const short LISTTAB = 0;
+
+ //-------------------------------------------------------------------------
+
+ /** space
+ */
+ const short SPACE = 1;
+
+ //-------------------------------------------------------------------------
+
+ /** nothing
+ */
+ const short NOTHING = 2;
+};
+
+//=============================================================================
+
+}; }; }; };
+
+#endif