summaryrefslogtreecommitdiff
path: root/oovbaapi/org
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-12-07 10:20:59 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-12-07 10:20:59 +0000
commit8629b47b4ea10b83a21568b0ba309ac81c8ec018 (patch)
tree4d7d599f174e1508c748c2ad8b0fdaadbf653231 /oovbaapi/org
parentb57353c665a91ce11f03bbb0a6d53432d1eb2c79 (diff)
INTEGRATION: CWS npower8 (1.1.2); FILE ADDED
2007/09/03 13:23:56 npower 1.1.2.1: #i77189# sync with oobuild
Diffstat (limited to 'oovbaapi/org')
-rw-r--r--oovbaapi/org/openoffice/excel/Workbook.idl54
-rw-r--r--oovbaapi/org/openoffice/excel/Worksheet.idl58
2 files changed, 112 insertions, 0 deletions
diff --git a/oovbaapi/org/openoffice/excel/Workbook.idl b/oovbaapi/org/openoffice/excel/Workbook.idl
new file mode 100644
index 000000000000..2201d96126d0
--- /dev/null
+++ b/oovbaapi/org/openoffice/excel/Workbook.idl
@@ -0,0 +1,54 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: Workbook.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 11:20:51 $
+ *
+ * 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_Workbook_idl__
+#define __org_openoffice_excel_Workbook_idl__
+
+#ifndef __org_openoffice_excel_XWorkbook_idl__
+#include <org/openoffice/excel/XWorkbook.idl>
+#endif
+
+#include <com/sun/star/uno/XComponentContext.idl>
+#include <com/sun/star/frame/XModel.idl>
+
+module org { module openoffice { module excel {
+service Workbook : XWorkbook
+{
+ createWorkbook( [in] ::org::openoffice::vba::XHelperInterface Parent, [in] ::com::sun::star::frame::XModel xModel );
+};
+
+}; }; };
+
+#endif
diff --git a/oovbaapi/org/openoffice/excel/Worksheet.idl b/oovbaapi/org/openoffice/excel/Worksheet.idl
new file mode 100644
index 000000000000..e0828aecae6a
--- /dev/null
+++ b/oovbaapi/org/openoffice/excel/Worksheet.idl
@@ -0,0 +1,58 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: Worksheet.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2007-12-07 11:20:59 $
+ *
+ * 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_Worksheet_idl__
+#define __org_openoffice_excel_Worksheet_idl__
+
+#ifndef __org_openoffice_excel_XWorksheet_idl__
+#include <org/openoffice/excel/XWorksheet.idl>
+#endif
+
+#ifndef __com_sun_star_sheet_XComponentContext_idl__
+#include <com/sun/star/uno/XComponentContext.idl>
+#endif
+#ifndef __com_sun_star_frame_XModel_idl__
+#include <com/sun/star/frame/XModel.idl>
+#endif
+
+module org { module openoffice { module excel {
+service Worksheet : XWorksheet
+{
+ createWorksheet( [in] ::org::openoffice::vba::XHelperInterface Parent, [in] ::com::sun::star::frame::XModel xModel, [in] string SheetName );
+};
+
+}; }; };
+
+#endif