HexSpinBox.cpp 676 Bytes
Newer Older
oberion's avatar
oberion committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include "HexSpinBox.h"

#include <qregexp.h>

HexSpinBox::HexSpinBox(QWidget *parent)
    : QSpinBox(parent), validator(NULL)
{
    setRange(0, 0x7fffffff);
    validator = new QRegExpValidator(QRegExp("[0-9A-Fa-f]{1,8}"), this);
}

HexSpinBox::~HexSpinBox(void)
{
	if(this->validator)
	{
		delete this->validator;
		this->validator = NULL;
	}
}

QValidator::State HexSpinBox::validate(QString &text, int &pos) const
{
    return validator->validate(text, pos);
}

QString HexSpinBox::textFromValue(int value) const
{
    return QString::number(value, 16).toUpper();
}

int HexSpinBox::valueFromText(const QString &text) const
{
    bool ok;
    return text.toInt(&ok, 16);
}