lyx_mirror/src/frontends/qt4/qt_helpers.C

192 lines
3.8 KiB
C++
Raw Normal View History

/**
* \file qt_helpers.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Dekel Tsur
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "lengthcombo.h"
#include "qt_helpers.h"
#include "lengthcommon.h"
#include "gettext.h"
#include "support/lstrings.h"
#include "support/convert.h"
#include <QComboBox>
#include <qlineedit.h>
#include <qtextcodec.h>
#include <algorithm>
using lyx::support::isStrDbl;
using std::make_pair;
using std::string;
using std::pair;
string makeFontName(string const & family, string const & foundry)
{
if (foundry.empty())
return family;
return family + " [" + foundry + ']';
}
pair<string,string> parseFontName(string const & name)
{
string::size_type const idx = name.find('[');
if (idx == string::npos || idx == 0)
return make_pair(name, string());
return make_pair(name.substr(0, idx - 1),
name.substr(idx + 1, name.size() - idx - 2));
}
string widgetsToLength(QLineEdit const * input, LengthCombo const * combo)
{
QString length = input->text();
if (length.isEmpty())
return string();
// don't return unit-from-choice if the input(field) contains a unit
if (isValidGlueLength(fromqstr(length)))
return fromqstr(length);
LyXLength::UNIT unit = combo->currentLengthItem();
return LyXLength(length.toDouble(), unit).asString();
}
LyXLength widgetsToLength(QLineEdit const * input, QComboBox const * combo)
{
QString length = input->text();
if (length.isEmpty())
return LyXLength();
// don't return unit-from-choice if the input(field) contains a unit
if (isValidGlueLength(fromqstr(length)))
return LyXLength(fromqstr(length));
LyXLength::UNIT unit = unitFromString(fromqstr(combo->currentText()));
return LyXLength(length.toDouble(), unit);
}
void lengthToWidgets(QLineEdit * input, LengthCombo * combo,
string const & len, LyXLength::UNIT defaultUnit)
{
if (len.empty()) {
// no length (UNIT_NONE)
combo->setCurrentItem(defaultUnit);
input->setText("");
} else if (!isValidLength(len) && !isStrDbl(len)) {
// use input field only for gluelengths
combo->setCurrentItem(defaultUnit);
input->setText(toqstr(len));
} else {
combo->setCurrentItem(LyXLength(len).unit());
input->setText(toqstr(convert<string>(LyXLength(len).value())));
}
}
QString const toqstr(char const * str)
{
return QString::fromAscii(str);
}
QString const toqstr(string const & str)
{
return toqstr(str.c_str());
}
QString const qt_(char const * str)
{
return toqstr(_(str));
}
QString const qt_(string const & str)
{
return toqstr(_(str));
}
string const fromqstr(QString const & str)
{
//return str;
return str.ascii() ? str.ascii() : "";
}
string const formatted(string const & text, int w)
{
string sout;
if (text.empty())
return sout;
string::size_type curpos = 0;
string line;
for (;;) {
string::size_type const nxtpos1 = text.find(' ', curpos);
string::size_type const nxtpos2 = text.find('\n', curpos);
string::size_type const nxtpos = std::min(nxtpos1, nxtpos2);
string const word = nxtpos == string::npos ?
text.substr(curpos) : text.substr(curpos, nxtpos-curpos);
bool const newline = (nxtpos2 != string::npos &&
nxtpos2 < nxtpos1);
string const line_plus_word =
line.empty() ? word : line + ' ' + word;
// FIXME: make w be size_t
if (int(line_plus_word.length()) >= w) {
sout += line + '\n';
if (newline) {
sout += word + '\n';
line.erase();
} else {
line = word;
}
} else if (newline) {
sout += line_plus_word + '\n';
line.erase();
} else {
if (!line.empty())
line += ' ';
line += word;
}
if (nxtpos == string::npos) {
if (!line.empty())
sout += line;
break;
}
curpos = nxtpos + 1;
}
return sout;
}