summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-12-07 10:30:03 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-12-07 10:30:03 +0000
commit0aa4c1998b2801e45b5f3d59ed42a884f27817eb (patch)
treebbf146a955e13021d8d56959fa08b0482f49091d /oovbaapi
parent2bd6ea508468b99452a0cea9d8b819da749edbbe (diff)
INTEGRATION: CWS npower8 (1.2.2); FILE MERGED
2007/07/18 13:46:58 npower 1.2.2.2: #i77189# sync ooo-build and this module 2007/05/10 11:22:17 npower 1.2.2.1: #i77189# idl
Diffstat (limited to 'oovbaapi')
-rw-r--r--oovbaapi/org/openoffice/excel/XDialogs.idl22
-rw-r--r--oovbaapi/org/openoffice/excel/XFont.idl12
-rw-r--r--oovbaapi/org/openoffice/excel/XInterior.idl12
-rw-r--r--oovbaapi/org/openoffice/excel/XOutline.idl13
-rw-r--r--oovbaapi/org/openoffice/excel/XPivotCache.idl12
-rw-r--r--oovbaapi/org/openoffice/excel/XPivotTable.idl13
-rw-r--r--oovbaapi/org/openoffice/excel/XPivotTables.idl12
-rw-r--r--oovbaapi/org/openoffice/excel/XSeries.idl12
-rw-r--r--oovbaapi/org/openoffice/excel/XSeriesCollection.idl9
-rw-r--r--oovbaapi/org/openoffice/excel/XValidation.idl12
-rw-r--r--oovbaapi/org/openoffice/excel/XWindows.idl12
-rw-r--r--oovbaapi/org/openoffice/excel/XWorkbooks.idl12
-rw-r--r--oovbaapi/org/openoffice/excel/XWorksheetFunction.idl21
13 files changed, 129 insertions, 45 deletions
diff --git a/oovbaapi/org/openoffice/excel/XDialogs.idl b/oovbaapi/org/openoffice/excel/XDialogs.idl
index 7fe450f866..74cf54392a 100644
--- a/oovbaapi/org/openoffice/excel/XDialogs.idl
+++ b/oovbaapi/org/openoffice/excel/XDialogs.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XDialogs.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:41:00 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:24:34 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -38,20 +38,28 @@
#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
-
+
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
//=============================================================================
module org { module openoffice { module excel {
-
+interface XApplication;
//=============================================================================
-interface XDialogs : ::org::openoffice::vba::XCollection
+//interface XDialogs : ::org::openoffice::vba::XCollection
+interface XDialogs
{
- void Dummy();
+ interface ::org::openoffice::vba::XHelperInterface;
+
+ [attribute, readonly] long Count;
+
+ any Item( [in] any Index );
};
}; }; };
diff --git a/oovbaapi/org/openoffice/excel/XFont.idl b/oovbaapi/org/openoffice/excel/XFont.idl
index d17a2ba803..02f10c4227 100644
--- a/oovbaapi/org/openoffice/excel/XFont.idl
+++ b/oovbaapi/org/openoffice/excel/XFont.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XFont.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:41:13 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:24:48 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -42,18 +42,24 @@
#include <com/sun/star/lang/IndexOutOfBoundsException.idl>
#endif
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
//=============================================================================
module org { module openoffice { module excel {
-interface XFont: com::sun::star::uno::XInterface
+interface XFont
{
+ interface ::org::openoffice::vba::XHelperInterface;
+
[attribute] any Size;
[attribute] any StandardFontSize;
[attribute] any StandardFont;
[attribute] any FontStyle;
[attribute] any ColorIndex;
+ [attribute] any Color;
[attribute] any Bold;
[attribute] any Underline;
[attribute] any Strikethrough;
diff --git a/oovbaapi/org/openoffice/excel/XInterior.idl b/oovbaapi/org/openoffice/excel/XInterior.idl
index 79860fa684..a2724bfa12 100644
--- a/oovbaapi/org/openoffice/excel/XInterior.idl
+++ b/oovbaapi/org/openoffice/excel/XInterior.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XInterior.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:41:24 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:25:31 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,6 +39,10 @@
#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 {
@@ -46,8 +50,10 @@ module org { module openoffice { module excel {
//=============================================================================
-interface XInterior: com::sun::star::uno::XInterface
+interface XInterior
{
+ interface ::org::openoffice::vba::XHelperInterface;
+
[attribute] any Color;
[attribute] any ColorIndex;
};
diff --git a/oovbaapi/org/openoffice/excel/XOutline.idl b/oovbaapi/org/openoffice/excel/XOutline.idl
index c1b58d35f9..78294c98f6 100644
--- a/oovbaapi/org/openoffice/excel/XOutline.idl
+++ b/oovbaapi/org/openoffice/excel/XOutline.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XOutline.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:41:35 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:26:25 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,6 +39,10 @@
#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 {
@@ -46,8 +50,11 @@ module org { module openoffice { module excel {
//=============================================================================
-interface XOutline: com::sun::star::uno::XInterface
+interface XOutline
{
+
+ interface ::org::openoffice::vba::XHelperInterface;
+
//Methods
void ShowLevels([in] any RowLevels,[in] any ColumnLevels);
diff --git a/oovbaapi/org/openoffice/excel/XPivotCache.idl b/oovbaapi/org/openoffice/excel/XPivotCache.idl
index b5ef2f4645..56b68e5246 100644
--- a/oovbaapi/org/openoffice/excel/XPivotCache.idl
+++ b/oovbaapi/org/openoffice/excel/XPivotCache.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XPivotCache.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:41:46 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:26:49 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,14 +39,20 @@
#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 XPivotCache: com::sun::star::uno::XInterface
+interface XPivotCache
{
+ interface ::org::openoffice::vba::XHelperInterface;
+
void Refresh();
};
diff --git a/oovbaapi/org/openoffice/excel/XPivotTable.idl b/oovbaapi/org/openoffice/excel/XPivotTable.idl
index 16bb4889af..f1b15987c9 100644
--- a/oovbaapi/org/openoffice/excel/XPivotTable.idl
+++ b/oovbaapi/org/openoffice/excel/XPivotTable.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XPivotTable.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:41:57 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:27:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -42,14 +42,21 @@
#include <org/openoffice/excel/XPivotCache.idl>
#endif
+#ifndef __org_openoffice_vba__XHelperInterface_idl__
+#define __org_openoffice_vba__XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
//=============================================================================
module org { module openoffice { module excel {
//=============================================================================
-interface XPivotTable: com::sun::star::uno::XInterface
+//interface XPivotTable: com::sun::star::uno::XInterface
+interface XPivotTable
{
+ interface org::openoffice::vba::XHelperInterface;
XPivotCache PivotCache();
};
diff --git a/oovbaapi/org/openoffice/excel/XPivotTables.idl b/oovbaapi/org/openoffice/excel/XPivotTables.idl
index c60ecbc9b1..b57e056740 100644
--- a/oovbaapi/org/openoffice/excel/XPivotTables.idl
+++ b/oovbaapi/org/openoffice/excel/XPivotTables.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XPivotTables.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:42:19 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:27:16 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,13 +39,19 @@
#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 XPivotTables: ::com::sun::star::uno::XInterface
+interface XPivotTables
{
+
+ interface org::openoffice::vba::XCollection;
// PivotCache should be a PivotCache object ( but thats not defined
// yet )
//XPivotTable Add( [in] any PivotCache, [in] any TableDestination, [in] any TableName, [in] any ReadData );
diff --git a/oovbaapi/org/openoffice/excel/XSeries.idl b/oovbaapi/org/openoffice/excel/XSeries.idl
index 5a401d59f9..9f3d2b801d 100644
--- a/oovbaapi/org/openoffice/excel/XSeries.idl
+++ b/oovbaapi/org/openoffice/excel/XSeries.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XSeries.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:42:42 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:27:42 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,14 +39,20 @@
#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 XSeries: com::sun::star::uno::XInterface
+interface XSeries
{
+ interface ::org::openoffice::vba::XHelperInterface;
+
[attribute, readonly] string Name;
any Series( [in] any Item );
any Values ( [in] any Values );
diff --git a/oovbaapi/org/openoffice/excel/XSeriesCollection.idl b/oovbaapi/org/openoffice/excel/XSeriesCollection.idl
index 692eb190cd..727b3525e7 100644
--- a/oovbaapi/org/openoffice/excel/XSeriesCollection.idl
+++ b/oovbaapi/org/openoffice/excel/XSeriesCollection.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XSeriesCollection.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:42:53 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:27:55 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -47,8 +47,9 @@ module org { module openoffice { module excel {
interface XSeries;
//=============================================================================
-interface XSeriesCollection: ::org::openoffice::vba::XCollection
-{
+interface XSeriesCollection
+{
+ interface ::org::openoffice::vba::XCollection;
//XSeries Add( [in] any Source, [in] any RowCol, [in] any SeriesLabels,
// [in] any CategoryLabels, [in] any Replace );
XSeries NewSeries();
diff --git a/oovbaapi/org/openoffice/excel/XValidation.idl b/oovbaapi/org/openoffice/excel/XValidation.idl
index a453aef177..a522c1a649 100644
--- a/oovbaapi/org/openoffice/excel/XValidation.idl
+++ b/oovbaapi/org/openoffice/excel/XValidation.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XValidation.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:43:11 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:28:50 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,14 +39,20 @@
#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 XValidation: com::sun::star::uno::XInterface
+interface XValidation
{
+ interface ::org::openoffice::vba::XHelperInterface;
+
[attribute] boolean IgnoreBlank;
[attribute] boolean InCellDropdown;
[attribute] boolean ShowInput;
diff --git a/oovbaapi/org/openoffice/excel/XWindows.idl b/oovbaapi/org/openoffice/excel/XWindows.idl
index 438f8e0040..853f8eda20 100644
--- a/oovbaapi/org/openoffice/excel/XWindows.idl
+++ b/oovbaapi/org/openoffice/excel/XWindows.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XWindows.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:44:39 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:29:16 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,13 +39,19 @@
#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 XWindows: ::com::sun::star::uno::XInterface
+interface XWindows
{
+ interface ::org::openoffice::vba::XCollection;
+
void Arrange( [in] long ArrangeStyle, [in] any ActiveWorkbook, [in] any SyncHorizontal, [in] any SyncVertical );
};
diff --git a/oovbaapi/org/openoffice/excel/XWorkbooks.idl b/oovbaapi/org/openoffice/excel/XWorkbooks.idl
index de348c9466..93c5b48e72 100644
--- a/oovbaapi/org/openoffice/excel/XWorkbooks.idl
+++ b/oovbaapi/org/openoffice/excel/XWorkbooks.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XWorkbooks.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:45:06 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:29:40 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,14 +39,20 @@
#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 XWorkbooks : ::com::sun::star::uno::XInterface
+interface XWorkbooks
{
+ interface ::org::openoffice::vba::XCollection;
any Add();
any Open([in] string Filename, [in] any UpdateLinks, [in] any ReadOnly, [in] any Format, [in] any Password, [in] any WriteResPassword, [in] any IgnoreReadOnlyRecommended, [in] any Origin, [in] any Delimiter, [in] any Editable, [in] any Notify, [in] any Converter, [in] any AddToMru);
diff --git a/oovbaapi/org/openoffice/excel/XWorksheetFunction.idl b/oovbaapi/org/openoffice/excel/XWorksheetFunction.idl
index a61e4a2a5a..5fe187c1bb 100644
--- a/oovbaapi/org/openoffice/excel/XWorksheetFunction.idl
+++ b/oovbaapi/org/openoffice/excel/XWorksheetFunction.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: XWorksheetFunction.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2007-04-27 07:45:32 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:30:03 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,6 +39,17 @@
#include <com/sun/star/uno/XInterface.idl>
#endif
+#ifndef __org_openoffice_vba_XHelperInterface_idl__
+#include <org/openoffice/vba/XHelperInterface.idl>
+#endif
+
+#ifndef __com_sun_star_beans_XExactName_idl__
+#include <com/sun/star/beans/XExactName.idl>
+#endif
+
+#ifndef __com_sun_star_script_XInvocation_idl__
+#include <com/sun/star/script/XInvocation.idl>
+#endif
//=============================================================================
module org { module openoffice { module excel {
@@ -46,9 +57,11 @@ module org { module openoffice { module excel {
//=============================================================================
-interface XWorksheetFunction: com::sun::star::uno::XInterface
+interface XWorksheetFunction
{
- void dummy();
+ interface ::org::openoffice::vba::XHelperInterface;
+ interface ::com::sun::star::beans::XExactName;
+ interface ::com::sun::star::script::XInvocation;
};
//=============================================================================