/** * \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 #ifdef __GNUG__ #pragma implementation #endif #include "ControlCharacter.h" #include "QCharacterDialog.h" #include "QCharacter.h" #include "Qt2BC.h" #include "gettext.h" #include "support/lstrings.h" #include #include #include #include using namespace frnt; using std::vector; typedef Qt2CB > base_class; QCharacter::QCharacter() : base_class(_("Character")) { } 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::const_iterator cit = family.begin(); cit != family.end(); ++cit) { dialog_->familyCO->insertItem(cit->first.c_str(), -1); } for (vector::const_iterator cit = series.begin(); cit != series.end(); ++cit) { dialog_->seriesCO->insertItem(cit->first.c_str(), -1); } for (vector::const_iterator cit = shape.begin(); cit != shape.end(); ++cit) { dialog_->shapeCO->insertItem(cit->first.c_str(), -1); } for (vector::const_iterator cit = size.begin(); cit != size.end(); ++cit) { dialog_->sizeCO->insertItem(cit->first.c_str(), -1); } for (vector::const_iterator cit = bar.begin(); cit != bar.end(); ++cit) { dialog_->miscCO->insertItem(cit->first.c_str(), -1); } for (vector::const_iterator cit = color.begin(); cit != color.end(); ++cit) { dialog_->colorCO->insertItem(cit->first.c_str(), -1); } for (vector::const_iterator cit = language.begin(); cit != language.end(); ++cit) { dialog_->langCO->insertItem(cit->first.c_str(), -1); } bc().setOK(dialog_->okPB); bc().setApply(dialog_->applyPB); bc().setCancel(dialog_->closePB); bc().addReadOnly(dialog_->familyCO); bc().addReadOnly(dialog_->seriesCO); bc().addReadOnly(dialog_->sizeCO); bc().addReadOnly(dialog_->shapeCO); bc().addReadOnly(dialog_->miscCO); bc().addReadOnly(dialog_->langCO); bc().addReadOnly(dialog_->colorCO); bc().addReadOnly(dialog_->toggleallCB); bc().addReadOnly(dialog_->autoapplyCB); } namespace { template int findPos2nd(vector > const & vec, B const & val) { typedef typename vector >::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()); }