2006-03-05 17:24:44 +00:00
|
|
|
/**
|
2007-04-26 03:53:02 +00:00
|
|
|
* \file qt4/FileDialog.cpp
|
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>
|
|
|
|
|
2008-02-07 00:05:18 +00:00
|
|
|
#include "FileDialog.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-04-26 03:53:02 +00:00
|
|
|
#include "LyXFileDialog.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
#include "qt_helpers.h"
|
|
|
|
|
2007-11-29 07:04:28 +00:00
|
|
|
#include "support/debug.h"
|
2007-12-17 16:04:46 +00:00
|
|
|
#include "support/FileName.h"
|
2008-04-21 06:30:46 +00:00
|
|
|
#include "support/filetools.h"
|
2007-12-17 16:04:46 +00:00
|
|
|
#include "support/gettext.h"
|
2006-12-05 19:51:50 +00:00
|
|
|
#include "support/os.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2008-04-21 06:30:46 +00:00
|
|
|
#include <string>
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
/** 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.
|
2007-07-03 08:23:04 +00:00
|
|
|
* - with Qt/Win and Qt <= 4.3.0, there was a number of bugs with our own
|
|
|
|
* file dialog (http://bugzilla.lyx.org/show_bug.cgi?id=3907).
|
2006-03-05 17:24:44 +00:00
|
|
|
*
|
|
|
|
* Therefore there is a tradeoff in enabling or disabling this (JMarc)
|
|
|
|
*/
|
2007-07-03 06:41:54 +00:00
|
|
|
#if defined(Q_WS_MACX) || (defined(Q_WS_WIN) && !defined(Q_CYGWIN_WIN))
|
2006-03-05 17:24:44 +00:00
|
|
|
#define USE_NATIVE_FILEDIALOG 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_NATIVE_FILEDIALOG
|
2007-09-15 15:42:22 +00:00
|
|
|
#include <QApplication>
|
2006-03-05 17:24:44 +00:00
|
|
|
#endif
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2008-04-21 06:30:46 +00:00
|
|
|
using namespace support;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FileDialog::Private {
|
|
|
|
public:
|
|
|
|
Button b1;
|
|
|
|
Button b2;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-03-15 01:20:36 +00:00
|
|
|
FileDialog::FileDialog(QString const & t, FuncCode s)
|
2006-03-05 17:24:44 +00:00
|
|
|
: private_(new FileDialog::Private), title_(t), success_(s)
|
2007-10-28 16:32:20 +00:00
|
|
|
{}
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
FileDialog::~FileDialog()
|
|
|
|
{
|
|
|
|
delete private_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-05 23:10:53 +00:00
|
|
|
void FileDialog::setButton1(QString const & label, QString const & dir)
|
2007-10-28 16:32:20 +00:00
|
|
|
{
|
|
|
|
private_->b1.first = label;
|
|
|
|
private_->b1.second = dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-05 23:10:53 +00:00
|
|
|
void FileDialog::setButton2(QString const & label, QString const & dir)
|
2007-10-28 16:32:20 +00:00
|
|
|
{
|
|
|
|
private_->b2.first = label;
|
|
|
|
private_->b2.second = dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-05 23:10:53 +00:00
|
|
|
FileDialog::Result FileDialog::save(QString const & path,
|
2008-04-20 19:56:01 +00:00
|
|
|
QStringList const & filters, QString const & suggested)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2008-04-20 20:32:00 +00:00
|
|
|
LYXERR(Debug::GUI, "Select with path \"" << path
|
|
|
|
<< "\", mask \"" << filters.join(";;")
|
|
|
|
<< "\", suggested \"" << suggested << '"');
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
FileDialog::Result result;
|
|
|
|
result.first = FileDialog::Chosen;
|
|
|
|
|
|
|
|
#ifdef USE_NATIVE_FILEDIALOG
|
2008-04-20 19:56:01 +00:00
|
|
|
QString const startsWith = makeAbsPath(suggested, path);
|
2007-06-06 12:19:48 +00:00
|
|
|
QString const name =
|
2006-12-05 19:51:50 +00:00
|
|
|
QFileDialog::getSaveFileName(qApp->focusWidget(),
|
2008-04-21 06:30:46 +00:00
|
|
|
title_, startsWith, filters.join(";;"),
|
|
|
|
0, QFileDialog::DontConfirmOverwrite);
|
|
|
|
result.second = toqstr(os::internal_path(fromqstr(name)));
|
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);
|
2007-03-30 15:15:44 +00:00
|
|
|
#if QT_VERSION != 0x040203
|
2006-05-07 10:20:43 +00:00
|
|
|
dlg.setFileMode(QFileDialog::AnyFile);
|
2007-03-30 15:15:44 +00:00
|
|
|
#endif
|
2006-05-07 10:20:43 +00:00
|
|
|
dlg.setAcceptMode(QFileDialog::AcceptSave);
|
2007-01-28 15:19:20 +00:00
|
|
|
dlg.setConfirmOverwrite(false);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2008-03-05 23:10:53 +00:00
|
|
|
if (!suggested.isEmpty())
|
|
|
|
dlg.selectFile(suggested);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-11-15 20:04:51 +00:00
|
|
|
LYXERR(Debug::GUI, "Synchronous FileDialog: ");
|
2006-03-05 17:24:44 +00:00
|
|
|
int res = dlg.exec();
|
2007-11-15 20:04:51 +00:00
|
|
|
LYXERR(Debug::GUI, "result " << res);
|
2006-03-05 17:24:44 +00:00
|
|
|
if (res == QDialog::Accepted)
|
2008-03-05 23:10:53 +00:00
|
|
|
result.second = internalPath(dlg.selectedFiles()[0]);
|
2006-03-05 17:24:44 +00:00
|
|
|
dlg.hide();
|
|
|
|
#endif
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-05 23:10:53 +00:00
|
|
|
FileDialog::Result FileDialog::open(QString const & path,
|
2008-04-20 19:56:01 +00:00
|
|
|
QStringList const & filters, QString const & suggested)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2008-04-20 20:32:00 +00:00
|
|
|
LYXERR(Debug::GUI, "Select with path \"" << path
|
|
|
|
<< "\", mask \"" << filters.join(";;")
|
|
|
|
<< "\", suggested \"" << suggested << '"');
|
2006-03-05 17:24:44 +00:00
|
|
|
FileDialog::Result result;
|
|
|
|
result.first = FileDialog::Chosen;
|
|
|
|
|
|
|
|
#ifdef USE_NATIVE_FILEDIALOG
|
2008-04-20 19:56:01 +00:00
|
|
|
QString const startsWith = makeAbsPath(suggested, path);
|
2008-04-21 06:30:46 +00:00
|
|
|
QString const file = QFileDialog::getOpenFileName(qApp->focusWidget(),
|
|
|
|
title_, startsWith, filters.join(";;"));
|
|
|
|
result.second = internalPath(file);
|
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
|
|
|
|
2008-03-05 23:10:53 +00:00
|
|
|
if (!suggested.isEmpty())
|
|
|
|
dlg.selectFile(suggested);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-11-15 20:04:51 +00:00
|
|
|
LYXERR(Debug::GUI, "Synchronous FileDialog: ");
|
2006-03-05 17:24:44 +00:00
|
|
|
int res = dlg.exec();
|
2007-11-15 20:04:51 +00:00
|
|
|
LYXERR(Debug::GUI, "result " << res);
|
2006-03-05 17:24:44 +00:00
|
|
|
if (res == QDialog::Accepted)
|
2008-03-05 23:10:53 +00:00
|
|
|
result.second = internalPath(dlg.selectedFiles()[0]);
|
2006-03-05 17:24:44 +00:00
|
|
|
dlg.hide();
|
|
|
|
#endif
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-05 23:10:53 +00:00
|
|
|
FileDialog::Result FileDialog::opendir(QString const & path,
|
2008-04-20 19:56:01 +00:00
|
|
|
QString const & suggested)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2008-04-20 20:32:00 +00:00
|
|
|
LYXERR(Debug::GUI, "Select with path \"" << path
|
|
|
|
<< "\", suggested \"" << suggested << '"');
|
2006-03-05 17:24:44 +00:00
|
|
|
FileDialog::Result result;
|
|
|
|
result.first = FileDialog::Chosen;
|
|
|
|
|
|
|
|
#ifdef USE_NATIVE_FILEDIALOG
|
2008-04-21 06:30:46 +00:00
|
|
|
QString const startsWith = toqstr(makeAbsPath(fromqstr(suggested),
|
|
|
|
fromqstr(path)).absFilename());
|
|
|
|
result.second = toqstr(os::internal_path(fromqstr(
|
2006-12-05 19:51:50 +00:00
|
|
|
QFileDialog::getExistingDirectory(qApp->focusWidget(),
|
2008-03-06 09:07:41 +00:00
|
|
|
title_, startsWith))));
|
2006-03-05 17:24:44 +00:00
|
|
|
#else
|
2008-04-20 19:56:01 +00:00
|
|
|
LyXFileDialog dlg(title_, path, QStringList(qt_("Directories")),
|
|
|
|
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
|
|
|
|
2008-03-05 23:10:53 +00:00
|
|
|
if (!suggested.isEmpty())
|
|
|
|
dlg.selectFile(suggested);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-11-15 20:04:51 +00:00
|
|
|
LYXERR(Debug::GUI, "Synchronous FileDialog: ");
|
2006-03-05 17:24:44 +00:00
|
|
|
int res = dlg.exec();
|
2007-11-15 20:04:51 +00:00
|
|
|
LYXERR(Debug::GUI, "result " << res);
|
2006-03-05 17:24:44 +00:00
|
|
|
if (res == QDialog::Accepted)
|
2008-03-05 23:10:53 +00:00
|
|
|
result.second = internalPath(dlg.selectedFiles()[0]);
|
2006-03-05 17:24:44 +00:00
|
|
|
dlg.hide();
|
|
|
|
#endif
|
|
|
|
return result;
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|