mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
c9f9ba315c
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9502 a592a061-630c-0410-9148-cb99ea01b6c8
173 lines
4.4 KiB
C
173 lines
4.4 KiB
C
/**
|
|
* \file qt2/FileDialog.C
|
|
* This file is part of LyX, the document processor.
|
|
* 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.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "frontends/FileDialog.h"
|
|
|
|
#include "FileDialog_private.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "debug.h"
|
|
#include "gettext.h"
|
|
|
|
#include "support/filefilterlist.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;
|
|
|
|
using std::endl;
|
|
using std::string;
|
|
|
|
|
|
class FileDialog::Private {
|
|
public:
|
|
Button b1;
|
|
Button b2;
|
|
};
|
|
|
|
|
|
FileDialog::FileDialog(string const & t,
|
|
kb_action s, Button b1, Button b2)
|
|
: private_(new FileDialog::Private), title_(t), success_(s)
|
|
{
|
|
private_->b1 = b1;
|
|
private_->b2 = b2;
|
|
}
|
|
|
|
|
|
FileDialog::~FileDialog()
|
|
{
|
|
delete private_;
|
|
}
|
|
|
|
|
|
FileDialog::Result const FileDialog::save(string const & path,
|
|
FileFilterList const & filters,
|
|
string const & suggested)
|
|
{
|
|
lyxerr[Debug::GUI] << "Select with path \"" << path
|
|
<< "\", mask \"" << filters.as_string()
|
|
<< "\", 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.as_string()),
|
|
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));
|
|
|
|
lyxerr[Debug::GUI] << "Synchronous FileDialog: " << endl;
|
|
int res = dlg.exec();
|
|
lyxerr[Debug::GUI] << "result " << res << endl;
|
|
if (res == QDialog::Accepted)
|
|
result.second = fromqstr(dlg.selectedFile());
|
|
dlg.hide();
|
|
#endif
|
|
return result;
|
|
}
|
|
|
|
|
|
FileDialog::Result const FileDialog::open(string const & path,
|
|
FileFilterList const & filters,
|
|
string const & suggested)
|
|
{
|
|
lyxerr[Debug::GUI] << "Select with path \"" << path
|
|
<< "\", mask \"" << filters.as_string()
|
|
<< "\", 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.as_string()),
|
|
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));
|
|
|
|
lyxerr[Debug::GUI] << "Synchronous FileDialog: " << endl;
|
|
int res = dlg.exec();
|
|
lyxerr[Debug::GUI] << "result " << res << endl;
|
|
if (res == QDialog::Accepted)
|
|
result.second = fromqstr(dlg.selectedFile());
|
|
dlg.hide();
|
|
#endif
|
|
return result;
|
|
}
|
|
|
|
|
|
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);
|
|
|
|
dlg.setMode(QFileDialog::DirectoryOnly);
|
|
|
|
if (!suggested.empty())
|
|
dlg.setSelection(toqstr(suggested));
|
|
|
|
lyxerr[Debug::GUI] << "Synchronous FileDialog: " << endl;
|
|
int res = dlg.exec();
|
|
lyxerr[Debug::GUI] << "result " << res << endl;
|
|
if (res == QDialog::Accepted)
|
|
result.second = fromqstr(dlg.selectedFile());
|
|
dlg.hide();
|
|
#endif
|
|
return result;
|
|
}
|