mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
74b8008837
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16436 a592a061-630c-0410-9148-cb99ea01b6c8
96 lines
2.1 KiB
C
96 lines
2.1 KiB
C
/**
|
|
* \file FileDialog_private.C
|
|
* 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 "FileDialog_private.h"
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
#include "support/filefilterlist.h"
|
|
#include "support/lstrings.h"
|
|
|
|
#include <QApplication>
|
|
#include <QToolButton>
|
|
#include <QHBoxLayout>
|
|
|
|
using lyx::support::split;
|
|
using lyx::docstring;
|
|
|
|
using std::string;
|
|
|
|
|
|
namespace {
|
|
|
|
/// return the Qt form of the label
|
|
docstring const getLabel(docstring const & ucs4str) {
|
|
// FIXME UNICODE
|
|
string str = lyx::to_utf8(ucs4str);
|
|
string label;
|
|
string sc(split(str, label, '|'));
|
|
if (sc.length() < 2)
|
|
return lyx::from_utf8(label);
|
|
string::size_type pos = label.find(sc[1]);
|
|
if (pos == string::npos)
|
|
return lyx::from_utf8(label);
|
|
label.insert(pos, 1, '&');
|
|
return lyx::from_utf8(label);
|
|
}
|
|
|
|
} // namespace anon
|
|
|
|
|
|
namespace lyx {
|
|
|
|
LyXFileDialog::LyXFileDialog(docstring const & t,
|
|
docstring const & p,
|
|
lyx::support::FileFilterList const & filters,
|
|
FileDialog::Button const & b1,
|
|
FileDialog::Button const & b2)
|
|
// FIXME replace that with theApp->gui()->currentView()
|
|
: QFileDialog(qApp->focusWidget(),
|
|
toqstr(t), toqstr(p), toqstr(filters.as_string())),
|
|
b1_(0), b2_(0)
|
|
{
|
|
setWindowTitle(toqstr(t));
|
|
|
|
QList<QHBoxLayout *> layout = findChildren<QHBoxLayout *>();
|
|
|
|
if (!b1.first.empty()) {
|
|
b1_dir_ = b1.second;
|
|
b1_ = new QToolButton(this);
|
|
connect(b1_, SIGNAL(clicked()), this, SLOT(buttonClicked()));
|
|
b1_->setText(toqstr(getLabel(b1.first)));
|
|
layout.at(0)->addWidget(b1_);
|
|
}
|
|
|
|
if (!b2.first.empty()) {
|
|
b2_dir_ = b2.second;
|
|
b2_ = new QToolButton(this);
|
|
connect(b2_, SIGNAL(clicked()), this, SLOT(buttonClicked()));
|
|
b2_->setText(toqstr(getLabel(b2.first)));
|
|
layout.at(0)->addWidget(b2_);
|
|
}
|
|
}
|
|
|
|
|
|
void LyXFileDialog::buttonClicked()
|
|
{
|
|
if (sender() == b1_)
|
|
setDirectory(toqstr(b1_dir_));
|
|
else if (sender() == b2_)
|
|
setDirectory(toqstr(b2_dir_));
|
|
}
|
|
|
|
} // namespace lyx
|
|
|
|
#include "FileDialog_private_moc.cpp"
|
|
|