From 8629b47b4ea10b83a21568b0ba309ac81c8ec018 Mon Sep 17 00:00:00 2001 From: Vladimir Glazounov Date: Fri, 7 Dec 2007 10:20:59 +0000 Subject: INTEGRATION: CWS npower8 (1.1.2); FILE ADDED 2007/09/03 13:23:56 npower 1.1.2.1: #i77189# sync with oobuild --- oovbaapi/org/openoffice/excel/Workbook.idl | 54 +++++++++++++++++++++++++++ oovbaapi/org/openoffice/excel/Worksheet.idl | 58 +++++++++++++++++++++++++++++ 2 files changed, 112 insertions(+) create mode 100644 oovbaapi/org/openoffice/excel/Workbook.idl create mode 100644 oovbaapi/org/openoffice/excel/Worksheet.idl (limited to 'oovbaapi/org') 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 +#endif + +#include +#include + +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 +#endif + +#ifndef __com_sun_star_sheet_XComponentContext_idl__ +#include +#endif +#ifndef __com_sun_star_frame_XModel_idl__ +#include +#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 -- cgit