aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qml/qmlpuppet/commands/inputeventcommand.h
blob: 163d8b95216008e22d6ac6dd3f4680e580c67aa2 (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
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QtCore/qmetatype.h>
#include <QtCore/qdatastream.h>
#include <QtGui/qevent.h>

#include "instancecontainer.h"

namespace QmlDesigner {

class InputEventCommand
{
    friend QDataStream &operator>>(QDataStream &in, InputEventCommand &command);
    friend QDebug operator <<(QDebug debug, const InputEventCommand &command);

public:
    InputEventCommand();
    explicit InputEventCommand(QInputEvent *e);

    QEvent::Type type() const { return m_type; }
    QPoint pos() const { return m_pos; }
    Qt::MouseButton button() const { return m_button; }
    Qt::MouseButtons buttons() const { return m_buttons; }
    Qt::KeyboardModifiers modifiers() const { return m_modifiers; }
    int angleDelta() const { return m_angleDelta; }
    int key() const { return m_key; }
    int count() const { return m_count; }
    bool autoRepeat() const { return m_autoRepeat; }

private:
    QEvent::Type m_type = QEvent::None;
    Qt::KeyboardModifiers m_modifiers = Qt::NoModifier;

    // Mouse events
    QPoint m_pos;
    Qt::MouseButton m_button = Qt::NoButton;
    Qt::MouseButtons m_buttons = Qt::NoButton;

    // Wheel events
    int m_angleDelta = 0;

    // Key events
    int m_key = 0;
    int m_count = 1;
    bool m_autoRepeat = false;
};

QDataStream &operator<<(QDataStream &out, const InputEventCommand &command);
QDataStream &operator>>(QDataStream &in, InputEventCommand &command);

QDebug operator <<(QDebug debug, const InputEventCommand &command);

} // namespace QmlDesigner

Q_DECLARE_METATYPE(QmlDesigner::InputEventCommand)