summaryrefslogtreecommitdiffstats
path: root/src/yuzu/util/limitable_input_dialog.h
blob: a8e31098b3df5bb1948c3099440eff0d5b3bc374 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright 2018 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <QDialog>

class QDialogButtonBox;
class QLabel;
class QLineEdit;

/// A QDialog that functions similarly to QInputDialog, however, it allows
/// restricting the minimum and total number of characters that can be entered.
class LimitableInputDialog final : public QDialog {
    Q_OBJECT
public:
    explicit LimitableInputDialog(QWidget* parent = nullptr);
    ~LimitableInputDialog() override;

    enum class InputLimiter {
        None,
        Filesystem,
    };

    static QString GetText(QWidget* parent, const QString& title, const QString& text,
                           int min_character_limit, int max_character_limit,
                           InputLimiter limit_type = InputLimiter::None);

private:
    void CreateUI();
    void ConnectEvents();

    void RemoveInvalidCharacters();
    QString invalid_characters;

    QLabel* text_label;
    QLineEdit* text_entry;
    QLabel* text_label_invalid;
    QDialogButtonBox* buttons;
};