aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/edit3d/backgroundcolorselection.h
blob: d4a96aeb4ee9ac0f20e938d98f94b436b0c9102f (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
// Copyright (C) 2022 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 <QByteArray>
#include <view3dactioncommand.h>

QT_FORWARD_DECLARE_CLASS(QColorDialog)

namespace QmlDesigner {

class BackgroundColorSelection : public QObject
{
    Q_OBJECT

public:
    explicit BackgroundColorSelection(QObject *parent = nullptr)
        : QObject{parent}
    {}

    static void showBackgroundColorSelectionWidget(QWidget *parent, const QByteArray &key,
                                                   View3DActionCommand::Type cmdType);

private:
    static QColorDialog *createColorDialog(QWidget *parent, const QByteArray &key,
                                           View3DActionCommand::Type cmdType);

    inline static QColorDialog *m_dialog = nullptr;
};

} // namespace QmlDesigner