aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/materialeditor/materialeditortransaction.h
blob: 467a643a61f3d023548ec6ee5e9ecccbfed506a4 (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
// 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 "materialeditorview.h"

namespace QmlDesigner {

class MaterialEditorTransaction : public QObject
{
    Q_OBJECT

public:
    MaterialEditorTransaction(QmlDesigner::MaterialEditorView *materialEditor);

    Q_INVOKABLE void start();
    Q_INVOKABLE void end();

    Q_INVOKABLE bool active() const;

protected:
     void timerEvent(QTimerEvent *event) override;

private:
    QmlDesigner::MaterialEditorView *m_materialEditor = nullptr;
    QmlDesigner::RewriterTransaction m_rewriterTransaction;
    int m_timerId = -1;
};

} // namespace QmlDesigner