]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/FileDialog.h
fix rbearing
[lyx.git] / src / frontends / FileDialog.h
index 1d6a6159259c53a68d596fb4d475fd4a90c2d541..40f154f0558b3c9bc54fe53882bb847cf32066f3 100644 (file)
@@ -1,11 +1,13 @@
 // -*- C++ -*-
 /**
  * \file FileDialog.h
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author unknown
  * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FILEDIALOG_H
@@ -15,7 +17,6 @@
 #pragma interface
 #endif
 
-#include <config.h>
 #include <utility>
 
 #include "commandtags.h"
@@ -45,26 +46,29 @@ public:
 
        /**
         * Constructs a file dialog attached to LyXView \param lv, with
-        * title \param title. If param \a is \const LFUN_SELECT_FILE_SYNC
+        * title \param title. If \param a is \const LFUN_SELECT_FILE_SYNC
         * then a value will be returned immediately upon performing a Select(),
         * otherwise a callback Dispatch() will be invoked with the filename as
         * argument, of action \param a.
         *
-        * Up to two optional extra buttons are allowed for specifying addtional
-        * directories in the navigation.
+        * Up to two optional extra buttons are allowed for specifying
+        * additional directories in the navigation (an empty
+        * directory is interpreted as getcwd())
         */
-       FileDialog(LyXView * lv, string const & title, kb_action a = LFUN_SELECT_FILE_SYNC,
-               Button b1 = Button(string(), string()),
-               Button b2 = Button(string(), string()));
-                       
+       FileDialog(LyXView * lv, string const & title,
+                  kb_action a = LFUN_SELECT_FILE_SYNC,
+                  Button b1 = Button(string(), string()),
+                  Button b2 = Button(string(), string()));
+
 
        ~FileDialog();
 
        /**
-        * Choose a file for selection, starting in directory \param path, with the file
-        * selection \param mask. The \param mask string is of the form :
+        * Choose a file for selection, starting in directory \param
+        * path, with the file selection \param mask. The \param mask
+        * string is of the form :
         *
-        * <regular expression to match> | <description>
+        * <glob to match> | <description>
         *
         * for example, "*.ps | PostScript files (*.ps)".
         *