summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-12-07 10:28:16 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-12-07 10:28:16 +0000
commit1242940827e0b7dcb1c82f7ad4d638e5198d49ff (patch)
treec2e8f4b80a1e1df1f46231ae35037e60344a2d4b /oovbaapi
parent346d71dbb837b2f2aac4318b49abdaf100af7710 (diff)
INTEGRATION: CWS npower8 (1.1.2); FILE ADDED
2007/07/18 22:39:26 npower 1.1.2.1: #i77189# sync ooo-build and this module
Diffstat (limited to 'oovbaapi')
-rw-r--r--oovbaapi/org/openoffice/excel/XFormatCondition.idl89
-rw-r--r--oovbaapi/org/openoffice/excel/XFormatConditions.idl76
-rw-r--r--oovbaapi/org/openoffice/excel/XName.idl74
-rw-r--r--oovbaapi/org/openoffice/excel/XNames.idl62
-rw-r--r--oovbaapi/org/openoffice/excel/XStyle.idl107
-rw-r--r--oovbaapi/org/openoffice/excel/XStyles.idl76
6 files changed, 484 insertions, 0 deletions
diff --git a/oovbaapi/org/openoffice/excel/XFormatCondition.idl b/oovbaapi/org/openoffice/excel/XFormatCondition.idl
new file mode 100644
index 000000000000..c1cd35994f06
--- /dev/null
+++ b/oovbaapi/org/openoffice/excel/XFormatCondition.idl
@@ -0,0 +1,89 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XFormatCondition.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 11:25:09 $
+ *
+ * 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_excel_XFormatCondition_idl__
+#define __org_openoffice_excel_XFormatCondition_idl__
+
+#ifndef __com_sun_star_script_BasicErrorException_idl__
+#include <com/sun/star/script/BasicErrorException.idl>
+#endif
+
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
+module org { module openoffice { module excel {
+
+interface XFont;
+interface XInterior;
+interface XBorders;
+
+interface XFormatCondition
+{
+ interface ::org::openoffice::vba::XHelperInterface;
+
+ void Delete( ) raises ( com::sun::star::script::BasicErrorException );
+
+ /**
+ @param Type
+ @param Operator
+ Optional.
+ @param Formula1
+ Optional.
+ @param Formula2
+ Optional.
+ @return void
+ **/
+ void Modify( [in] long Type, [in] /*Optional*/ any Operator, [in] /*Optional*/ any Formula1, [in] /*Optional*/ any Formula2 ) raises ( com::sun::star::script::BasicErrorException );
+
+ long Type( ) raises ( com::sun::star::script::BasicErrorException );
+
+ long Operator( ) raises ( com::sun::star::script::BasicErrorException );
+
+ string Formula1( ) raises ( com::sun::star::script::BasicErrorException );
+
+ string Formula2( ) raises ( com::sun::star::script::BasicErrorException );
+
+ XInterior Interior( ) raises ( com::sun::star::script::BasicErrorException );
+
+ any Borders( [in] any Index) raises ( com::sun::star::script::BasicErrorException );
+
+ XFont Font( ) raises ( com::sun::star::script::BasicErrorException );
+};
+
+
+}; }; };
+
+#endif
diff --git a/oovbaapi/org/openoffice/excel/XFormatConditions.idl b/oovbaapi/org/openoffice/excel/XFormatConditions.idl
new file mode 100644
index 000000000000..4f809f856e3b
--- /dev/null
+++ b/oovbaapi/org/openoffice/excel/XFormatConditions.idl
@@ -0,0 +1,76 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XFormatConditions.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 11:25:19 $
+ *
+ * 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_excel_XFormatConditions_idl__
+#define __org_openoffice_excel_XFormatConditions_idl__
+
+#ifndef __com_sun_star_script_BasicErrorException_idl__
+#include <com/sun/star/script/BasicErrorException.idl>
+#endif
+
+#ifndef __org_openoffice_vba_XCollection_idl__
+#include <org/openoffice/vba/XCollection.idl>
+#endif
+
+module org { module openoffice { module excel
+{
+
+interface XFormatCondition;
+interface XFormatConditions
+{
+
+ interface org::openoffice::vba::XCollection;
+
+ void Delete( ) raises ( com::sun::star::script::BasicErrorException );
+
+ /**
+ @param Type
+
+ @param Operator
+ Optional.
+ @param Formula1
+ Optional.
+ @param Formula2
+ Optional.
+ @return XFormatCondition
+ **/
+ XFormatCondition Add( [in] long Type, [in] /*Optional*/ any Operator, [in] /*Optional*/ any Formula1, [in] /*Optional*/ any Formula2 ) raises ( com::sun::star::script::BasicErrorException );
+
+
+};
+
+
+}; }; };
+
+#endif
diff --git a/oovbaapi/org/openoffice/excel/XName.idl b/oovbaapi/org/openoffice/excel/XName.idl
new file mode 100644
index 000000000000..bf645eff16ae
--- /dev/null
+++ b/oovbaapi/org/openoffice/excel/XName.idl
@@ -0,0 +1,74 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XName.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 11:25: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_excel_XName_idl__
+#define __org_openoffice_excel_XName_idl__
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
+//=============================================================================
+
+module org { module openoffice { module excel {
+
+//=============================================================================
+
+interface XRange;
+
+interface XName
+{
+ interface ::org::openoffice::vba::XHelperInterface;
+
+ [attribute] string Name;
+ [attribute] string NameLocal;
+ [attribute] boolean Visible;
+ [attribute, readonly] string Value;
+ [attribute, readonly] string RefersTo;
+ [attribute, readonly] string RefersToLocal;
+ [attribute, readonly] string RefersToR1C1;
+ [attribute, readonly] string RefersToR1C1Local;
+ [attribute, readonly] XRange RefersToRange;
+
+ void Delete( );
+};
+
+}; }; };
+
+#endif
+
diff --git a/oovbaapi/org/openoffice/excel/XNames.idl b/oovbaapi/org/openoffice/excel/XNames.idl
new file mode 100644
index 000000000000..4e0ce32f2448
--- /dev/null
+++ b/oovbaapi/org/openoffice/excel/XNames.idl
@@ -0,0 +1,62 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XNames.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 11:25:53 $
+ *
+ * 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_excel_XNames_idl__
+#define __org_openoffice_excel_XNames_idl__
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+
+#ifndef __org_openoffice_vba_XCollection_idl__
+#include <org/openoffice/vba/XCollection.idl>
+#endif
+
+//=============================================================================
+
+module org { module openoffice { module excel {
+
+//=============================================================================
+
+interface XNames
+{
+ interface ::org::openoffice::vba::XCollection;
+
+ any Add( [in] any Name , [in] any RefersTo , [in] any Visible , [in] any MacroType , [in] any ShortcutKey , [in] any Category , [in] any NameLocal , [in] any RefersToLocal , [in] any CategoryLocal , [in] any RefersToR1C1 , [in] any RefersToR1C1Local );
+};
+
+}; }; };
+
+#endif
+
diff --git a/oovbaapi/org/openoffice/excel/XStyle.idl b/oovbaapi/org/openoffice/excel/XStyle.idl
new file mode 100644
index 000000000000..13308e0d49ed
--- /dev/null
+++ b/oovbaapi/org/openoffice/excel/XStyle.idl
@@ -0,0 +1,107 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XStyle.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 11:28:06 $
+ *
+ * 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_excel_XStyle_idl__
+#define __org_openoffice_excel_XStyle_idl__
+
+#ifndef __com_sun_star_script_BasicErrorException_idl__
+#include <com/sun/star/script/BasicErrorException.idl>
+#endif
+
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+#ifndef __org_openoffice_excel_XFormat_idl__
+#include <org/openoffice/excel/XFormat.idl>
+#endif
+
+module org { module openoffice { module excel {
+interface XStyle
+{
+ interface XFormat;
+
+ boolean BuiltIn()
+ raises(com::sun::star::script::BasicErrorException);
+
+ void setName([in] string Name)
+ raises(com::sun::star::script::BasicErrorException);
+
+ string getName()
+ raises(com::sun::star::script::BasicErrorException);
+
+ void setNameLocal([in] string NameLocal)
+ raises(com::sun::star::script::BasicErrorException);
+
+ string getNameLocal()
+ raises(com::sun::star::script::BasicErrorException);
+
+ void Delete()
+ raises(com::sun::star::script::BasicErrorException);
+
+ /** void setValue( [in] string Value ) raises ( com::sun::star::script::BasicErrorException );
+
+ string getValue( ) raises ( com::sun::star::script::BasicErrorException );
+
+ void setIncludeAlignment( [in] boolean IncludeAlignment ) raises ( com::sun::star::script::BasicErrorException );
+
+ boolean getIncludeAlignment( ) raises ( com::sun::star::script::BasicErrorException );
+
+ void setIncludeBorder( [in] boolean IncludeBorder ) raises ( com::sun::star::script::BasicErrorException );
+
+ boolean getIncludeBorder( ) raises ( com::sun::star::script::BasicErrorException );
+
+ void setIncludeFont( [in] boolean IncludeFont ) raises ( com::sun::star::script::BasicErrorException );
+
+ boolean getIncludeFont( ) raises ( com::sun::star::script::BasicErrorException );
+
+ void setIncludeNumber( [in] boolean IncludeNumber ) raises ( com::sun::star::script::BasicErrorException );
+
+ boolean getIncludeNumber( ) raises ( com::sun::star::script::BasicErrorException );
+
+ void setIncludePatterns( [in] boolean IncludePatterns ) raises ( com::sun::star::script::BasicErrorException );
+
+ boolean getIncludePatterns( ) raises ( com::sun::star::script::BasicErrorException );
+
+ void setIncludeProtection( [in] boolean IncludeProtection ) raises ( com::sun::star::script::BasicErrorException );
+
+ boolean getIncludeProtection( ) raises ( com::sun::star::script::BasicErrorException );
+ */
+
+};
+
+}; }; };
+
+#endif
+
diff --git a/oovbaapi/org/openoffice/excel/XStyles.idl b/oovbaapi/org/openoffice/excel/XStyles.idl
new file mode 100644
index 000000000000..05ea8b3f4caf
--- /dev/null
+++ b/oovbaapi/org/openoffice/excel/XStyles.idl
@@ -0,0 +1,76 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XStyles.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 11:28:16 $
+ *
+ * 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_excel_XStyles_idl__
+#define __org_openoffice_excel_XStyles_idl__
+
+#ifndef __com_sun_star_script_BasicErrorException_idl__
+#include <com/sun/star/script/BasicErrorException.idl>
+#endif
+
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
+#ifndef __org_openoffice_vba_XCollection_idl__
+#include <org/openoffice/vba/XCollection.idl>
+#endif
+
+module org { module openoffice { module excel {
+interface XStyle;
+interface XStyles
+{
+ interface ::org::openoffice::vba::XCollection;
+ /**
+ @param Workbook
+ Optional.
+ @return any
+ **/
+ // any Merge( [in] /*Optional*/ any Workbook ) raises ( com::sun::star::script::BasicErrorException );
+
+ /**
+ @param Name
+
+ @param BasedOn
+ Optional.
+ @return XStyle
+ **/
+ XStyle Add([in] string Name, [in] /*Optional*/ any BasedOn)
+ raises (com::sun::star::script::BasicErrorException);
+
+}; }; }; };
+
+#endif
+