mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
72b195fa4b
- limit workaround for Qt bug that was fixed in Qt 4.3.4 to previous Qt versions (related to bug 4513). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28284 a592a061-630c-0410-9148-cb99ea01b6c8
97 lines
2.1 KiB
C++
97 lines
2.1 KiB
C++
/**
|
|
* \file LyXFileDialog.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "LyXFileDialog.h"
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include <QApplication>
|
|
#include <QToolButton>
|
|
#include <QHBoxLayout>
|
|
|
|
using namespace std;
|
|
using namespace lyx::support;
|
|
|
|
namespace lyx {
|
|
|
|
/// return the Qt form of the label
|
|
static QString getLabel(QString const & qstr)
|
|
{
|
|
// FIXME UNICODE (or "qt-ify")
|
|
string str = fromqstr(qstr);
|
|
string label;
|
|
string sc = split(str, label, '|');
|
|
if (sc.length() < 2)
|
|
return toqstr(label);
|
|
size_t pos = label.find(sc[1]);
|
|
if (pos != string::npos)
|
|
label.insert(pos, 1, '&');
|
|
return toqstr(label);
|
|
}
|
|
|
|
|
|
LyXFileDialog::LyXFileDialog(QString const & title,
|
|
QString const & path,
|
|
QStringList const & filters,
|
|
FileDialog::Button const & b1,
|
|
FileDialog::Button const & b2)
|
|
// FIXME replace that with guiApp->currentView()
|
|
: QFileDialog(qApp->focusWidget(), title, path)
|
|
{
|
|
setFilters(filters);
|
|
#if QT_VERSION < 0x040304
|
|
// FIXME: workaround for a bug in qt which makes LyX crash
|
|
// with hidden paths (bug 4513). Fixed as of Qt 4.3.4
|
|
QDir dir(path);
|
|
if (path.contains("/."))
|
|
dir.setFilter(QDir::Hidden);
|
|
setDirectory(dir);
|
|
#endif
|
|
setWindowTitle(title);
|
|
|
|
QList<QHBoxLayout *> layout = findChildren<QHBoxLayout *>();
|
|
|
|
if (!b1.first.isEmpty()) {
|
|
b1_dir_ = b1.second;
|
|
QToolButton * tb = new QToolButton(this);
|
|
connect(tb, SIGNAL(clicked()), this, SLOT(button1Clicked()));
|
|
tb->setText(getLabel(b1.first));
|
|
layout.at(0)->addWidget(tb);
|
|
}
|
|
|
|
if (!b2.first.isEmpty()) {
|
|
b2_dir_ = b2.second;
|
|
QToolButton * tb = new QToolButton(this);
|
|
connect(tb, SIGNAL(clicked()), this, SLOT(button2Clicked()));
|
|
tb->setText(getLabel(b2.first));
|
|
layout.at(0)->addWidget(tb);
|
|
}
|
|
}
|
|
|
|
|
|
void LyXFileDialog::button1Clicked()
|
|
{
|
|
setDirectory(b1_dir_);
|
|
}
|
|
|
|
|
|
void LyXFileDialog::button2Clicked()
|
|
{
|
|
setDirectory(b2_dir_);
|
|
}
|
|
|
|
} // namespace lyx
|
|
|
|
#include "moc_LyXFileDialog.cpp"
|