]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/FileDialog.h
* src/frontends/qt4/GuiSelection.C
[lyx.git] / src / frontends / FileDialog.h
index c4e4c4cd1b9eb14b8273cceebac2d13fdb83949d..ddf73a2b87bca7a9be14a082e6822200dee0a060 100644 (file)
 #define FILEDIALOG_H
 
 #include "lfuns.h"
+#include "support/docstring.h"
 
 #include <utility>
 #include <string>
 
 
 namespace lyx {
-namespace support {
-
-class FileFilterList;
-
-} // namespace support
-} // namespace lyx
 
+namespace support { class FileFilterList; } 
 
 
 /**
@@ -37,7 +33,7 @@ class FileDialog
 {
 public:
        /// label, directory path button
-       typedef std::pair<std::string, std::string> Button;
+       typedef std::pair<docstring, docstring> Button;
 
        /// result type
        enum ResultType {
@@ -46,7 +42,7 @@ public:
        };
 
        /// result return
-       typedef std::pair<FileDialog::ResultType, std::string> Result;
+       typedef std::pair<FileDialog::ResultType, docstring> Result;
 
        /**
         * Constructs a file dialog with title \param title.
@@ -59,27 +55,27 @@ public:
         * additional directories in the navigation (an empty
         * directory is interpreted as getcwd())
         */
-       FileDialog(std::string const & title,
+       FileDialog(docstring const & title,
                   kb_action a = LFUN_SELECT_FILE_SYNC,
-                  Button b1 = Button(std::string(), std::string()),
-                  Button b2 = Button(std::string(), std::string()));
+                  Button b1 = Button(docstring(), docstring()),
+                  Button b2 = Button(docstring(), docstring()));
 
 
        ~FileDialog();
 
        /// Choose a file for opening, starting in directory \c path.
-       Result const open(std::string const & path,
-                         lyx::support::FileFilterList const & filters,
-                         std::string const & suggested);
+       Result const open(docstring const & path,
+                         support::FileFilterList const & filters,
+                         docstring const & suggested);
 
        /// Choose a directory, starting in directory \c path.
-       Result const opendir(std::string const & path = std::string(),
-                            std::string const & suggested = std::string());
+       Result const opendir(docstring const & path = docstring(),
+                            docstring const & suggested = docstring());
 
        /// Choose a file for saving, starting in directory \c  path.
-       Result const save(std::string const & path,
-                         lyx::support::FileFilterList const & filters,
-                         std::string const & suggested);
+       Result const save(docstring const & path,
+                         support::FileFilterList const & filters,
+                         docstring const & suggested);
 
 private:
        class Private;
@@ -87,11 +83,12 @@ private:
        Private * private_;
 
        /// the dialog title
-       std::string title_;
+       docstring title_;
 
        /// success action to perform if not synchronous
        kb_action success_;
-
 };
 
+} // namespace lyx
+
 #endif // FILEDIALOG_H