aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/todo/keyworddialog.h
blob: 34be25e8225687e550e921ebe298a348bc5064b1 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright (C) 2016 Dmitry Savchenko
// Copyright (C) 2016 Vasiliy Sorokin
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QDialog>
#include <QSet>

QT_BEGIN_NAMESPACE
class QDialogButtonBox;
class QLabel;
class QLineEdit;
class QListWidget;
QT_END_NAMESPACE

namespace Utils { class QtColorButton; }

namespace Todo {
namespace Internal {

class Keyword;
enum class IconType;

class KeywordDialog : public QDialog
{
    Q_OBJECT
public:
    KeywordDialog(const Keyword &keyword, const QSet<QString> &alreadyUsedKeywordNames,
                  QWidget *parent = nullptr);
    ~KeywordDialog() override;

    Keyword keyword();

private:
    void colorSelected(const QColor &color);
    void acceptButtonClicked();
    void setupListWidget(IconType selectedIcon);
    void setupColorWidgets(const QColor &color);
    bool canAccept();
    bool isKeywordNameCorrect();
    bool isKeywordNameAlreadyUsed();
    void showError(const QString &text);
    QString keywordName();

    QSet<QString> m_alreadyUsedKeywordNames;

    QListWidget *m_listWidget;
    QLineEdit *m_colorEdit;
    Utils::QtColorButton *m_colorButton;
    QLineEdit *m_keywordNameEdit;
    QLabel *m_errorLabel;
    QDialogButtonBox *m_buttonBox;
};

} // namespace Internal
} // namespace Todo