summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/ui
diff options
context:
space:
mode:
authorTino Rachui <tra@openoffice.org>2002-07-12 12:11:27 +0000
committerTino Rachui <tra@openoffice.org>2002-07-12 12:11:27 +0000
commit2d031fb947b8f6e05a1e96cd734dc525f8507370 (patch)
tree8e5c5e95893db9e94eec860247bfb39f7ba335e2 /offapi/com/sun/star/ui
parent887cadc8cb1d29d76957c7821126495658ff092b (diff)
#96930#added XControlAccess and XControlInformation as optional
Diffstat (limited to 'offapi/com/sun/star/ui')
-rw-r--r--offapi/com/sun/star/ui/dialogs/FilePicker.idl27
-rw-r--r--offapi/com/sun/star/ui/dialogs/FolderPicker.idl27
2 files changed, 50 insertions, 4 deletions
diff --git a/offapi/com/sun/star/ui/dialogs/FilePicker.idl b/offapi/com/sun/star/ui/dialogs/FilePicker.idl
index 5514b0ede1ce..67a92b4be5de 100644
--- a/offapi/com/sun/star/ui/dialogs/FilePicker.idl
+++ b/offapi/com/sun/star/ui/dialogs/FilePicker.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: FilePicker.idl,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: fs $ $Date: 2001-10-26 08:49:29 $
+ * last change: $Author: tra $ $Date: 2002-07-12 13:11:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -100,6 +100,8 @@ interface XFilePickerControlAccess;
interface XFilterManager;
interface XFilePreview;
interface XFilterGroupManager;
+interface XControlInformation;
+interface XControlAccess;
service FilePicker
{
@@ -164,6 +166,27 @@ service FilePicker
[optional] interface com::sun::star::util::XCancellable;
//-------------------------------------------------------------------------
+ /** Use this interface to query for the controls and control
+ properties supported.
+ */
+ [optional] interface com::sun::star::ui::dialogs::XControlInformation;
+
+ //-------------------------------------------------------------------------
+ /** Use this interface to query for or modify the properties of the
+ supported controls.
+
+ The following controls and control properties are currently supported:
+
+ Control name Control
+ property Value type Description
+ ---------------------------------------------------------------------------------
+ "HelpButton" "State" boolean Enable the button with a value
+ of true, disable the button
+ with a value of false
+ */
+ [optional] interface com::sun::star::ui::dialogs::XControlAccess;
+
+ //-------------------------------------------------------------------------
/** for shutdown and listener support.
*/
interface com::sun::star::lang::XComponent;
diff --git a/offapi/com/sun/star/ui/dialogs/FolderPicker.idl b/offapi/com/sun/star/ui/dialogs/FolderPicker.idl
index 9018cf6d4dc4..608de713fa54 100644
--- a/offapi/com/sun/star/ui/dialogs/FolderPicker.idl
+++ b/offapi/com/sun/star/ui/dialogs/FolderPicker.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: FolderPicker.idl,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: tra $ $Date: 2001-10-09 08:10:29 $
+ * last change: $Author: tra $ $Date: 2002-07-12 13:11:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -85,6 +85,8 @@ module com { module sun { module star { module ui { module dialogs {
//=============================================================================
interface XFolderPicker;
+interface XControlInformation;
+interface XControlAccess;
//=============================================================================
/** A FolderPicker service.
@@ -114,6 +116,27 @@ service FolderPicker
/** For canceling a running dialog instance.
*/
[optional] interface com::sun::star::util::XCancellable;
+
+ //-------------------------------------------------------------------------
+ /** Use this interface to query for the controls and control
+ properties supported.
+ */
+ [optional] interface com::sun::star::ui::dialogs::XControlInformation;
+
+ //-------------------------------------------------------------------------
+ /** Use this interface to query for or modify the properties of the
+ supported controls.
+
+ The following controls and control properties are currently supported:
+
+ Control name Control
+ property Value type Description
+ ---------------------------------------------------------------------------------
+ "HelpButton" "State" boolean Enable the button with a value
+ of true, disable the button
+ with a value of false
+ */
+ [optional] interface com::sun::star::ui::dialogs::XControlAccess;
};
//=============================================================================