summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-01-10 11:38:43 +0000
committerOliver Bolte <obo@openoffice.org>2008-01-10 11:38:43 +0000
commit55fb989ee158d043934da8cbdf8598e44729baa4 (patch)
tree1603570f4bfb96f2f4d6cafc0404af80f4e69c6c
parentfca7473dbb2e4e9a1f88a8f15fd8aee242404875 (diff)
INTEGRATION: CWS xmlfilter02 (1.1.2); FILE ADDED
2007/11/29 10:10:01 tbe 1.1.2.1: #i81573# API: need interface to add DDE links
-rw-r--r--offapi/com/sun/star/sheet/DDELinkMode.idl78
1 files changed, 78 insertions, 0 deletions
diff --git a/offapi/com/sun/star/sheet/DDELinkMode.idl b/offapi/com/sun/star/sheet/DDELinkMode.idl
new file mode 100644
index 000000000000..8cc0a15a7c3f
--- /dev/null
+++ b/offapi/com/sun/star/sheet/DDELinkMode.idl
@@ -0,0 +1,78 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: DDELinkMode.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: obo $ $Date: 2008-01-10 12:38:43 $
+ *
+ * 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_sheet_DDELinkMode_idl__
+#define __com_sun_star_sheet_DDELinkMode_idl__
+
+//=============================================================================
+
+module com { module sun { module star { module sheet {
+
+//=============================================================================
+
+/** used to specify how the DDE server application converts its data into
+ numbers.
+
+ @see com::sun::star::sheet::XDDELinks
+
+ @since CWS xmlfilter02
+ */
+published enum DDELinkMode
+{
+ //-------------------------------------------------------------------------
+
+ /** numbers are converted into the default format.
+ */
+ DEFAULT,
+
+ //-------------------------------------------------------------------------
+
+ /** numbers are converted into the English default format.
+ */
+ ENGLISH,
+
+ //-------------------------------------------------------------------------
+
+ /** numbers are not converted, but treated as text.
+ */
+ TEXT
+
+};
+
+//=============================================================================
+
+}; }; }; };
+
+#endif