aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/componentcore/abstractaction.h
blob: ca4cc582ce98be4437406996e99763cdffb15e0f (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
58
59
60
61
62
63
64
65
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "actioninterface.h"

#include <QAction>
#include <QScopedPointer>

namespace QmlDesigner {

class QMLDESIGNERCOMPONENTS_EXPORT PureActionInterface
{
public:
    explicit PureActionInterface(QAction *action);
    virtual ~PureActionInterface() = default;
    virtual void setSelectionContext(const SelectionContext &selectionContext) = 0;
    QAction *action();

private:
    QAction *m_action = nullptr;
};

class QMLDESIGNERCOMPONENTS_EXPORT DefaultAction : public QAction, public PureActionInterface
{
    Q_OBJECT

public:
    DefaultAction(const QString &description);

    // virtual function instead of slot
    virtual void actionTriggered([[maybe_unused]] bool enable) {}
    virtual void setSelectionContext(const SelectionContext &selectionContext) override;

protected:
    SelectionContext m_selectionContext;
};

class QMLDESIGNERCOMPONENTS_EXPORT AbstractAction : public ActionInterface
{
public:
    AbstractAction(const QString &description = QString());
    AbstractAction(PureActionInterface *action);

    QAction *action() const override final;
    PureActionInterface *pureAction() const;

    void currentContextChanged(const SelectionContext &selectionContext) override;

protected:
    virtual void updateContext();
    virtual bool isChecked(const SelectionContext &selectionContext) const;
    virtual bool isVisible(const SelectionContext &selectionContext) const = 0;
    virtual bool isEnabled(const SelectionContext &selectionContext) const = 0;

    void setCheckable(bool checkable);
    SelectionContext selectionContext() const;

private:
    QScopedPointer<PureActionInterface> m_pureAction;
    SelectionContext m_selectionContext;
};

} // namespace QmlDesigner