summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-12-07 11:16:25 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-12-07 11:16:25 +0000
commitb190b6f4d783e1231667c65cb620b9703cd3f1dc (patch)
treea37c0ae93e984ce17e128c0ea5766736f5fd0e18 /oovbaapi
parentf9d970d64ff413c84a1e907241b93975015ef391 (diff)
INTEGRATION: CWS npower8 (1.1.2); FILE ADDED
2007/05/14 09:55:15 npower 1.1.2.2: add licence header info 2007/05/10 11:15:50 npower 1.1.2.1: #i77189# new idl
Diffstat (limited to 'oovbaapi')
-rw-r--r--oovbaapi/org/openoffice/msforms/XControl.idl68
-rw-r--r--oovbaapi/org/openoffice/msforms/XFillFormat.idl58
-rw-r--r--oovbaapi/org/openoffice/msforms/XLabel.idl57
-rw-r--r--oovbaapi/org/openoffice/msforms/XLineFormat.idl65
-rw-r--r--oovbaapi/org/openoffice/msforms/XListBox.idl64
-rw-r--r--oovbaapi/org/openoffice/msforms/XPictureFormat.idl53
-rw-r--r--oovbaapi/org/openoffice/msforms/XRadioButton.idl58
-rw-r--r--oovbaapi/org/openoffice/msforms/XTextBox.idl60
8 files changed, 483 insertions, 0 deletions
diff --git a/oovbaapi/org/openoffice/msforms/XControl.idl b/oovbaapi/org/openoffice/msforms/XControl.idl
new file mode 100644
index 0000000000..1b9654185d
--- /dev/null
+++ b/oovbaapi/org/openoffice/msforms/XControl.idl
@@ -0,0 +1,68 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XControl.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 12:14:42 $
+ *
+ * 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 __org_openoffice_msforms_XControl_idl__
+#define __org_openoffice_msforms_XControl_idl__
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+
+
+//=============================================================================
+
+module org { module openoffice { module msforms {
+
+
+//=============================================================================
+interface XControl: com::sun::star::uno::XInterface
+{
+ [attribute] boolean Enabled;
+ [attribute] boolean Visible;
+ //Size. there are some defferent between Mso and OOo.
+ //Mso use double but OOo use long. OOo 1 = 1/100mm but Mso use pt
+ [attribute] double Height;
+ [attribute] double Width;
+ //Postion
+ [attribute] double Left;
+ [attribute] double Top;
+};
+
+//=============================================================================
+
+}; }; };
+
+#endif
+
+
diff --git a/oovbaapi/org/openoffice/msforms/XFillFormat.idl b/oovbaapi/org/openoffice/msforms/XFillFormat.idl
new file mode 100644
index 0000000000..84f7e27b4f
--- /dev/null
+++ b/oovbaapi/org/openoffice/msforms/XFillFormat.idl
@@ -0,0 +1,58 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XFillFormat.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 12:14:52 $
+ *
+ * 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 __org_openoffice_msforms_XFillFormat_idl__
+#define __org_openoffice_msforms_XFillFormat_idl__
+
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
+#ifndef __org_openoffice_msforms_XColorFormat_idl__
+#include <org/openoffice/msforms/XColorFormat.idl>
+#endif
+
+module org { module openoffice { module msforms {
+interface XFillFormat : org::openoffice::vba::XHelperInterface
+{
+ [attribute] boolean Visible;
+ [attribute] double Transparency;
+ void Solid();
+ void TwoColorGradient( [in] long style, [in] long variant );
+ XColorFormat BackColor();
+ XColorFormat ForeColor();
+};
+
+};};};
+#endif
diff --git a/oovbaapi/org/openoffice/msforms/XLabel.idl b/oovbaapi/org/openoffice/msforms/XLabel.idl
new file mode 100644
index 0000000000..06d5841777
--- /dev/null
+++ b/oovbaapi/org/openoffice/msforms/XLabel.idl
@@ -0,0 +1,57 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XLabel.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 12:15:04 $
+ *
+ * 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 __org_openoffice_msforms_XLabel_idl__
+#define __org_openoffice_msforms_XLabel_idl__
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+//=============================================================================
+
+module org { module openoffice { module msforms {
+
+//=============================================================================
+interface XLabel: com::sun::star::uno::XInterface
+{
+ [attribute] string Caption;
+};
+
+//=============================================================================
+
+}; }; };
+
+#endif
+
+
diff --git a/oovbaapi/org/openoffice/msforms/XLineFormat.idl b/oovbaapi/org/openoffice/msforms/XLineFormat.idl
new file mode 100644
index 0000000000..32c0577365
--- /dev/null
+++ b/oovbaapi/org/openoffice/msforms/XLineFormat.idl
@@ -0,0 +1,65 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XLineFormat.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 12:15:14 $
+ *
+ * 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 __org_openoffice_msforms_XLineFormat_idl__
+#define __org_openoffice_msforms_XLineFormat_idl__
+
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
+#ifndef __org_openoffice_msforms_XColorFormat_idl__
+#include <org/openoffice/msforms/XColorFormat.idl>
+#endif
+
+module org { module openoffice { module msforms {
+interface XLineFormat : org::openoffice::vba::XHelperInterface
+{
+ [attribute] long BeginArrowheadStyle;
+ [attribute] long BeginArrowheadLength;
+ [attribute] long BeginArrowheadWidth;
+ [attribute] long EndArrowheadStylel;
+ [attribute] long EndArrowheadLength;
+ [attribute] long EndArrowheadWidth;
+ [attribute] double Weight;
+ [attribute] boolean Visible;
+ [attribute] double Transparency;
+ [attribute] short Style;
+ [attribute] long DashStyle;
+ XColorFormat BackColor();
+ XColorFormat ForeColor();
+};
+}; }; };
+
+#endif
diff --git a/oovbaapi/org/openoffice/msforms/XListBox.idl b/oovbaapi/org/openoffice/msforms/XListBox.idl
new file mode 100644
index 0000000000..5eed94917a
--- /dev/null
+++ b/oovbaapi/org/openoffice/msforms/XListBox.idl
@@ -0,0 +1,64 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XListBox.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 12:15:24 $
+ *
+ * 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 __org_openoffice_msforms_XListBox_idl__
+#define __org_openoffice_msforms_XListBox_idl__
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+//=============================================================================
+
+module org { module openoffice { module msforms {
+
+
+//=============================================================================
+interface XListBox: com::sun::star::uno::XInterface
+{
+ [attribute] any Value;
+ [attribute] string Text;
+ [attribute] boolean MultiSelect;
+ //[attribute] sequence< boolean > Selected;
+ void AddItem( [in] any pvargItem, [in] any pvargIndex );
+ void Clear();
+ any Selected( [in] long index );
+};
+
+//=============================================================================
+
+}; }; };
+
+#endif
+
+
diff --git a/oovbaapi/org/openoffice/msforms/XPictureFormat.idl b/oovbaapi/org/openoffice/msforms/XPictureFormat.idl
new file mode 100644
index 0000000000..2c34a2a574
--- /dev/null
+++ b/oovbaapi/org/openoffice/msforms/XPictureFormat.idl
@@ -0,0 +1,53 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XPictureFormat.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 12:15:34 $
+ *
+ * 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 __org_openoffice_msforms_XPictureFormat_idl__
+#define __org_openoffice_msforms_XPictureFormat_idl__
+
+
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
+module org { module openoffice { module msforms {
+interface XPictureFormat : org::openoffice::vba::XHelperInterface
+{
+ [attribute] double Brightness;
+ [attribute] double Contrast;
+ void IncrementBrightness( [in] double increment );
+ void IncrementContrast( [in] double increment );
+};
+}; }; };
+
+#endif
diff --git a/oovbaapi/org/openoffice/msforms/XRadioButton.idl b/oovbaapi/org/openoffice/msforms/XRadioButton.idl
new file mode 100644
index 0000000000..0953e5bc3f
--- /dev/null
+++ b/oovbaapi/org/openoffice/msforms/XRadioButton.idl
@@ -0,0 +1,58 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XRadioButton.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 12:15:44 $
+ *
+ * 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 __org_openoffice_msforms_XRadioButton_idl__
+#define __org_openoffice_msforms_XRadioButton_idl__
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+//=============================================================================
+
+module org { module openoffice { module msforms {
+
+//=============================================================================
+interface XRadioButton: com::sun::star::uno::XInterface
+{
+ [attribute] string Caption;
+ [attribute] boolean Value;
+};
+
+//=============================================================================
+
+}; }; };
+
+#endif
+
+
diff --git a/oovbaapi/org/openoffice/msforms/XTextBox.idl b/oovbaapi/org/openoffice/msforms/XTextBox.idl
new file mode 100644
index 0000000000..22ff9d2a1f
--- /dev/null
+++ b/oovbaapi/org/openoffice/msforms/XTextBox.idl
@@ -0,0 +1,60 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XTextBox.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 12:16:25 $
+ *
+ * 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 __org_openoffice_msforms_XTextBox_idl__
+#define __org_openoffice_msforms_XTextBox_idl__
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+//=============================================================================
+
+module org { module openoffice { module msforms {
+
+//=============================================================================
+interface XTextBox: com::sun::star::uno::XInterface
+{
+ [attribute] string Text;
+// [attribute] any Value;
+ [attribute] long MaxLength;
+ [attribute] boolean Multiline;
+};
+
+//=============================================================================
+
+}; }; };
+
+#endif
+
+