mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
QtUtils: Add UTF8CodePointCountValidator
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
// Copyright 2020 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "DolphinQt/QtUtils/UTF8CodePointCountValidator.h"
|
||||
|
||||
#include "Common/StringUtil.h"
|
||||
|
||||
UTF8CodePointCountValidator::UTF8CodePointCountValidator(int max_count, QObject* parent)
|
||||
: QValidator(parent), m_max_count(max_count)
|
||||
{
|
||||
}
|
||||
|
||||
QValidator::State UTF8CodePointCountValidator::validate(QString& input, int& pos) const
|
||||
{
|
||||
if (StringUTF8CodePointCount(input.toStdString()) > m_max_count)
|
||||
return QValidator::Invalid;
|
||||
|
||||
return QValidator::Acceptable;
|
||||
}
|
19
Source/Core/DolphinQt/QtUtils/UTF8CodePointCountValidator.h
Normal file
19
Source/Core/DolphinQt/QtUtils/UTF8CodePointCountValidator.h
Normal file
@ -0,0 +1,19 @@
|
||||
// Copyright 2020 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QString>
|
||||
#include <QValidator>
|
||||
|
||||
class UTF8CodePointCountValidator : public QValidator
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit UTF8CodePointCountValidator(int max_count, QObject* parent = nullptr);
|
||||
|
||||
QValidator::State validate(QString& input, int& pos) const override;
|
||||
|
||||
int m_max_count;
|
||||
};
|
Reference in New Issue
Block a user