Files

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

22 lines
442 B
C++
Raw Permalink Normal View History

2020-07-16 18:47:51 -04:00
// Copyright 2020 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-07-16 18:47:51 -04:00
#pragma once
2020-11-21 01:05:01 +01:00
#include <cstddef>
2020-07-16 18:47:51 -04:00
#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);
2020-07-16 18:47:51 -04:00
QValidator::State validate(QString& input, int& pos) const override;
2020-11-21 01:05:01 +01:00
private:
std::size_t m_max_count;
2020-07-16 18:47:51 -04:00
};