aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qml/qmlpuppet/commands/requestmodelnodepreviewimagecommand.cpp
blob: 07099717b58e4e61371220d7ad2c912e2d3e4384 (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
64
65
66
67
68
69
70
71
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "requestmodelnodepreviewimagecommand.h"

#include <QDataStream>
#include <QDebug>

namespace QmlDesigner {

RequestModelNodePreviewImageCommand::RequestModelNodePreviewImageCommand() = default;

RequestModelNodePreviewImageCommand::RequestModelNodePreviewImageCommand(qint32 id, const QSize &size,
                                                                         const QString &componentPath,
                                                                         qint32 renderItemId)
    : m_instanceId(id)
    , m_size(size)
    , m_componentPath(componentPath)
    , m_renderItemId(renderItemId)
{
}

qint32 RequestModelNodePreviewImageCommand::instanceId() const
{
    return m_instanceId;
}

QSize QmlDesigner::RequestModelNodePreviewImageCommand::size() const
{
    return m_size;
}

QString RequestModelNodePreviewImageCommand::componentPath() const
{
    return m_componentPath;
}

qint32 RequestModelNodePreviewImageCommand::renderItemId() const
{
    return m_renderItemId;
}

QDataStream &operator<<(QDataStream &out, const RequestModelNodePreviewImageCommand &command)
{
    out << int(command.instanceId());
    out << command.size();
    out << command.componentPath();
    out << command.renderItemId();

    return out;
}

QDataStream &operator>>(QDataStream &in, RequestModelNodePreviewImageCommand &command)
{
    in >> command.m_instanceId;
    in >> command.m_size;
    in >> command.m_componentPath;
    in >> command.m_renderItemId;
    return in;
}

QDebug operator <<(QDebug debug, const RequestModelNodePreviewImageCommand &command)
{
    return debug.nospace() << "RequestModelNodePreviewImageCommand("
                           << "instanceId: " << command.instanceId() << ", "
                           << "size: " << command.size() << ", "
                           << "componentPath: " << command.componentPath() << ", "
                           << "renderItemId: " << command.renderItemId() << ")";
}

} // namespace QmlDesigner