summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-12-13 10:44:11 +0000
committerKurt Zenker <kz@openoffice.org>2006-12-13 10:44:11 +0000
commitfe8b7511e7b4902f560e0e31484b899878d822f8 (patch)
tree9dab51e84796205d4869d27895e78781cba13510
parent8f14ab3febe365af53c3ba6aa2e848875b2256cc (diff)
INTEGRATION: CWS oihelp (1.2.156); FILE MERGED
2006/11/14 07:57:28 fs 1.2.156.1: #i71485# constructors
-rw-r--r--offapi/com/sun/star/form/inspection/DefaultFormComponentInspectorModel.idl43
1 files changed, 39 insertions, 4 deletions
diff --git a/offapi/com/sun/star/form/inspection/DefaultFormComponentInspectorModel.idl b/offapi/com/sun/star/form/inspection/DefaultFormComponentInspectorModel.idl
index 44752d38c5cb..fa8cc05934d3 100644
--- a/offapi/com/sun/star/form/inspection/DefaultFormComponentInspectorModel.idl
+++ b/offapi/com/sun/star/form/inspection/DefaultFormComponentInspectorModel.idl
@@ -4,9 +4,9 @@
*
* $RCSfile: DefaultFormComponentInspectorModel.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: vg $ $Date: 2006-03-14 11:03:06 $
+ * last change: $Author: kz $ $Date: 2006-12-13 11:44:11 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -38,6 +38,9 @@
#ifndef __com_sun_star_inspection_XObjectInspectorModel_idl__
#include <com/sun/star/inspection/XObjectInspectorModel.idl>
#endif
+#ifndef __com_sun_star_lang_IllegalArgumentException_idl__
+#include <com/sun/star/lang/IllegalArgumentException.idl>
+#endif
//=============================================================================
@@ -62,9 +65,41 @@ module com { module sun { module star { module form { module inspection {
@see com::sun::star::inspection::XObjectInspectorModel::HandlerFactories
*/
-service DefaultFormComponentInspectorModel
+service DefaultFormComponentInspectorModel : com::sun::star::inspection::XObjectInspectorModel
{
- interface com::sun::star::inspection::XObjectInspectorModel;
+ /** creates a default DefaultFormComponentInspectorModel, providing factories for all
+ handlers listed above.
+
+ @since OOo 2.2
+ */
+ createDefault();
+
+ /** creates a default DefaultFormComponentInspectorModel, providing factories for all
+ handlers listed above, and describing an ObjectInspector which has a help section.
+
+ @param minHelpTextLines
+ denotes the minimum number of lines of text to be reserved for the help
+ section.
+
+ @param maxHelpTextLines
+ denotes the maximum number of lines of text to be reserved for the help
+ section.
+
+ @throws ::com::sun::star::lang::IllegalArgumentException
+ if <arg>minHelpTextLines</arg> or <arg>maxHelpTextLines</arg> are negative,
+ or if <arg>minHelpTextLines</arg> is greater than <arg>maxHelpTextLines</arg>.
+
+ @see XObjectInspectorModel::HasHelpSection
+ @see XObjectInspectorModel::MinHelpTextLines
+ @see XObjectInspectorModel::MaxHelpTextLines
+
+ @since OOo 2.2
+ */
+ createWithHelpSection(
+ [in] long minHelpTextLines,
+ [in] long maxHelpTextLines
+ )
+ raises ( ::com::sun::star::lang::IllegalArgumentException );
};
//=============================================================================