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
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-11-21 00:05:01 +00:00
|
|
|
#include <cstddef>
|
|
|
|
|
2020-07-16 22:47:51 +00:00
|
|
|
#include <QString>
|
|
|
|
#include <QValidator>
|
|
|
|
|
|
|
|
class UTF8CodePointCountValidator : public QValidator
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-11-21 00:05:01 +00:00
|
|
|
explicit UTF8CodePointCountValidator(std::size_t max_count, QObject* parent = nullptr);
|
2020-07-16 22:47:51 +00:00
|
|
|
|
|
|
|
QValidator::State validate(QString& input, int& pos) const override;
|
|
|
|
|
2020-11-21 00:05:01 +00:00
|
|
|
private:
|
|
|
|
std::size_t m_max_count;
|
2020-07-16 22:47:51 +00:00
|
|
|
};
|