diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-12-07 11:16:25 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-12-07 11:16:25 +0000 |
commit | a09fe115a940726640a8c7fd7015f11b9828e527 (patch) | |
tree | a8cd9f71efb3fe26d7d2f4a2376aa1ee76622856 /oovbaapi | |
parent | 9552710cca587f0264b6342c0a5af034dda726b7 (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.idl | 68 | ||||
-rw-r--r-- | oovbaapi/org/openoffice/msforms/XFillFormat.idl | 58 | ||||
-rw-r--r-- | oovbaapi/org/openoffice/msforms/XLabel.idl | 57 | ||||
-rw-r--r-- | oovbaapi/org/openoffice/msforms/XLineFormat.idl | 65 | ||||
-rw-r--r-- | oovbaapi/org/openoffice/msforms/XListBox.idl | 64 | ||||
-rw-r--r-- | oovbaapi/org/openoffice/msforms/XPictureFormat.idl | 53 | ||||
-rw-r--r-- | oovbaapi/org/openoffice/msforms/XRadioButton.idl | 58 | ||||
-rw-r--r-- | oovbaapi/org/openoffice/msforms/XTextBox.idl | 60 |
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 000000000000..3a91cd4c14b0 --- /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 000000000000..84f7e27b4fd6 --- /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 000000000000..b1b7ea395158 --- /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 000000000000..32c057736573 --- /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 000000000000..adc0748bd5d3 --- /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 000000000000..2c34a2a5745c --- /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 000000000000..4ea2a8a01eba --- /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 000000000000..9e25a93eb31f --- /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 + + |