mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
0be0fcfd59
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7598 a592a061-630c-0410-9148-cb99ea01b6c8
150 lines
4.1 KiB
C
150 lines
4.1 KiB
C
/**
|
|
* \file QCharacter.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
|
|
#include "ControlCharacter.h"
|
|
#include "QCharacterDialog.h"
|
|
#include "QCharacter.h"
|
|
#include "Qt2BC.h"
|
|
|
|
#include "qt_helpers.h"
|
|
#include "support/lstrings.h"
|
|
|
|
#include <qcombobox.h>
|
|
#include <qcheckbox.h>
|
|
#include <qpushbutton.h>
|
|
|
|
#include <vector>
|
|
|
|
using namespace frnt;
|
|
using std::vector;
|
|
|
|
typedef QController<ControlCharacter, QView<QCharacterDialog> > base_class;
|
|
|
|
|
|
QCharacter::QCharacter(Dialog & parent)
|
|
: base_class(parent, _("LyX: Change Text Style"))
|
|
{
|
|
}
|
|
|
|
|
|
void QCharacter::build_dialog()
|
|
{
|
|
dialog_.reset(new QCharacterDialog(this));
|
|
|
|
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) {
|
|
dialog_->familyCO->insertItem(toqstr(cit->first), -1);
|
|
}
|
|
|
|
for (vector<SeriesPair>::const_iterator cit = series.begin();
|
|
cit != series.end(); ++cit) {
|
|
dialog_->seriesCO->insertItem(toqstr(cit->first), -1);
|
|
}
|
|
for (vector<ShapePair>::const_iterator cit = shape.begin();
|
|
cit != shape.end(); ++cit) {
|
|
dialog_->shapeCO->insertItem(toqstr(cit->first), -1);
|
|
}
|
|
for (vector<SizePair>::const_iterator cit = size.begin();
|
|
cit != size.end(); ++cit) {
|
|
dialog_->sizeCO->insertItem(toqstr(cit->first), -1);
|
|
}
|
|
for (vector<BarPair>::const_iterator cit = bar.begin();
|
|
cit != bar.end(); ++cit) {
|
|
dialog_->miscCO->insertItem(toqstr(cit->first), -1);
|
|
}
|
|
for (vector<ColorPair>::const_iterator cit = color.begin();
|
|
cit != color.end(); ++cit) {
|
|
dialog_->colorCO->insertItem(toqstr(cit->first), -1);
|
|
}
|
|
for (vector<LanguagePair>::const_iterator cit = language.begin();
|
|
cit != language.end(); ++cit) {
|
|
dialog_->langCO->insertItem(toqstr(cit->first), -1);
|
|
}
|
|
|
|
bcview().setOK(dialog_->okPB);
|
|
bcview().setApply(dialog_->applyPB);
|
|
bcview().setCancel(dialog_->closePB);
|
|
bcview().addReadOnly(dialog_->familyCO);
|
|
bcview().addReadOnly(dialog_->seriesCO);
|
|
bcview().addReadOnly(dialog_->sizeCO);
|
|
bcview().addReadOnly(dialog_->shapeCO);
|
|
bcview().addReadOnly(dialog_->miscCO);
|
|
bcview().addReadOnly(dialog_->langCO);
|
|
bcview().addReadOnly(dialog_->colorCO);
|
|
bcview().addReadOnly(dialog_->toggleallCB);
|
|
bcview().addReadOnly(dialog_->autoapplyCB);
|
|
}
|
|
|
|
|
|
namespace {
|
|
|
|
template<class A, class B>
|
|
int findPos2nd(vector<std::pair<A,B> > const & vec, B const & val)
|
|
{
|
|
typedef typename vector<std::pair<A, B> >::const_iterator
|
|
const_iterator;
|
|
|
|
const_iterator cit = vec.begin();
|
|
for (; cit != vec.end(); ++cit) {
|
|
if (cit->second == val)
|
|
return int(cit - vec.begin());
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
} // namespace anon
|
|
|
|
|
|
void QCharacter::update_contents()
|
|
{
|
|
ControlCharacter const & ctrl = controller();
|
|
|
|
dialog_->familyCO->setCurrentItem(findPos2nd(family,
|
|
ctrl.getFamily()));
|
|
dialog_->seriesCO->setCurrentItem(findPos2nd(series,
|
|
ctrl.getSeries()));
|
|
dialog_->shapeCO->setCurrentItem(findPos2nd(shape, ctrl.getShape()));
|
|
dialog_->sizeCO->setCurrentItem(findPos2nd(size, ctrl.getSize()));
|
|
dialog_->miscCO->setCurrentItem(findPos2nd(bar, ctrl.getBar()));
|
|
dialog_->colorCO->setCurrentItem(findPos2nd(color, ctrl.getColor()));
|
|
dialog_->langCO->setCurrentItem(findPos2nd(language,
|
|
ctrl.getLanguage()));
|
|
|
|
dialog_->toggleallCB->setChecked(ctrl.getToggleAll());
|
|
}
|
|
|
|
|
|
void QCharacter::apply()
|
|
{
|
|
ControlCharacter & ctrl = controller();
|
|
|
|
ctrl.setFamily(family[dialog_->familyCO->currentItem()].second);
|
|
ctrl.setSeries(series[dialog_->seriesCO->currentItem()].second);
|
|
ctrl.setShape(shape[dialog_->shapeCO->currentItem()].second);
|
|
ctrl.setSize(size[dialog_->sizeCO->currentItem()].second);
|
|
ctrl.setBar(bar[dialog_->miscCO->currentItem()].second);
|
|
ctrl.setColor(color[dialog_->colorCO->currentItem()].second);
|
|
ctrl.setLanguage(language[dialog_->langCO->currentItem()].second);
|
|
|
|
ctrl.setToggleAll(dialog_->toggleallCB->isChecked());
|
|
}
|