You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
1.8 KiB
88 lines
1.8 KiB
// (c) 2000 Peter Putzer
|
|
|
|
#include <tqlineedit.h>
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include "ksv_core.h"
|
|
#include "SpinBox.h"
|
|
|
|
KSVSpinBox::KSVSpinBox (TQWidget* parent, const char* name)
|
|
: TQSpinBox (0, 99, 1, parent, name),
|
|
KCompletionBase (),
|
|
mClearedSelection (false)
|
|
{
|
|
KCompletion* comp = ksv::numberCompletion();
|
|
setCompletionObject (comp, true);
|
|
|
|
editor()->installEventFilter (this);
|
|
|
|
connect (editor(), TQT_SIGNAL (textChanged (const TQString&)),
|
|
comp, TQT_SLOT (slotMakeCompletion (const TQString&)));
|
|
connect (comp, TQT_SIGNAL (match (const TQString&)),
|
|
this, TQT_SLOT (handleMatch (const TQString&)));
|
|
}
|
|
|
|
KSVSpinBox::~KSVSpinBox ()
|
|
{
|
|
}
|
|
|
|
TQString KSVSpinBox::mapValueToText (int value)
|
|
{
|
|
TQString result;
|
|
|
|
if (value < 10)
|
|
result.sprintf("%.2i", value);
|
|
else
|
|
result.setNum (value);
|
|
|
|
return result;
|
|
}
|
|
|
|
void KSVSpinBox::setCompletedText (const TQString& text)
|
|
{
|
|
TQLineEdit* e = editor ();
|
|
const int pos = e->cursorPosition();
|
|
|
|
e->setText (text);
|
|
|
|
e->setSelection (pos, text.length());
|
|
e->setCursorPosition (pos);
|
|
}
|
|
|
|
void KSVSpinBox::setCompletedItems (const TQStringList& /*items*/)
|
|
{
|
|
// dont know what is supposed to be in here but it has to be defined
|
|
// because else the lack of this damn thing is making it abstract
|
|
}
|
|
|
|
void KSVSpinBox::handleMatch (const TQString& match)
|
|
{
|
|
if (!match.isNull() && editor()->text().length() < 2 && !mClearedSelection)
|
|
setCompletedText (match);
|
|
}
|
|
|
|
bool KSVSpinBox::eventFilter (TQObject* o, TQEvent* e)
|
|
{
|
|
Q_UNUSED(o);
|
|
if (e->type() == TQEvent::KeyPress)
|
|
{
|
|
TQKeyEvent* ke = TQT_TQKEYEVENT(e);
|
|
|
|
switch (ke->key())
|
|
{
|
|
case Key_BackSpace:
|
|
case Key_Delete:
|
|
mClearedSelection = true;
|
|
break;
|
|
|
|
default:
|
|
mClearedSelection = false;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
#include "SpinBox.moc"
|