summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/ui/dialogs/XFolderPicker.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/ui/dialogs/XFolderPicker.idl')
-rw-r--r--offapi/com/sun/star/ui/dialogs/XFolderPicker.idl29
1 files changed, 18 insertions, 11 deletions
diff --git a/offapi/com/sun/star/ui/dialogs/XFolderPicker.idl b/offapi/com/sun/star/ui/dialogs/XFolderPicker.idl
index 1f65d6f70..96a79df08 100644
--- a/offapi/com/sun/star/ui/dialogs/XFolderPicker.idl
+++ b/offapi/com/sun/star/ui/dialogs/XFolderPicker.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XFolderPicker.idl,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: tra $ $Date: 2001-08-30 10:21:21 $
+ * last change: $Author: mi $ $Date: 2002-10-03 13:10:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -89,10 +89,10 @@ interface XFolderPicker: com::sun::star::ui::dialogs::XExecutableDialog
chooses if the specified root directory doesn't exist.
@param aDirectory
- Specifies the root directory in url format.
+ Specifies the root directory in url format, conform to <a href="http://www.w3.org/Addressing/rfc1738.txt">Rfc1738</a>.
- @throws ::com::sun::star::lang::IllegalArgumentException
- If the given url is invalid.
+ @throws com::sun::star::lang::IllegalArgumentException
+ if the given url is invalid.
*/
void setDisplayDirectory( [in] string aDirectory )
raises( ::com::sun::star::lang::IllegalArgumentException );
@@ -103,23 +103,24 @@ interface XFolderPicker: com::sun::star::ui::dialogs::XExecutableDialog
or the previously specified root directory doesn't exist.
@returns
- The the directory in url format.
+ The the directory in url format.
*/
string getDisplayDirectory();
//-------------------------------------------------------------------------
- /** Returns the selected directory as url.
+ /** Returns the selected directory as url conform to <a href="http://www.w3.org/Addressing/rfc1738.txt">Rfc1738</a>.
@returns
- The selected directory as url if the user did close the dialog with ok
- else the returned value is undefined.
+ The selected directory as url if the user did close the dialog with ok
+ else the returned value is undefined.
*/
string getDirectory( );
//-------------------------------------------------------------------------
/** The implementation may optionally show the given text as a description
- for the user. If the client doesn't set a description the dialog may
- show a default description.
+ for the user within the dialog, e.g. "Please select a directory".
+ If the client doesn't set a description the dialog may show a default
+ description.
*/
void setDescription( [in] string aDescription );
};
@@ -131,6 +132,12 @@ interface XFolderPicker: com::sun::star::ui::dialogs::XExecutableDialog
/*=============================================================================
$Log: not supported by cvs2svn $
+ Revision 1.1.6.1 2002/01/30 11:44:29 tra
+ #97073#reviewd
+
+ Revision 1.1 2001/08/30 10:21:21 tra
+ #88584#moved from drafts
+
Revision 1.3 2001/06/26 13:20:04 tra
#88797#added a method to set a description