用于 QLineEdit 的 Qt inputMask 和 QValidator(十六进制验证)

发布于 2024-12-11 04:31:56 字数 286 浏览 0 评论 0原文

我有一个 QLineEdit,用户可以使用键盘进行输入。 行编辑必须只接受十六进制字符。 行编辑必须自动在每组 2 个十六进制字符之间放置一个分隔符 当用户删除最后一个十六进制字符时,最后一个分隔符应自动删除。

我已经尝试过这个: ui->mTextEdit->setInputMask("Hh,hh,hh,hh,hh");

但不幸的是,当没有文本时,所有逗号都会显示,并且您必须提前知道您想要多少组十六进制数字(我不知道/无法限制)。

我可以使用 QValidator 来为我做这件事吗?

I have a QLineEdit that a user is able to give input to using a keyboard.
The line edit must only accept hexadecimal characters.
The line edit must automatically put a delimiter character between every set of 2 hex characters
The last delimiter character should be automatically removed when the user deletes the last hex characters.

I have tried this:
ui->mTextEdit->setInputMask("Hh,hh,hh,hh,hh");

But unfortunately all of the commas are displayed when there is no text, and you have to know how many sets of hex numbers you want in advance (which I don't know/can't restrict).

Could I use a QValidator to do this for me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

趁微风不噪 2024-12-18 04:31:56

您可以使用 QValidator 的自定义子类,例如 validate(),如下所示:

QValidator::State HexValidator::validate(QString &input, int &pos) const
{
    // remove trailing comma
    if (input.endsWith(',')) {
        input.chop(1);
    }

    // insert comma when third hex in a row was entered
    QRegExp rxThreeHexAtTheEnd("(?:[0-9a-fA-F]{2},)*[0-9a-fA-F]{3}");
    if (rxThreeHexAtTheEnd.exactMatch(input)) {
        input.insert(input.length()-1, ',');
        pos = input.length();
    }

    // match against needed regexp
    QRegExp rx("(?:[0-9a-fA-F]{2},)*[0-9a-fA-F]{0,2}");
    if (rx.exactMatch(input)) {
        return QValidator::Acceptable;
    }
    return QValidator::Invalid;
}

You can use a custom subclass of QValidator, with validate() e.g. like this:

QValidator::State HexValidator::validate(QString &input, int &pos) const
{
    // remove trailing comma
    if (input.endsWith(',')) {
        input.chop(1);
    }

    // insert comma when third hex in a row was entered
    QRegExp rxThreeHexAtTheEnd("(?:[0-9a-fA-F]{2},)*[0-9a-fA-F]{3}");
    if (rxThreeHexAtTheEnd.exactMatch(input)) {
        input.insert(input.length()-1, ',');
        pos = input.length();
    }

    // match against needed regexp
    QRegExp rx("(?:[0-9a-fA-F]{2},)*[0-9a-fA-F]{0,2}");
    if (rx.exactMatch(input)) {
        return QValidator::Acceptable;
    }
    return QValidator::Invalid;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文