2006-03-05 17:24:44 +00:00
|
|
|
/**
|
2007-08-31 05:53:55 +00:00
|
|
|
* \file GuiCharacter.cpp
|
2006-03-05 17:24:44 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2007-10-06 11:17:57 +00:00
|
|
|
* \author Angus Leeming
|
2006-03-05 17:24:44 +00:00
|
|
|
* \author Edwin Leuven
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
#include "GuiCharacter.h"
|
2007-09-05 20:33:29 +00:00
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
#include "qt_helpers.h"
|
2007-09-11 21:27:57 +00:00
|
|
|
#include "Font.h"
|
2007-10-06 11:17:57 +00:00
|
|
|
#include "Buffer.h"
|
|
|
|
#include "BufferParams.h"
|
|
|
|
#include "FuncRequest.h"
|
|
|
|
#include "Language.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-04-25 10:57:54 +00:00
|
|
|
#include <QCloseEvent>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
using std::vector;
|
2007-10-06 11:17:57 +00:00
|
|
|
using std::string;
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2007-09-11 21:27:57 +00:00
|
|
|
static vector<ShapePair> const getShapeData()
|
|
|
|
{
|
|
|
|
vector<ShapePair> shape(6);
|
|
|
|
|
|
|
|
ShapePair pr;
|
|
|
|
|
|
|
|
pr.first = qt_("No change");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = IGNORE_SHAPE;
|
2007-09-11 21:27:57 +00:00
|
|
|
shape[0] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Upright");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = UP_SHAPE;
|
2007-09-11 21:27:57 +00:00
|
|
|
shape[1] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Italic");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = ITALIC_SHAPE;
|
2007-09-11 21:27:57 +00:00
|
|
|
shape[2] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Slanted");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = SLANTED_SHAPE;
|
2007-09-11 21:27:57 +00:00
|
|
|
shape[3] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Small Caps");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = SMALLCAPS_SHAPE;
|
2007-09-11 21:27:57 +00:00
|
|
|
shape[4] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Reset");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = INHERIT_SHAPE;
|
2007-09-11 21:27:57 +00:00
|
|
|
shape[5] = pr;
|
|
|
|
|
|
|
|
return shape;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static vector<SizePair> const getSizeData()
|
|
|
|
{
|
|
|
|
vector<SizePair> size(14);
|
|
|
|
|
|
|
|
SizePair pr;
|
|
|
|
|
|
|
|
pr.first = qt_("No change");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_IGNORE;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[0] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Tiny");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_TINY;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[1] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Smallest");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_SCRIPT;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[2] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Smaller");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_FOOTNOTE;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[3] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Small");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_SMALL;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[4] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Normal");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_NORMAL;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[5] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Large");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_LARGE;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[6] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Larger");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_LARGER;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[7] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Largest");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_LARGEST;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[8] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Huge");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_HUGE;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[9] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Huger");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_HUGER;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[10] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Increase");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_INCREASE;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[11] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Decrease");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_DECREASE;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[12] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Reset");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = FONT_SIZE_INHERIT;
|
2007-09-11 21:27:57 +00:00
|
|
|
size[13] = pr;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static vector<BarPair> const getBarData()
|
|
|
|
{
|
|
|
|
vector<BarPair> bar(5);
|
|
|
|
|
|
|
|
BarPair pr;
|
|
|
|
|
|
|
|
pr.first = qt_("No change");
|
|
|
|
pr.second = IGNORE;
|
|
|
|
bar[0] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Emph");
|
|
|
|
pr.second = EMPH_TOGGLE;
|
|
|
|
bar[1] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Underbar");
|
|
|
|
pr.second = UNDERBAR_TOGGLE;
|
|
|
|
bar[2] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Noun");
|
|
|
|
pr.second = NOUN_TOGGLE;
|
|
|
|
bar[3] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Reset");
|
|
|
|
pr.second = INHERIT;
|
|
|
|
bar[4] = pr;
|
|
|
|
|
|
|
|
return bar;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static vector<ColorPair> const getColorData()
|
|
|
|
{
|
|
|
|
vector<ColorPair> color(11);
|
|
|
|
|
|
|
|
ColorPair pr;
|
|
|
|
|
|
|
|
pr.first = qt_("No change");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_ignore;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[0] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("No color");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_none;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[1] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Black");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_black;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[2] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("White");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_white;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[3] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Red");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_red;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[4] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Green");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_green;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[5] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Blue");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_blue;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[6] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Cyan");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_cyan;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[7] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Magenta");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_magenta;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[8] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Yellow");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_yellow;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[9] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Reset");
|
2007-10-25 12:41:02 +00:00
|
|
|
pr.second = Color_inherit;
|
2007-09-11 21:27:57 +00:00
|
|
|
color[10] = pr;
|
|
|
|
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static vector<SeriesPair> const getSeriesData()
|
|
|
|
{
|
|
|
|
vector<SeriesPair> series(4);
|
|
|
|
|
|
|
|
SeriesPair pr;
|
|
|
|
|
|
|
|
pr.first = qt_("No change");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = IGNORE_SERIES;
|
2007-09-11 21:27:57 +00:00
|
|
|
series[0] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Medium");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = MEDIUM_SERIES;
|
2007-09-11 21:27:57 +00:00
|
|
|
series[1] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Bold");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = BOLD_SERIES;
|
2007-09-11 21:27:57 +00:00
|
|
|
series[2] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Reset");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = INHERIT_SERIES;
|
2007-09-11 21:27:57 +00:00
|
|
|
series[3] = pr;
|
|
|
|
|
|
|
|
return series;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static vector<FamilyPair> const getFamilyData()
|
|
|
|
{
|
|
|
|
vector<FamilyPair> family(5);
|
|
|
|
|
|
|
|
FamilyPair pr;
|
|
|
|
|
|
|
|
pr.first = qt_("No change");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = IGNORE_FAMILY;
|
2007-09-11 21:27:57 +00:00
|
|
|
family[0] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Roman");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = ROMAN_FAMILY;
|
2007-09-11 21:27:57 +00:00
|
|
|
family[1] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Sans Serif");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = SANS_FAMILY;
|
2007-09-11 21:27:57 +00:00
|
|
|
family[2] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Typewriter");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = TYPEWRITER_FAMILY;
|
2007-09-11 21:27:57 +00:00
|
|
|
family[3] = pr;
|
|
|
|
|
|
|
|
pr.first = qt_("Reset");
|
2007-10-28 18:51:54 +00:00
|
|
|
pr.second = INHERIT_FAMILY;
|
2007-09-11 21:27:57 +00:00
|
|
|
family[4] = pr;
|
|
|
|
|
|
|
|
return family;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-23 09:44:02 +00:00
|
|
|
GuiCharacter::GuiCharacter(GuiView & lv)
|
2007-10-28 18:51:54 +00:00
|
|
|
: GuiDialog(lv, "character"), font_(ignore_font),
|
2007-10-06 11:17:57 +00:00
|
|
|
toggleall_(false), reset_lang_(false)
|
2007-04-25 10:57:54 +00:00
|
|
|
{
|
|
|
|
setupUi(this);
|
2007-09-05 20:33:29 +00:00
|
|
|
setViewTitle(_("Text Style"));
|
|
|
|
|
|
|
|
connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
|
|
|
|
connect(applyPB, SIGNAL(clicked()), this, SLOT(slotApply()));
|
|
|
|
connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
|
2007-04-25 10:57:54 +00:00
|
|
|
|
|
|
|
connect(miscCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(sizeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(familyCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(seriesCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(shapeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(colorCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(langCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(toggleallCB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
family = getFamilyData();
|
|
|
|
series = getSeriesData();
|
|
|
|
shape = getShapeData();
|
|
|
|
size = getSizeData();
|
|
|
|
bar = getBarData();
|
|
|
|
color = getColorData();
|
|
|
|
language = getLanguageData(true);
|
|
|
|
|
|
|
|
for (vector<FamilyPair>::const_iterator cit = family.begin();
|
|
|
|
cit != family.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
familyCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (vector<SeriesPair>::const_iterator cit = series.begin();
|
|
|
|
cit != series.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
seriesCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
for (vector<ShapePair>::const_iterator cit = shape.begin();
|
|
|
|
cit != shape.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
shapeCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
for (vector<SizePair>::const_iterator cit = size.begin();
|
|
|
|
cit != size.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
sizeCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
for (vector<BarPair>::const_iterator cit = bar.begin();
|
|
|
|
cit != bar.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
miscCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
for (vector<ColorPair>::const_iterator cit = color.begin();
|
|
|
|
cit != color.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
colorCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
for (vector<LanguagePair>::const_iterator cit = language.begin();
|
|
|
|
cit != language.end(); ++cit) {
|
2007-09-05 20:33:29 +00:00
|
|
|
langCO->addItem(toqstr(cit->first));
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
bc().setPolicy(ButtonPolicy::OkApplyCancelReadOnlyPolicy);
|
|
|
|
bc().setOK(okPB);
|
|
|
|
bc().setApply(applyPB);
|
|
|
|
bc().setCancel(closePB);
|
|
|
|
bc().addReadOnly(familyCO);
|
|
|
|
bc().addReadOnly(seriesCO);
|
|
|
|
bc().addReadOnly(sizeCO);
|
|
|
|
bc().addReadOnly(shapeCO);
|
|
|
|
bc().addReadOnly(miscCO);
|
|
|
|
bc().addReadOnly(langCO);
|
|
|
|
bc().addReadOnly(colorCO);
|
|
|
|
bc().addReadOnly(toggleallCB);
|
|
|
|
bc().addReadOnly(autoapplyCB);
|
2006-12-24 11:38:19 +00:00
|
|
|
|
|
|
|
// FIXME: hack to work around resizing bug in Qt >= 4.2
|
2007-03-26 14:06:20 +00:00
|
|
|
// bug verified with Qt 4.2.{0-3} (JSpitzm)
|
|
|
|
#if QT_VERSION >= 0x040200
|
2006-12-24 11:38:19 +00:00
|
|
|
// qt resizes the comboboxes only after show(), so ...
|
2007-09-05 20:33:29 +00:00
|
|
|
QDialog::show();
|
2006-12-24 11:38:19 +00:00
|
|
|
#endif
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-06 11:17:57 +00:00
|
|
|
void GuiCharacter::change_adaptor()
|
2007-09-05 20:33:29 +00:00
|
|
|
{
|
|
|
|
changed();
|
|
|
|
|
|
|
|
if (!autoapplyCB->isChecked())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// to be really good here, we should set the combos to the values of
|
|
|
|
// the current text, and make it appear as "no change" if the values
|
|
|
|
// stay the same between applys. Might be difficult though wrt to a
|
|
|
|
// moved cursor - jbl
|
|
|
|
slotApply();
|
|
|
|
familyCO->setCurrentIndex(0);
|
|
|
|
seriesCO->setCurrentIndex(0);
|
|
|
|
sizeCO->setCurrentIndex(0);
|
|
|
|
shapeCO->setCurrentIndex(0);
|
|
|
|
miscCO->setCurrentIndex(0);
|
|
|
|
langCO->setCurrentIndex(0);
|
|
|
|
colorCO->setCurrentIndex(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-06 11:17:57 +00:00
|
|
|
void GuiCharacter::closeEvent(QCloseEvent * e)
|
2007-09-05 20:33:29 +00:00
|
|
|
{
|
2007-09-11 17:06:15 +00:00
|
|
|
slotClose();
|
2007-09-27 14:59:51 +00:00
|
|
|
GuiDialog::closeEvent(e);
|
2007-09-05 20:33:29 +00:00
|
|
|
}
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
template<class A, class B>
|
2007-09-11 21:27:57 +00:00
|
|
|
static int findPos2nd(vector<std::pair<A, B> > const & vec, B const & val)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
typedef typename vector<std::pair<A, B> >::const_iterator
|
|
|
|
const_iterator;
|
|
|
|
|
2007-09-11 21:27:57 +00:00
|
|
|
for (const_iterator cit = vec.begin(); cit != vec.end(); ++cit)
|
2006-03-05 17:24:44 +00:00
|
|
|
if (cit->second == val)
|
|
|
|
return int(cit - vec.begin());
|
2007-09-11 21:27:57 +00:00
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-06 11:17:57 +00:00
|
|
|
void GuiCharacter::updateContents()
|
|
|
|
{
|
|
|
|
familyCO->setCurrentIndex(findPos2nd(family, getFamily()));
|
|
|
|
seriesCO->setCurrentIndex(findPos2nd(series, getSeries()));
|
|
|
|
shapeCO->setCurrentIndex(findPos2nd(shape, getShape()));
|
|
|
|
sizeCO->setCurrentIndex(findPos2nd(size, getSize()));
|
|
|
|
miscCO->setCurrentIndex(findPos2nd(bar, getBar()));
|
|
|
|
colorCO->setCurrentIndex(findPos2nd(color, getColor()));
|
|
|
|
langCO->setCurrentIndex(findPos2nd(language, getLanguage()));
|
|
|
|
|
2007-10-09 21:21:01 +00:00
|
|
|
toggleallCB->setChecked(toggleall_);
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCharacter::applyView()
|
|
|
|
{
|
|
|
|
setFamily(family[familyCO->currentIndex()].second);
|
|
|
|
setSeries(series[seriesCO->currentIndex()].second);
|
|
|
|
setShape(shape[shapeCO->currentIndex()].second);
|
|
|
|
setSize(size[sizeCO->currentIndex()].second);
|
|
|
|
setBar(bar[miscCO->currentIndex()].second);
|
|
|
|
setColor(color[colorCO->currentIndex()].second);
|
|
|
|
setLanguage(language[langCO->currentIndex()].second);
|
|
|
|
|
2007-10-09 21:21:01 +00:00
|
|
|
toggleall_ = toggleallCB->isChecked();
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool GuiCharacter::initialiseParams(string const &)
|
|
|
|
{
|
|
|
|
// so that the user can press Ok
|
2007-10-28 18:51:54 +00:00
|
|
|
if (getFamily() != IGNORE_FAMILY
|
|
|
|
|| getSeries() != IGNORE_SERIES
|
|
|
|
|| getShape() != IGNORE_SHAPE
|
|
|
|
|| getSize() != FONT_SIZE_IGNORE
|
2007-10-06 11:17:57 +00:00
|
|
|
|| getBar() != IGNORE
|
2007-10-25 12:41:02 +00:00
|
|
|
|| getColor() != Color_ignore
|
2007-10-06 11:17:57 +00:00
|
|
|
|| font_.language() != ignore_language)
|
2007-10-09 21:21:01 +00:00
|
|
|
setButtonsValid(true);
|
2007-10-06 11:17:57 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCharacter::dispatchParams()
|
|
|
|
{
|
|
|
|
dispatch(FuncRequest(getLfun(), font_.toString(toggleall_)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
FontFamily GuiCharacter::getFamily() const
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
return font_.fontInfo().family();
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
void GuiCharacter::setFamily(FontFamily val)
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
font_.fontInfo().setFamily(val);
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
FontSeries GuiCharacter::getSeries() const
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
return font_.fontInfo().series();
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
void GuiCharacter::setSeries(FontSeries val)
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
font_.fontInfo().setSeries(val);
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
FontShape GuiCharacter::getShape() const
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
return font_.fontInfo().shape();
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
void GuiCharacter::setShape(FontShape val)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
font_.fontInfo().setShape(val);
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
FontSize GuiCharacter::getSize() const
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
return font_.fontInfo().size();
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
void GuiCharacter::setSize(FontSize val)
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
font_.fontInfo().setSize(val);
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FontState GuiCharacter::getBar() const
|
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
if (font_.fontInfo().emph() == FONT_TOGGLE)
|
2007-10-06 11:17:57 +00:00
|
|
|
return EMPH_TOGGLE;
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
if (font_.fontInfo().underbar() == FONT_TOGGLE)
|
2007-10-06 11:17:57 +00:00
|
|
|
return UNDERBAR_TOGGLE;
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
if (font_.fontInfo().noun() == FONT_TOGGLE)
|
2007-10-06 11:17:57 +00:00
|
|
|
return NOUN_TOGGLE;
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
if (font_.fontInfo().emph() == FONT_IGNORE
|
|
|
|
&& font_.fontInfo().underbar() == FONT_IGNORE
|
|
|
|
&& font_.fontInfo().noun() == FONT_IGNORE)
|
2007-10-06 11:17:57 +00:00
|
|
|
return IGNORE;
|
|
|
|
|
|
|
|
return INHERIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiCharacter::setBar(FontState val)
|
|
|
|
{
|
|
|
|
switch (val) {
|
|
|
|
case IGNORE:
|
2007-10-28 18:51:54 +00:00
|
|
|
font_.fontInfo().setEmph(FONT_IGNORE);
|
|
|
|
font_.fontInfo().setUnderbar(FONT_IGNORE);
|
|
|
|
font_.fontInfo().setNoun(FONT_IGNORE);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EMPH_TOGGLE:
|
2007-10-28 18:51:54 +00:00
|
|
|
font_.fontInfo().setEmph(FONT_TOGGLE);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDERBAR_TOGGLE:
|
2007-10-28 18:51:54 +00:00
|
|
|
font_.fontInfo().setUnderbar(FONT_TOGGLE);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case NOUN_TOGGLE:
|
2007-10-28 18:51:54 +00:00
|
|
|
font_.fontInfo().setNoun(FONT_TOGGLE);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case INHERIT:
|
2007-10-28 18:51:54 +00:00
|
|
|
font_.fontInfo().setEmph(FONT_INHERIT);
|
|
|
|
font_.fontInfo().setUnderbar(FONT_INHERIT);
|
|
|
|
font_.fontInfo().setNoun(FONT_INHERIT);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
2007-10-25 12:41:02 +00:00
|
|
|
ColorCode GuiCharacter::getColor() const
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
return font_.fontInfo().color();
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-25 12:41:02 +00:00
|
|
|
void GuiCharacter::setColor(ColorCode val)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-10-06 11:17:57 +00:00
|
|
|
switch (val) {
|
2007-10-25 12:41:02 +00:00
|
|
|
case Color_ignore:
|
|
|
|
case Color_none:
|
|
|
|
case Color_black:
|
|
|
|
case Color_white:
|
|
|
|
case Color_red:
|
|
|
|
case Color_green:
|
|
|
|
case Color_blue:
|
|
|
|
case Color_cyan:
|
|
|
|
case Color_magenta:
|
|
|
|
case Color_yellow:
|
|
|
|
case Color_inherit:
|
2007-10-28 18:51:54 +00:00
|
|
|
font_.fontInfo().setColor(val);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
2007-10-06 11:17:57 +00:00
|
|
|
string GuiCharacter::getLanguage() const
|
|
|
|
{
|
|
|
|
if (reset_lang_)
|
|
|
|
return "reset";
|
|
|
|
if (font_.language())
|
|
|
|
return font_.language()->lang();
|
|
|
|
return "ignore";
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2007-10-06 11:17:57 +00:00
|
|
|
|
|
|
|
void GuiCharacter::setLanguage(string const & val)
|
|
|
|
{
|
|
|
|
if (val == "ignore")
|
|
|
|
font_.setLanguage(ignore_language);
|
|
|
|
else if (val == "reset") {
|
|
|
|
reset_lang_ = true;
|
|
|
|
// Ignored in getLanguage, but needed for dispatchParams
|
|
|
|
font_.setLanguage(buffer().params().language);
|
|
|
|
} else {
|
|
|
|
font_.setLanguage(languages.getLanguage(val));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-23 09:44:02 +00:00
|
|
|
Dialog * createGuiCharacter(GuiView & lv) { return new GuiCharacter(lv); }
|
2007-10-06 11:17:57 +00:00
|
|
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
2007-04-25 10:57:54 +00:00
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
#include "GuiCharacter_moc.cpp"
|