X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FLyXFileDialog.cpp;h=e218fcfc0c7dd43a70813aa30a73c856731a1b82;hb=c0a1893008bd13650d470afff16f56720b65c87c;hp=0d6652c9b756f326c0f5fecf4731696078449cea;hpb=8c5f097b5d59cc157b39a08fa5d3f5fa82cf1e4f;p=lyx.git diff --git a/src/frontends/qt4/LyXFileDialog.cpp b/src/frontends/qt4/LyXFileDialog.cpp index 0d6652c9b7..e218fcfc0c 100644 --- a/src/frontends/qt4/LyXFileDialog.cpp +++ b/src/frontends/qt4/LyXFileDialog.cpp @@ -14,75 +14,77 @@ #include "qt_helpers.h" -#include "support/filefilterlist.h" #include "support/lstrings.h" #include #include #include -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) { - // FIXME UNICODE - string str = to_utf8(ucs4str); +static QString getLabel(QString const & qstr) +{ + // FIXME UNICODE (or "qt-ify") + string str = fromqstr(qstr); string label; - string sc(split(str, 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())), - b1_(0), b2_(0) + // 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 layout = findChildren(); - if (!b1.first.empty()) { + if (!b1.first.isEmpty()) { b1_dir_ = b1.second; - b1_ = new QToolButton(this); - connect(b1_, SIGNAL(clicked()), this, SLOT(buttonClicked())); - b1_->setText(toqstr(getLabel(b1.first))); - layout.at(0)->addWidget(b1_); + QToolButton * tb = new QToolButton(this); + 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; - b2_ = new QToolButton(this); - connect(b2_, SIGNAL(clicked()), this, SLOT(buttonClicked())); - b2_->setText(toqstr(getLabel(b2.first))); - layout.at(0)->addWidget(b2_); + QToolButton * tb = new QToolButton(this); + connect(tb, SIGNAL(clicked()), this, SLOT(button2Clicked())); + tb->setText(getLabel(b2.first)); + layout.at(0)->addWidget(tb); } } -void LyXFileDialog::buttonClicked() +void LyXFileDialog::button1Clicked() { - if (sender() == b1_) - setDirectory(toqstr(b1_dir_)); - else if (sender() == b2_) - setDirectory(toqstr(b2_dir_)); + setDirectory(b1_dir_); } -} // namespace lyx -#include "LyXFileDialog_moc.cpp" +void LyXFileDialog::button2Clicked() +{ + setDirectory(b2_dir_); +} + +} // namespace lyx +#include "moc_LyXFileDialog.cpp"