dolphin/Source/Core/DolphinQt/QtUtils/UTF8CodePointCountValidator.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
442 B
C
Raw Normal View History

// Copyright 2020 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
2020-11-21 01:05:01 +01:00
#include <cstddef>
#include <QString>
#include <QValidator>
class UTF8CodePointCountValidator : public QValidator
{
Q_OBJECT
public:
2020-11-21 01:05:01 +01:00
explicit UTF8CodePointCountValidator(std::size_t max_count, QObject* parent = nullptr);
QValidator::State validate(QString& input, int& pos) const override;
2020-11-21 01:05:01 +01:00
private:
std::size_t m_max_count;
};