2006-03-05 17:24:44 +00:00
|
|
|
/**
|
2006-04-24 13:25:50 +00:00
|
|
|
* \file qt4/FileDialog.C
|
2006-03-05 17:24:44 +00:00
|
|
|
* 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"
|
2006-04-12 13:53:01 +00:00
|
|
|
using lyx::support::makeAbsPath;
|
2006-03-05 17:24:44 +00:00
|
|
|
#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
|
2006-04-12 13:53:01 +00:00
|
|
|
string const startsWith = makeAbsPath(suggested, path);
|
2006-05-07 10:20:43 +00:00
|
|
|
result.second = fromqstr(QFileDialog::getSaveFileName(
|
|
|
|
qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(),
|
|
|
|
title_.c_str(), toqstr(startsWith), toqstr(filters.as_string()) ));
|
2006-03-05 17:24:44 +00:00
|
|
|
#else
|
2006-05-07 10:20:43 +00:00
|
|
|
LyXFileDialog dlg(title_, path, filters, private_->b1, private_->b2);
|
|
|
|
dlg.setFileMode(QFileDialog::AnyFile);
|
|
|
|
dlg.setAcceptMode(QFileDialog::AcceptSave);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
if (!suggested.empty())
|
2006-05-07 10:20:43 +00:00
|
|
|
dlg.selectFile(toqstr(suggested));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
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
|
2006-04-12 13:53:01 +00:00
|
|
|
string const startsWith = makeAbsPath(suggested, path);
|
2006-05-07 10:20:43 +00:00
|
|
|
result.second = fromqstr(QFileDialog::getOpenFileName(
|
|
|
|
qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(),
|
|
|
|
title_.c_str(), toqstr(startsWith), toqstr(filters.as_string()) ));
|
2006-03-05 17:24:44 +00:00
|
|
|
#else
|
2006-05-07 10:20:43 +00:00
|
|
|
LyXFileDialog dlg(title_, path, filters, private_->b1, private_->b2);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
if (!suggested.empty())
|
2006-05-07 10:20:43 +00:00
|
|
|
dlg.selectFile(toqstr(suggested));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
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
|
2006-04-12 13:53:01 +00:00
|
|
|
string const startsWith = makeAbsPath(suggested, path);
|
2006-05-07 10:20:43 +00:00
|
|
|
result.second = fromqstr(QFileDialog::getExistingDirectory(
|
|
|
|
qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(),
|
|
|
|
title_.c_str(),toqstr(startsWith) ));
|
2006-03-05 17:24:44 +00:00
|
|
|
#else
|
|
|
|
FileFilterList const filter(_("Directories"));
|
|
|
|
|
2006-05-07 10:20:43 +00:00
|
|
|
LyXFileDialog dlg(title_, path, filter, private_->b1, private_->b2);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-05-07 10:20:43 +00:00
|
|
|
dlg.setFileMode(QFileDialog::DirectoryOnly);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
if (!suggested.empty())
|
2006-05-07 10:20:43 +00:00
|
|
|
dlg.selectFile(toqstr(suggested));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|