lyx_mirror/src/frontends/qt2/lengthcombo.C
Lars Gullik Bjønnes 2e5976a0be Cleanup usage of contains and simplify a bit.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8378 a592a061-630c-0410-9148-cb99ea01b6c8
2004-02-01 12:46:14 +00:00

72 lines
1.2 KiB
C

/**
* \file lengthcombo.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
* \author Herbert Voß
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "lengthcombo.h"
#include "lengthcommon.h"
LengthCombo::LengthCombo(QWidget * parent, char * name)
: QComboBox(parent, name)
{
for (int i=0; i < num_units; i++)
insertItem(unit_name_gui[i]);
connect(this, SIGNAL(activated(int)),
this, SLOT(has_activated(int)));
}
LyXLength::UNIT LengthCombo::currentLengthItem() const
{
return static_cast<LyXLength::UNIT>(currentItem());
}
void LengthCombo::has_activated(int)
{
emit selectionChanged(currentLengthItem());
}
void LengthCombo::setCurrentItem(LyXLength::UNIT unit)
{
QComboBox::setCurrentItem(int(unit));
}
void LengthCombo::setCurrentItem(int item)
{
QComboBox::setCurrentItem(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::text(i).contains('%') > 0) {
QComboBox::removeItem(i);
i -= 1;
num -= 1;
}
}
}