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"
|
2008-05-07 18:53:48 +00:00
|
|
|
#include "BufferView.h"
|
|
|
|
#include "Cursor.h"
|
2007-10-06 11:17:57 +00:00
|
|
|
#include "FuncRequest.h"
|
|
|
|
#include "Language.h"
|
2008-05-07 18:53:48 +00:00
|
|
|
#include "Paragraph.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
|
|
|
}
|
|
|
|
|
2008-05-07 22:42:44 +00:00
|
|
|
|
|
|
|
static QList<LanguagePair> languageData()
|
|
|
|
{
|
|
|
|
QList<LanguagePair> list;
|
|
|
|
Languages::const_iterator it = languages.begin();
|
|
|
|
for (; it != languages.end(); ++it) {
|
|
|
|
list << LanguagePair(
|
|
|
|
qt_(it->second.display()), toqstr(it->second.lang()));
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
namespace {
|
|
|
|
|
2008-05-07 21:05:04 +00:00
|
|
|
template<typename T>
|
2008-05-07 22:42:44 +00:00
|
|
|
void fillCombo(QComboBox * combo, QList<T> const & list)
|
2008-05-07 18:53:48 +00:00
|
|
|
{
|
2008-05-07 21:05:04 +00:00
|
|
|
typename QList<T>::const_iterator cit = list.begin();
|
2008-05-07 18:53:48 +00:00
|
|
|
for (; cit != list.end(); ++cit)
|
|
|
|
combo->addItem(cit->first);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2007-09-11 21:27:57 +00:00
|
|
|
|
2007-11-23 09:44:02 +00:00
|
|
|
GuiCharacter::GuiCharacter(GuiView & lv)
|
2008-05-07 15:41:12 +00:00
|
|
|
: GuiDialog(lv, "character", qt_("Text Style")), font_(ignore_font, ignore_language),
|
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();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
language = languageData();
|
|
|
|
language.prepend(LanguagePair(qt_("Reset"), "reset"));
|
|
|
|
language.prepend(LanguagePair(qt_("No change"), "ignore"));
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
fillCombo(familyCO, family);
|
|
|
|
fillCombo(seriesCO, series);
|
|
|
|
fillCombo(sizeCO, size);
|
|
|
|
fillCombo(shapeCO, shape);
|
|
|
|
fillCombo(miscCO, bar);
|
|
|
|
fillCombo(colorCO, color);
|
|
|
|
fillCombo(langCO, language);
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-20 20:32:00 +00:00
|
|
|
template<class P, class B>
|
|
|
|
static int findPos2nd(QList<P> 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()
|
|
|
|
{
|
2008-05-07 18:53:48 +00:00
|
|
|
if (!autoapplyCB->isChecked())
|
|
|
|
return;
|
|
|
|
if (bufferview()->cursor().selection()) {
|
|
|
|
//FIXME: it would be better to check if each font attribute is constant
|
|
|
|
// for the selection range.
|
|
|
|
font_ = Font(ignore_font, ignore_language);
|
|
|
|
} else
|
|
|
|
font_ = bufferview()->cursor().current_font;
|
|
|
|
|
|
|
|
paramsToDialog(font_);
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
static FontState getBar(FontInfo const & fi)
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2008-05-07 18:53:48 +00:00
|
|
|
if (fi.emph() == FONT_TOGGLE)
|
2007-10-06 11:17:57 +00:00
|
|
|
return EMPH_TOGGLE;
|
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
if (fi.underbar() == FONT_TOGGLE)
|
2007-10-06 11:17:57 +00:00
|
|
|
return UNDERBAR_TOGGLE;
|
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
if (fi.noun() == FONT_TOGGLE)
|
2007-10-06 11:17:57 +00:00
|
|
|
return NOUN_TOGGLE;
|
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
if (fi.emph() == FONT_IGNORE
|
|
|
|
&& fi.underbar() == FONT_IGNORE
|
|
|
|
&& fi.noun() == FONT_IGNORE)
|
2007-10-06 11:17:57 +00:00
|
|
|
return IGNORE;
|
|
|
|
|
|
|
|
return INHERIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
static void setBar(FontInfo & fi, FontState val)
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
|
|
|
switch (val) {
|
|
|
|
case IGNORE:
|
2008-05-07 18:53:48 +00:00
|
|
|
fi.setEmph(FONT_IGNORE);
|
|
|
|
fi.setUnderbar(FONT_IGNORE);
|
|
|
|
fi.setNoun(FONT_IGNORE);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EMPH_TOGGLE:
|
2008-05-07 18:53:48 +00:00
|
|
|
fi.setEmph(FONT_TOGGLE);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UNDERBAR_TOGGLE:
|
2008-05-07 18:53:48 +00:00
|
|
|
fi.setUnderbar(FONT_TOGGLE);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case NOUN_TOGGLE:
|
2008-05-07 18:53:48 +00:00
|
|
|
fi.setNoun(FONT_TOGGLE);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case INHERIT:
|
2008-05-07 18:53:48 +00:00
|
|
|
fi.setEmph(FONT_INHERIT);
|
|
|
|
fi.setUnderbar(FONT_INHERIT);
|
|
|
|
fi.setNoun(FONT_INHERIT);
|
2007-10-06 11:17:57 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
void GuiCharacter::paramsToDialog(Font const & font)
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2008-05-07 18:53:48 +00:00
|
|
|
FontInfo const & fi = font.fontInfo();
|
|
|
|
familyCO->setCurrentIndex(findPos2nd(family, fi.family()));
|
|
|
|
seriesCO->setCurrentIndex(findPos2nd(series, fi.series()));
|
|
|
|
shapeCO->setCurrentIndex(findPos2nd(shape, fi.shape()));
|
|
|
|
sizeCO->setCurrentIndex(findPos2nd(size, fi.size()));
|
|
|
|
miscCO->setCurrentIndex(findPos2nd(bar, getBar(fi)));
|
|
|
|
colorCO->setCurrentIndex(findPos2nd(color, fi.color()));
|
|
|
|
|
2008-05-07 23:33:56 +00:00
|
|
|
// reset_language is a null pointer.
|
|
|
|
QString const lang = (font.language() == reset_language)
|
|
|
|
? "reset" : toqstr(font.language()->lang());
|
2008-05-07 18:53:48 +00:00
|
|
|
langCO->setCurrentIndex(findPos2nd(language, lang));
|
|
|
|
|
|
|
|
toggleallCB->setChecked(toggleall_);
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
void GuiCharacter::applyView()
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2008-05-07 18:53:48 +00:00
|
|
|
FontInfo & fi = font_.fontInfo();
|
|
|
|
fi.setFamily(family[familyCO->currentIndex()].second);
|
|
|
|
fi.setSeries(series[seriesCO->currentIndex()].second);
|
|
|
|
fi.setShape(shape[shapeCO->currentIndex()].second);
|
|
|
|
fi.setSize(size[sizeCO->currentIndex()].second);
|
|
|
|
setBar(fi, bar[miscCO->currentIndex()].second);
|
|
|
|
fi.setColor(color[colorCO->currentIndex()].second);
|
|
|
|
|
|
|
|
font_.setLanguage(languages.getLanguage(
|
|
|
|
fromqstr(language[langCO->currentIndex()].second)));
|
|
|
|
|
|
|
|
toggleall_ = toggleallCB->isChecked();
|
2007-10-06 11:17:57 +00:00
|
|
|
}
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
bool GuiCharacter::initialiseParams(string const &)
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2008-05-07 23:33:56 +00:00
|
|
|
if (autoapplyCB->isChecked())
|
|
|
|
return true;
|
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
FontInfo & fi = font_.fontInfo();
|
|
|
|
|
|
|
|
// so that the user can press Ok
|
|
|
|
if (fi.family() != IGNORE_FAMILY
|
|
|
|
|| fi.series() != IGNORE_SERIES
|
|
|
|
|| fi.shape() != IGNORE_SHAPE
|
|
|
|
|| fi.size() != FONT_SIZE_IGNORE
|
|
|
|
|| getBar(fi) != IGNORE
|
|
|
|
|| fi.color() != Color_ignore
|
|
|
|
|| font_.language() != ignore_language)
|
|
|
|
setButtonsValid(true);
|
|
|
|
|
|
|
|
paramsToDialog(font_);
|
|
|
|
return true;
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
2007-10-06 11:17:57 +00:00
|
|
|
|
2008-05-07 18:53:48 +00:00
|
|
|
void GuiCharacter::dispatchParams()
|
2007-10-06 11:17:57 +00:00
|
|
|
{
|
2008-05-07 18:53:48 +00:00
|
|
|
dispatch(FuncRequest(getLfun(), font_.toString(toggleall_)));
|
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"
|