lyx_mirror/src/frontends/qt4/LengthCombo.cpp

74 lines
1.3 KiB
C++
Raw Normal View History

/**
* \file LengthCombo.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
* \author Herbert Vo<EFBFBD>
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "LengthCombo.h"
#include "lengthcommon.h"
#include "qt_helpers.h"
LengthCombo::LengthCombo(QWidget * parent)
: QComboBox(parent)
{
for (int i = 0; i < lyx::num_units; i++)
addItem(lyx::qt_(lyx::unit_name_gui[i]));
connect(this, SIGNAL(activated(int)),
this, SLOT(has_activated(int)));
}
lyx::Length::UNIT LengthCombo::currentLengthItem() const
{
return static_cast<lyx::Length::UNIT>(currentIndex());
}
void LengthCombo::has_activated(int)
{
// emit signal
selectionChanged(currentLengthItem());
}
void LengthCombo::setCurrentItem(lyx::Length::UNIT unit)
{
QComboBox::setCurrentIndex(int(unit));
}
void LengthCombo::setCurrentItem(int item)
{
QComboBox::setCurrentIndex(item);
}
void LengthCombo::setEnabled(bool b)
{
QComboBox::setEnabled(b);
}
void LengthCombo::noPercents()
{
int num = QComboBox::count();
for (int i = 0; i < num; i++) {
if (QComboBox::itemText(i).contains('%') > 0) {
QComboBox::removeItem(i);
--i;
--num;
}
}
}
#include "LengthCombo_moc.cpp"