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
This commit is contained in:
Jean-Marc Lasgouttes 2004-08-09 13:00:30 +00:00
parent 42afdcb9c4
commit ff5a462b35
2 changed files with 65 additions and 12 deletions

View File

@ -1,3 +1,9 @@
2004-08-09 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* 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 <lasgouttes@lyx.org>
* Makefile.am (AM_CXXFLAGS): do not disable QTranslator code

View File

@ -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 <qapplication.h>
#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;
}