summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/QtUtils/UTF8CodePointCountValidator.cpp
blob: 291eb5382247ec7536c2667d78826f0c1b4e05c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2020 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "DolphinQt/QtUtils/UTF8CodePointCountValidator.h"

#include "Common/StringUtil.h"

UTF8CodePointCountValidator::UTF8CodePointCountValidator(std::size_t 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;
}