From: Jean-Marc Lasgouttes Date: Mon, 9 Aug 2004 13:00:30 +0000 (+0000) Subject: use native filedialogs under Qt/Mac (can be turned off) X-Git-Tag: 1.6.10~15115 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ff5a462b3598a8d09688b52fa197600b00972aee;p=features.git use native filedialogs under Qt/Mac (can be turned off) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8881 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt2/ChangeLog b/src/frontends/qt2/ChangeLog index d15b01096c..7f530b8a23 100644 --- a/src/frontends/qt2/ChangeLog +++ b/src/frontends/qt2/ChangeLog @@ -1,3 +1,9 @@ +2004-08-09 Jean-Marc Lasgouttes + + * FileDialog.C: #define USE_NATIVE_FILEDIALOG under LyX/Mac + (save, open, opendir): when USE_NATIVE_FILEDIALOG + is defined, use QFileDialog::getOpenFileName and friends. + 2004-08-08 Jean-Marc Lasgouttes * Makefile.am (AM_CXXFLAGS): do not disable QTranslator code diff --git a/src/frontends/qt2/FileDialog.C b/src/frontends/qt2/FileDialog.C index cf766cee99..7af88fd208 100644 --- a/src/frontends/qt2/FileDialog.C +++ b/src/frontends/qt2/FileDialog.C @@ -4,6 +4,7 @@ * Licence details can be found in the file COPYING. * * \author John Levon + * \author Jean-Marc Lasgouttes * * Full author contact details are available in file CREDITS. */ @@ -20,6 +21,24 @@ #include "support/globbing.h" +/** when this is defined, the code will use + * QFileDialog::getOpenFileName and friends to create filedialogs. + * Effects: + * - the dialog does not use the quick directory buttons (Button + * parameters); + * - with Qt/Mac or Qt/Win, the dialogs native to the environment are used. + * + * Therefore there is a tradeoff in enabling or disabling this (JMarc) + */ +#ifdef Q_WS_MACX +#define USE_NATIVE_FILEDIALOG 1 +#endif + +#ifdef USE_NATIVE_FILEDIALOG +#include +#include "support/filetools.h" +using lyx::support::MakeAbsPath; +#endif using lyx::support::FileFilterList; @@ -52,24 +71,33 @@ FileDialog::Result const FileDialog::save(string const & path, FileFilterList const & filters, string const & suggested) { - LyXFileDialog dlg(path, filters, title_, private_->b1, private_->b2); lyxerr[Debug::GUI] << "Select with path \"" << path << "\", mask \"" << filters.str(false) - << "\", suggested \"" << suggested << endl; + << "\", suggested \"" << suggested << '"' << endl; + FileDialog::Result result; + result.first = FileDialog::Chosen; +#ifdef USE_NATIVE_FILEDIALOG + string const startsWith = MakeAbsPath(suggested, path); + result.second = fromqstr( + QFileDialog::getSaveFileName(toqstr(startsWith), + toqstr(filters.str(true)), + qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(), + title_.c_str())); +#else + LyXFileDialog dlg(path, filters, title_, private_->b1, private_->b2); dlg.setMode(QFileDialog::AnyFile); if (!suggested.empty()) dlg.setSelection(toqstr(suggested)); - FileDialog::Result result; lyxerr[Debug::GUI] << "Synchronous FileDialog: " << endl; - result.first = FileDialog::Chosen; int res = dlg.exec(); lyxerr[Debug::GUI] << "result " << res << endl; if (res == QDialog::Accepted) result.second = fromqstr(dlg.selectedFile()); dlg.hide(); +#endif return result; } @@ -78,22 +106,32 @@ FileDialog::Result const FileDialog::open(string const & path, FileFilterList const & filters, string const & suggested) { - LyXFileDialog dlg(path, filters, title_, private_->b1, private_->b2); lyxerr[Debug::GUI] << "Select with path \"" << path << "\", mask \"" << filters.str(false) - << "\", suggested \"" << suggested << endl; + << "\", suggested \"" << suggested << '"' << endl; + FileDialog::Result result; + result.first = FileDialog::Chosen; + +#ifdef USE_NATIVE_FILEDIALOG + string const startsWith = MakeAbsPath(suggested, path); + result.second = fromqstr( + QFileDialog::getOpenFileName(toqstr(startsWith), + toqstr(filters.str(true)), + qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(), + title_.c_str())); +#else + LyXFileDialog dlg(path, filters, title_, private_->b1, private_->b2); if (!suggested.empty()) dlg.setSelection(toqstr(suggested)); - FileDialog::Result result; lyxerr[Debug::GUI] << "Synchronous FileDialog: " << endl; - result.first = FileDialog::Chosen; int res = dlg.exec(); lyxerr[Debug::GUI] << "result " << res << endl; if (res == QDialog::Accepted) result.second = fromqstr(dlg.selectedFile()); dlg.hide(); +#endif return result; } @@ -101,24 +139,33 @@ FileDialog::Result const FileDialog::open(string const & path, FileDialog::Result const FileDialog::opendir(string const & path, string const & suggested) { + lyxerr[Debug::GUI] << "Select with path \"" << path + << "\", suggested \"" << suggested << '"' << endl; + FileDialog::Result result; + result.first = FileDialog::Chosen; + +#ifdef USE_NATIVE_FILEDIALOG + string const startsWith = MakeAbsPath(suggested, path); + result.second = fromqstr( + QFileDialog::getExistingDirectory(toqstr(startsWith), + qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(), + title_.c_str())); +#else FileFilterList const filter(_("Directories")); LyXFileDialog dlg(path, filter, title_, private_->b1, private_->b2); - lyxerr[Debug::GUI] << "Select with path \"" << path - << "\", suggested \"" << suggested << endl; dlg.setMode(QFileDialog::DirectoryOnly); if (!suggested.empty()) dlg.setSelection(toqstr(suggested)); - FileDialog::Result result; lyxerr[Debug::GUI] << "Synchronous FileDialog: " << endl; - result.first = FileDialog::Chosen; int res = dlg.exec(); lyxerr[Debug::GUI] << "result " << res << endl; if (res == QDialog::Accepted) result.second = fromqstr(dlg.selectedFile()); dlg.hide(); +#endif return result; }