]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/FileDialog.cpp
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / FileDialog.cpp
index b9925beaf1c5cdcb3ae8f649cc25bf65df8c409c..c6e8b85c8da0a8cc57a413b2b04ccf133e4a032f 100644 (file)
 
 #include <config.h>
 
-#include "frontends/FileDialog.h"
+#include "FileDialog.h"
 
 #include "LyXFileDialog.h"
 #include "qt_helpers.h"
 
-#include "debug.h"
-#include "gettext.h"
-
+#include "support/debug.h"
 #include "support/FileFilterList.h"
+#include "support/FileName.h"
+#include "support/gettext.h"
 #include "support/os.h"
 
 /** when this is defined, the code will use
@@ -38,7 +38,7 @@
 #endif
 
 #ifdef USE_NATIVE_FILEDIALOG
-#include <qapplication.h>
+#include <QApplication>
 #include "support/filetools.h"
 
 using lyx::support::makeAbsPath;
@@ -48,7 +48,6 @@ namespace lyx {
 
 using support::FileFilterList;
 using support::os::internal_path;
-using std::endl;
 
 
 class FileDialog::Private {
@@ -58,13 +57,9 @@ public:
 };
 
 
-FileDialog::FileDialog(docstring const & t,
-                      kb_action s, Button b1, Button b2)
+FileDialog::FileDialog(QString const & t, FuncCode s)
        : private_(new FileDialog::Private), title_(t), success_(s)
-{
-       private_->b1 = b1;
-       private_->b2 = b2;
-}
+{}
 
 
 FileDialog::~FileDialog()
@@ -73,27 +68,41 @@ FileDialog::~FileDialog()
 }
 
 
-FileDialog::Result const FileDialog::save(docstring const & path,
+void FileDialog::setButton1(QString const & label, QString const & dir)
+{
+       private_->b1.first = label;
+       private_->b1.second = dir;
+}
+
+
+void FileDialog::setButton2(QString const & label, QString const & dir)
+{
+       private_->b2.first = label;
+       private_->b2.second = dir;
+}
+
+
+FileDialog::Result FileDialog::save(QString const & path,
                                          FileFilterList const & filters,
-                                         docstring const & suggested)
+                                         QString const & suggested)
 {
-       LYXERR(Debug::GUI) << "Select with path \"" << to_utf8(path)
+       LYXERR(Debug::GUI, "Select with path \"" << fromqstr(path)
                           << "\", mask \"" << to_utf8(filters.as_string())
-                          << "\", suggested \"" << to_utf8(suggested) << '"' << endl;
+                          << "\", suggested \"" << fromqstr(suggested) << '"');
        FileDialog::Result result;
        result.first = FileDialog::Chosen;
 
 #ifdef USE_NATIVE_FILEDIALOG
-       docstring const startsWith = from_utf8(
-               makeAbsPath(to_utf8(suggested), to_utf8(path)).absFilename());
+       QString const startsWith = toqstr(
+               makeAbsPath(fromqstr(suggested), fromqstr(path)).absFilename());
        QString const name = 
                QFileDialog::getSaveFileName(qApp->focusWidget(),
-                                            toqstr(title_)
-                                            toqstr(startsWith)
+                                            title_
+                                            startsWith
                                             toqstr(filters.as_string()),
                                             0, 
                                             QFileDialog::DontConfirmOverwrite);
-       result.second = from_utf8(internal_path(fromqstr(name)));
+       result.second = toqstr(internal_path(fromqstr(name)));
 #else
        LyXFileDialog dlg(title_, path, filters, private_->b1, private_->b2);
 #if QT_VERSION != 0x040203
@@ -102,69 +111,67 @@ FileDialog::Result const FileDialog::save(docstring const & path,
        dlg.setAcceptMode(QFileDialog::AcceptSave);
        dlg.setConfirmOverwrite(false);
 
-       if (!suggested.empty())
-               dlg.selectFile(toqstr(suggested));
+       if (!suggested.isEmpty())
+               dlg.selectFile(suggested);
 
-       LYXERR(Debug::GUI) << "Synchronous FileDialog: " << endl;
+       LYXERR(Debug::GUI, "Synchronous FileDialog: ");
        int res = dlg.exec();
-       LYXERR(Debug::GUI) << "result " << res << endl;
+       LYXERR(Debug::GUI, "result " << res);
        if (res == QDialog::Accepted)
-               result.second = from_utf8(internal_path(
-                                       fromqstr(dlg.selectedFiles()[0])));
+               result.second = internalPath(dlg.selectedFiles()[0]);
        dlg.hide();
 #endif
        return result;
 }
 
 
-FileDialog::Result const FileDialog::open(docstring const & path,
+FileDialog::Result FileDialog::open(QString const & path,
                                          FileFilterList const & filters,
-                                         docstring const & suggested)
+                                         QString const & suggested)
 {
-       LYXERR(Debug::GUI) << "Select with path \"" << to_utf8(path)
-                          << "\", mask \"" << to_utf8(filters.as_string())
-                          << "\", suggested \"" << to_utf8(suggested) << '"' << endl;
+       LYXERR(Debug::GUI, "Select with path \"" << fromqstr(path)
+                          << "\", mask \"" << filters.as_string()
+                          << "\", suggested \"" << fromqstr(suggested) << '"');
        FileDialog::Result result;
        result.first = FileDialog::Chosen;
 
 #ifdef USE_NATIVE_FILEDIALOG
-       docstring const startsWith = from_utf8(
-               makeAbsPath(to_utf8(suggested), to_utf8(path)).absFilename());
-       result.second = from_utf8(internal_path(fromqstr(
+       QString const startsWith = toqstr(
+               makeAbsPath(fromqstr(suggested), fromqstr(path)).absFilename());
+       result.second = internalPath(
                QFileDialog::getOpenFileName(qApp->focusWidget(),
-               toqstr(title_), toqstr(startsWith), toqstr(filters.as_string()) ))));
+               title_, startsWith, toqstr(filters.as_string()) ));
 #else
        LyXFileDialog dlg(title_, path, filters, private_->b1, private_->b2);
 
-       if (!suggested.empty())
-               dlg.selectFile(toqstr(suggested));
+       if (!suggested.isEmpty())
+               dlg.selectFile(suggested);
 
-       LYXERR(Debug::GUI) << "Synchronous FileDialog: " << endl;
+       LYXERR(Debug::GUI, "Synchronous FileDialog: ");
        int res = dlg.exec();
-       LYXERR(Debug::GUI) << "result " << res << endl;
+       LYXERR(Debug::GUI, "result " << res);
        if (res == QDialog::Accepted)
-               result.second = from_utf8(internal_path(
-                                       fromqstr(dlg.selectedFiles()[0])));
+               result.second = internalPath(dlg.selectedFiles()[0]);
        dlg.hide();
 #endif
        return result;
 }
 
 
-FileDialog::Result const FileDialog::opendir(docstring const & path,
-                                           docstring const & suggested)
+FileDialog::Result FileDialog::opendir(QString const & path,
+                                           QString const & suggested)
 {
-       LYXERR(Debug::GUI) << "Select with path \"" << to_utf8(path)
-                          << "\", suggested \"" << to_utf8(suggested) << '"' << endl;
+       LYXERR(Debug::GUI, "Select with path \"" << fromqstr(path)
+                          << "\", suggested \"" << fromqstr(suggested) << '"');
        FileDialog::Result result;
        result.first = FileDialog::Chosen;
 
 #ifdef USE_NATIVE_FILEDIALOG
-       docstring const startsWith = from_utf8(
-               makeAbsPath(to_utf8(suggested), to_utf8(path)).absFilename());
-       result.second = from_utf8(internal_path(fromqstr(
+       QString const startsWith = toqstr(
+               makeAbsPath(fromqstr(suggested), fromqstr(path)).absFilename());
+       result.second = toqstr(internal_path(fromqstr(
                QFileDialog::getExistingDirectory(qApp->focusWidget(),
-               toqstr(title_),toqstr(startsWith)))));
+               title_, startsWith))));
 #else
        FileFilterList const filter(_("Directories"));
 
@@ -172,15 +179,14 @@ FileDialog::Result const FileDialog::opendir(docstring const & path,
 
        dlg.setFileMode(QFileDialog::DirectoryOnly);
 
-       if (!suggested.empty())
-               dlg.selectFile(toqstr(suggested));
+       if (!suggested.isEmpty())
+               dlg.selectFile(suggested);
 
-       LYXERR(Debug::GUI) << "Synchronous FileDialog: " << endl;
+       LYXERR(Debug::GUI, "Synchronous FileDialog: ");
        int res = dlg.exec();
-       LYXERR(Debug::GUI) << "result " << res << endl;
+       LYXERR(Debug::GUI, "result " << res);
        if (res == QDialog::Accepted)
-               result.second = from_utf8(internal_path(
-                                       fromqstr(dlg.selectedFiles()[0])));
+               result.second = internalPath(dlg.selectedFiles()[0]);
        dlg.hide();
 #endif
        return result;