]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/LyXFileDialog.cpp
Disable CheckTeX while buffer is processed
[lyx.git] / src / frontends / qt4 / LyXFileDialog.cpp
index c88ee9d49161fdd8b25c4a6a19ef2c30fcdcf4e7..e218fcfc0c7dd43a70813aa30a73c856731a1b82 100644 (file)
 
 #include "qt_helpers.h"
 
-#include "support/FileFilterList.h"
 #include "support/lstrings.h"
 
 #include <QApplication>
 #include <QToolButton>
 #include <QHBoxLayout>
 
-using lyx::support::split;
-using std::string;
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 
 /// return the Qt form of the label
-static docstring const getLabel(docstring const & ucs4str)
+static QString getLabel(QString const & qstr)
 {
-       // FIXME UNICODE
-       string str = to_utf8(ucs4str);
+       // FIXME UNICODE (or "qt-ify")
+       string str = fromqstr(qstr);
        string label;
        string sc = split(str, label, '|');
        if (sc.length() < 2)
-               return from_utf8(label);
-       string::size_type pos = label.find(sc[1]);
-       if (pos == string::npos)
-               return from_utf8(label);
-       label.insert(pos, 1, '&');
-       return from_utf8(label);
+               return toqstr(label);
+       size_t pos = label.find(sc[1]);
+       if (pos != string::npos)
+               label.insert(pos, 1, '&');
+       return toqstr(label);
 }
 
 
-LyXFileDialog::LyXFileDialog(docstring const & t,
-                            docstring const & p,
-                            support::FileFilterList const & filters,
+LyXFileDialog::LyXFileDialog(QString const & title,
+                            QString const & path,
+                            QStringList const & filters,
                             FileDialog::Button const & b1,
                             FileDialog::Button const & b2)
-                                // FIXME replace that with theApp->gui()->currentView()
-       : QFileDialog(qApp->focusWidget(),
-                     toqstr(t), toqstr(p), toqstr(filters.as_string()))
+                                // FIXME replace that with guiApp->currentView()
+       : QFileDialog(qApp->focusWidget(), title, path)
 {
-       setWindowTitle(toqstr(t));
+       setNameFilters(filters);
+       setWindowTitle(title);
+       setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
+       setOption(QFileDialog::DontUseNativeDialog);
 
        QList<QHBoxLayout *> layout = findChildren<QHBoxLayout *>();
 
-       if (!b1.first.empty()) {
+       if (!b1.first.isEmpty()) {
                b1_dir_ = b1.second;
                QToolButton * tb = new QToolButton(this);
-               connect(tb, SIGNAL(clicked()), this, SLOT(buttonClicked()));
-               tb->setText(toqstr(getLabel(b1.first)));
+               connect(tb, SIGNAL(clicked()), this, SLOT(button1Clicked()));
+               tb->setText(getLabel(b1.first));
                layout.at(0)->addWidget(tb);
        }
 
-       if (!b2.first.empty()) {
+       if (!b2.first.isEmpty()) {
                b2_dir_ = b2.second;
                QToolButton * tb = new QToolButton(this);
-               connect(tb, SIGNAL(clicked()), this, SLOT(buttonClicked()));
-               tb->setText(toqstr(getLabel(b2.first)));
+               connect(tb, SIGNAL(clicked()), this, SLOT(button2Clicked()));
+               tb->setText(getLabel(b2.first));
                layout.at(0)->addWidget(tb);
        }
 }
@@ -76,15 +76,15 @@ LyXFileDialog::LyXFileDialog(docstring const & t,
 
 void LyXFileDialog::button1Clicked()
 {
-       setDirectory(toqstr(b1_dir_));
+       setDirectory(b1_dir_);
 }
 
 
 void LyXFileDialog::button2Clicked()
 {
-       setDirectory(toqstr(b2_dir_));
+       setDirectory(b2_dir_);
 }
 
 } // namespace lyx
 
-#include "LyXFileDialog_moc.cpp"
+#include "moc_LyXFileDialog.cpp"