aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scxmleditor/common/colortoolbutton.h
blob: 489744e2e26cac034f862d46cf98ac9eb7f17a90 (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 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QMenu>
#include <QToolButton>
#include <QWidgetAction>

namespace ScxmlEditor {

namespace Common {

class ColorPickerAction : public QWidgetAction
{
    Q_OBJECT

public:
    ColorPickerAction(const QString &key, QObject *parent);

protected:
    QWidget *createWidget(QWidget *parent) override;

signals:
    void colorSelected(const QString &colorName);
    void lastUsedColor(const QString &colorName);

private:
    QString m_key;
};

class ColorToolButton : public QToolButton
{
    Q_OBJECT

public:
    ColorToolButton(const QString &key, const QString &iconName, const QString &tooltip, QWidget *parent = nullptr);
    ~ColorToolButton() override;

protected:
    void paintEvent(QPaintEvent *e) override;

signals:
    void colorSelected(const QString &colorName);

private:
    void autoColorSelected();
    void showColorDialog();
    void setCurrentColor(const QString &currentColor);

    ColorPickerAction *m_colorPickerAction;
    QString m_color;
    QMenu *m_menu;
};

} // namespace Common
} // namespace ScxmlEditor