summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/textureeditor/textureeditortransaction.h
blob: ab071473cddd1159a675ec79fa0abda1c3cfe23f (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-only WITH Qt-GPL-exception-1.0

#pragma once

#include "rewritertransaction.h"
#include "textureeditorview.h"

namespace QmlDesigner {

class TextureEditorTransaction : public QObject
{
    Q_OBJECT

public:
    TextureEditorTransaction(TextureEditorView *textureEditor);

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

    Q_INVOKABLE bool active() const;

protected:
     void timerEvent(QTimerEvent *event) override;

private:
    TextureEditorView *m_textureEditor = nullptr;
    RewriterTransaction m_rewriterTransaction;
    int m_timerId = -1;
};

} // namespace QmlDesigner