mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
81 lines
1.7 KiB
C++
81 lines
1.7 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>
|
||
|
|
||
|
using lyx::support::split;
|
||
|
|
||
|
using std::string;
|
||
|
|
||
|
|
||
|
namespace {
|
||
|
|
||
|
/// return the Qt form of the label
|
||
|
string const getLabel(string const & str) {
|
||
|
string label;
|
||
|
string sc(split(str, label, '|'));
|
||
|
if (sc.length() < 2)
|
||
|
return label;
|
||
|
string::size_type pos = label.find(sc[1]);
|
||
|
if (pos == string::npos)
|
||
|
return label;
|
||
|
label.insert(pos, 1, '&');
|
||
|
return label;
|
||
|
}
|
||
|
|
||
|
} // namespace anon
|
||
|
|
||
|
|
||
|
LyXFileDialog::LyXFileDialog(string const & p,
|
||
|
lyx::support::FileFilterList const & filters,
|
||
|
string const & t,
|
||
|
FileDialog::Button const & b1,
|
||
|
FileDialog::Button const & b2)
|
||
|
: Q3FileDialog(toqstr(p), toqstr(filters.as_string()),
|
||
|
qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(), toqstr(t), true),
|
||
|
b1_(0), b2_(0)
|
||
|
{
|
||
|
setCaption(toqstr(t));
|
||
|
|
||
|
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)));
|
||
|
addToolButton(b1_, true);
|
||
|
}
|
||
|
|
||
|
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)));
|
||
|
addToolButton(b2_);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
void LyXFileDialog::buttonClicked()
|
||
|
{
|
||
|
if (sender() == b1_)
|
||
|
setDir(toqstr(b1_dir_));
|
||
|
else if (sender() == b2_)
|
||
|
setDir(toqstr(b2_dir_));
|
||
|
}
|