aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qml/qmlpuppet/commands/requestmodelnodepreviewimagecommand.h
blob: 41dac0d1137d4122f914c625fc4033a361c1115e (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
// 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 RequestModelNodePreviewImageCommand
{
    friend QDataStream &operator>>(QDataStream &in, RequestModelNodePreviewImageCommand &command);
    friend QDebug operator <<(QDebug debug, const RequestModelNodePreviewImageCommand &command);

public:
    RequestModelNodePreviewImageCommand();
    explicit RequestModelNodePreviewImageCommand(qint32 id, const QSize &size,
                                                 const QString &componentPath, qint32 renderItemId);

    qint32 instanceId() const;
    QSize size() const;
    QString componentPath() const;
    qint32 renderItemId() const;

private:
    qint32 m_instanceId;
    QSize m_size;
    QString m_componentPath;
    qint32 m_renderItemId;
};

inline bool operator==(const RequestModelNodePreviewImageCommand &first,
                       const RequestModelNodePreviewImageCommand &second)
{
    return first.instanceId() == second.instanceId()
        && first.size() == second.size()
        && first.componentPath() == second.componentPath()
        && first.renderItemId() == second.renderItemId();
}

inline size_t qHash(const RequestModelNodePreviewImageCommand &key, size_t seed = 0)
{
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
    return ::qHash(key.instanceId(), seed)
            ^ ::qHash(std::make_pair(key.size().width(), key.size().height()), seed)
            ^ ::qHash(key.componentPath(), seed) ^ ::qHash(key.renderItemId(), seed);
#else
    return qHashMulti(seed, key.instanceId(), key.size(), key.componentPath(), key.renderItemId());
#endif
}

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

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

} // namespace QmlDesigner

Q_DECLARE_METATYPE(QmlDesigner::RequestModelNodePreviewImageCommand)