-
-
Notifications
You must be signed in to change notification settings - Fork 342
Expand file tree
/
Copy pathHexStringValidator.cpp
More file actions
76 lines (61 loc) · 1.38 KB
/
Copy pathHexStringValidator.cpp
File metadata and controls
76 lines (61 loc) · 1.38 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* Copyright (C) 2006 - 2025 Evan Teran <evan.teran@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "HexStringValidator.h"
#include <QString>
#include <cctype> // for std::isxdigit
/**
* @brief Constructor for the HexStringValidator class.
*
* @param parent The parent object.
*/
HexStringValidator::HexStringValidator(QObject *parent)
: QValidator(parent) {
}
/**
* @brief
*/
void HexStringValidator::fixup(QString &input) const {
QString temp;
int index = 0;
for (QChar ch : input) {
const int c = ch.toLatin1();
if (c < 0x80 && std::isxdigit(c)) {
if (index != 0 && (index & 1) == 0) {
temp += ' ';
}
temp += ch.toUpper();
++index;
}
}
input = temp;
}
/**
* @brief
*/
QValidator::State HexStringValidator::validate(QString &input, int &pos) const {
if (!input.isEmpty()) {
// TODO: can we detect if the char which was JUST deleted
// (if any was deleted) was a space? and special case this?
// as to not have the minor bug in this case?
const qsizetype char_pos = pos - input.left(pos).count(' ');
int chars = 0;
fixup(input);
pos = 0;
while (pos < input.size() && chars != char_pos) {
if (input[pos] != ' ') {
++chars;
}
++pos;
}
if (pos < input.size()) {
// favor the right side of a space
if (input[pos] == ' ') {
++pos;
}
}
}
return QValidator::Acceptable;
}