summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h
blob: 90faa0f06de19413fc8c61532de17a0dd85935bf (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
// 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 "propertyeditorview.h"

namespace QmlDesigner {

class PropertyEditorTransaction : public QObject
{
    Q_OBJECT
public:
    PropertyEditorTransaction(QmlDesigner::PropertyEditorView *propertyEditor);

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

    Q_INVOKABLE bool active() const;

protected:
     void timerEvent(QTimerEvent *event) override;

private:
    QmlDesigner::PropertyEditorView *m_propertyEditor;
    QmlDesigner::RewriterTransaction m_rewriterTransaction;
    int m_timerId;
};

} //QmlDesigner