lyx_mirror/src/frontends/qt4/LyXFileDialog.cpp
André Pönitz 9be03a87f9 start some work on file dialogs
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21238 a592a061-630c-0410-9148-cb99ea01b6c8
2007-10-28 16:32:20 +00:00

91 lines
2.0 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/FileFilterList.h"
#include "support/lstrings.h"
#include <QApplication>
#include <QToolButton>
#include <QHBoxLayout>
using lyx::support::split;
using std::string;
namespace lyx {
/// return the Qt form of the label
static docstring const getLabel(docstring const & ucs4str)
{
// FIXME UNICODE
string str = to_utf8(ucs4str);
string label;
string sc = split(str, label, '|');
if (sc.length() < 2)
return from_utf8(label);
string::size_type pos = label.find(sc[1]);
if (pos == string::npos)
return from_utf8(label);
label.insert(pos, 1, '&');
return from_utf8(label);
}
LyXFileDialog::LyXFileDialog(docstring const & t,
docstring const & p,
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()))
{
setWindowTitle(toqstr(t));
QList<QHBoxLayout *> layout = findChildren<QHBoxLayout *>();
if (!b1.first.empty()) {
b1_dir_ = b1.second;
QToolButton * tb = new QToolButton(this);
connect(tb, SIGNAL(clicked()), this, SLOT(buttonClicked()));
tb->setText(toqstr(getLabel(b1.first)));
layout.at(0)->addWidget(tb);
}
if (!b2.first.empty()) {
b2_dir_ = b2.second;
QToolButton * tb = new QToolButton(this);
connect(tb, SIGNAL(clicked()), this, SLOT(buttonClicked()));
tb->setText(toqstr(getLabel(b2.first)));
layout.at(0)->addWidget(tb);
}
}
void LyXFileDialog::button1Clicked()
{
setDirectory(toqstr(b1_dir_));
}
void LyXFileDialog::button2Clicked()
{
setDirectory(toqstr(b2_dir_));
}
} // namespace lyx
#include "LyXFileDialog_moc.cpp"