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-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
static QList<ShapePair> shapeData()
|
2007-09-11 21:27:57 +00:00
|
|
|
{
|
2008-03-08 07:59:47 +00:00
|
|
|
QList<ShapePair> shapes;
|
|
|
|
shapes << ShapePair(qt_("No change"), IGNORE_SHAPE);
|
|
|
|
shapes << ShapePair(qt_("Upright"), UP_SHAPE);
|
|
|
|
shapes << ShapePair(qt_("Italic"), ITALIC_SHAPE);
|
|
|
|
shapes << ShapePair(qt_("Slanted"), SLANTED_SHAPE);
|
|
|
|
shapes << ShapePair(qt_("Small Caps"), SMALLCAPS_SHAPE);
|
|
|
|
shapes << ShapePair(qt_("Reset"), INHERIT_SHAPE);
|
|
|
|
return shapes;
|
2007-09-11 21:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
static QList<SizePair> sizeData()
|
2007-09-11 21:27:57 +00:00
|
|
|
{
|
2008-03-08 07:59:47 +00:00
|
|
|
QList<SizePair> sizes;
|
|
|
|
sizes << SizePair(qt_("No change"), FONT_SIZE_IGNORE);
|
|
|
|
sizes << SizePair(qt_("Tiny"), FONT_SIZE_TINY);
|
|
|
|
sizes << SizePair(qt_("Smallest"), FONT_SIZE_SCRIPT);
|
|
|
|
sizes << SizePair(qt_("Smaller"), FONT_SIZE_FOOTNOTE);
|
|
|
|
sizes << SizePair(qt_("Small"), FONT_SIZE_SMALL);
|
|
|
|
sizes << SizePair(qt_("Normal"), FONT_SIZE_NORMAL);
|
|
|
|
sizes << SizePair(qt_("Large"), FONT_SIZE_LARGE);
|
|
|
|
sizes << SizePair(qt_("Larger"), FONT_SIZE_LARGER);
|
|
|
|
sizes << SizePair(qt_("Largest"), FONT_SIZE_LARGEST);
|
|
|
|
sizes << SizePair(qt_("Huge"), FONT_SIZE_HUGE);
|
|
|
|
sizes << SizePair(qt_("Huger"), FONT_SIZE_HUGER);
|
|
|
|
sizes << SizePair(qt_("Increase"), FONT_SIZE_INCREASE);
|
|
|
|
sizes << SizePair(qt_("Decrease"), FONT_SIZE_DECREASE);
|
|
|
|
sizes << SizePair(qt_("Reset"), FONT_SIZE_INHERIT);
|
|
|
|
return sizes;
|
2007-09-11 21:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
static QList<BarPair> barData()
|
2007-09-11 21:27:57 +00:00
|
|
|
{
|
2008-03-08 07:59:47 +00:00
|
|
|
QList<BarPair> bars;
|
|
|
|
bars << BarPair(qt_("No change"), IGNORE);
|
|
|
|
bars << BarPair(qt_("Emph"), EMPH_TOGGLE);
|
|
|
|
bars << BarPair(qt_("Underbar"), UNDERBAR_TOGGLE);
|
|
|
|
bars << BarPair(qt_("Noun"), NOUN_TOGGLE);
|
|
|
|
bars << BarPair(qt_("Reset"), INHERIT);
|
|
|
|
return bars;
|
2007-09-11 21:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
static QList<ColorPair> colorData()
|
2007-09-11 21:27:57 +00:00
|
|
|
{
|
2008-03-08 07:59:47 +00:00
|
|
|
QList<ColorPair> colors;
|
|
|
|
colors << ColorPair(qt_("No change"), Color_ignore);
|
|
|
|
colors << ColorPair(qt_("No color"), Color_none);
|
|
|
|
colors << ColorPair(qt_("Black"), Color_black);
|
|
|
|
colors << ColorPair(qt_("White"), Color_white);
|
|
|
|
colors << ColorPair(qt_("Red"), Color_red);
|
|
|
|
colors << ColorPair(qt_("Green"), Color_green);
|
|
|
|
colors << ColorPair(qt_("Blue"), Color_blue);
|
|
|
|
colors << ColorPair(qt_("Cyan"), Color_cyan);
|
|
|
|
colors << ColorPair(qt_("Magenta"), Color_magenta);
|
|
|
|
colors << ColorPair(qt_("Yellow"), Color_yellow);
|
|
|
|
colors << ColorPair(qt_("Reset"), Color_inherit);
|
|
|
|
return colors;
|
2007-09-11 21:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
static QList<SeriesPair> seriesData()
|
2007-09-11 21:27:57 +00:00
|
|
|
{
|
2008-03-08 07:59:47 +00:00
|
|
|
QList<SeriesPair> series;
|
|
|
|
series << SeriesPair(qt_("No change"), IGNORE_SERIES);
|
|
|
|
series << SeriesPair(qt_("Medium"), MEDIUM_SERIES);
|
|
|
|
series << SeriesPair(qt_("Bold"), BOLD_SERIES);
|
|
|
|
series << SeriesPair(qt_("Reset"), INHERIT_SERIES);
|
2007-09-11 21:27:57 +00:00
|
|
|
return series;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
static QList<FamilyPair> familyData()
|
2007-09-11 21:27:57 +00:00
|
|
|
{
|
2008-03-08 07:59:47 +00:00
|
|
|
QList<FamilyPair> families;
|
|
|
|
families << FamilyPair(qt_("No change"), IGNORE_FAMILY);
|
|
|
|
families << FamilyPair(qt_("Roman"), ROMAN_FAMILY);
|
|
|
|
families << FamilyPair(qt_("Sans Serif"), SANS_FAMILY);
|
|
|
|
families << FamilyPair(qt_("Typewriter"), TYPEWRITER_FAMILY);
|
|
|
|
families << FamilyPair(qt_("Reset"), INHERIT_FAMILY);
|
|
|
|
return families;
|
2007-09-11 21:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-23 09:44:02 +00:00
|
|
|
GuiCharacter::GuiCharacter(GuiView & lv)
|
2008-02-05 12:43:19 +00:00
|
|
|
: GuiDialog(lv, "character", qt_("Text Style")), 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
|
|
|
|
|
|
|
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
|
|
|
|
2008-01-25 22:31:33 +00:00
|
|
|
#ifdef Q_WS_MACX
|
|
|
|
// On Mac it's common to have tool windows which are always in the
|
|
|
|
// foreground and are hidden when the main window is not focused.
|
|
|
|
setWindowFlags(Qt::Tool);
|
|
|
|
autoapplyCB->setChecked(true);
|
|
|
|
#endif
|
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
family = familyData();
|
|
|
|
series = seriesData();
|
|
|
|
shape = shapeData();
|
|
|
|
size = sizeData();
|
|
|
|
bar = barData();
|
|
|
|
color = colorData();
|
|
|
|
language = languageData(true);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
for (QList<FamilyPair>::const_iterator cit = family.begin();
|
2006-03-05 17:24:44 +00:00
|
|
|
cit != family.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
familyCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
for (QList<SeriesPair>::const_iterator cit = series.begin();
|
2006-03-05 17:24:44 +00:00
|
|
|
cit != series.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
seriesCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
2008-03-08 07:59:47 +00:00
|
|
|
for (QList<ShapePair>::const_iterator cit = shape.begin();
|
2006-03-05 17:24:44 +00:00
|
|
|
cit != shape.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
shapeCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
2008-03-08 07:59:47 +00:00
|
|
|
for (QList<SizePair>::const_iterator cit = size.begin();
|
2006-03-05 17:24:44 +00:00
|
|
|
cit != size.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
sizeCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
2008-03-08 07:59:47 +00:00
|
|
|
for (QList<BarPair>::const_iterator cit = bar.begin();
|
2006-03-05 17:24:44 +00:00
|
|
|
cit != bar.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
miscCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
2008-03-08 07:59:47 +00:00
|
|
|
for (QList<ColorPair>::const_iterator cit = color.begin();
|
2006-03-05 17:24:44 +00:00
|
|
|
cit != color.end(); ++cit) {
|
2007-09-11 21:27:57 +00:00
|
|
|
colorCO->addItem(cit->first);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
2008-03-08 07:59:47 +00:00
|
|
|
for (QList<LanguagePair>::const_iterator cit = language.begin();
|
2006-03-05 17:24:44 +00:00
|
|
|
cit != language.end(); ++cit) {
|
2008-03-08 07:59:47 +00:00
|
|
|
langCO->addItem(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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
template<class B>
|
|
|
|
static int findPos2nd(QList<pair<QString, B> > const & vec, B const & val)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2008-03-08 07:59:47 +00:00
|
|
|
for (int i = 0; i != vec.size(); ++i)
|
|
|
|
if (vec[i].second == val)
|
|
|
|
return i;
|
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
|
|
|
|
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
QString GuiCharacter::getLanguage() const
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
|
|
|
if (reset_lang_)
|
|
|
|
return "reset";
|
|
|
|
if (font_.language())
|
2008-03-08 07:59:47 +00:00
|
|
|
return toqstr(font_.language()->lang());
|
2007-10-06 11:17:57 +00:00
|
|
|
return "ignore";
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2007-10-06 11:17:57 +00:00
|
|
|
|
2008-03-08 07:59:47 +00:00
|
|
|
void GuiCharacter::setLanguage(QString const & val)
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
|
|
|
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 {
|
2008-03-08 07:59:47 +00:00
|
|
|
font_.setLanguage(languages.getLanguage(fromqstr(val)));
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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"
|