2020-07-16 22:47:51 +00:00
|
|
|
// Copyright 2020 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-07-16 22:47:51 +00:00
|
|
|
|
|
|
|
#include "DolphinQt/QtUtils/UTF8CodePointCountValidator.h"
|
|
|
|
|
|
|
|
#include "Common/StringUtil.h"
|
|
|
|
|
2020-11-21 00:05:01 +00:00
|
|
|
UTF8CodePointCountValidator::UTF8CodePointCountValidator(std::size_t max_count, QObject* parent)
|
2020-07-16 22:47:51 +00:00
|
|
|
: 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;
|
|
|
|
}
|