forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#include "pixmapchangedcommand.h"
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QVarLengthArray>
|
|
|
|
#include <algorithm>
|
|
|
|
namespace QmlDesigner {
|
|
|
|
PixmapChangedCommand::PixmapChangedCommand() = default;
|
|
|
|
PixmapChangedCommand::PixmapChangedCommand(const QVector<ImageContainer> &imageVector)
|
|
: m_imageVector(imageVector)
|
|
{
|
|
}
|
|
|
|
QVector<ImageContainer> PixmapChangedCommand::images() const
|
|
{
|
|
return m_imageVector;
|
|
}
|
|
|
|
void PixmapChangedCommand::sort()
|
|
{
|
|
std::sort(m_imageVector.begin(), m_imageVector.end());
|
|
}
|
|
|
|
QDataStream &operator<<(QDataStream &out, const PixmapChangedCommand &command)
|
|
{
|
|
out << command.images();
|
|
|
|
return out;
|
|
}
|
|
|
|
QDataStream &operator>>(QDataStream &in, PixmapChangedCommand &command)
|
|
{
|
|
in >> command.m_imageVector;
|
|
|
|
return in;
|
|
}
|
|
|
|
bool operator ==(const PixmapChangedCommand &first, const PixmapChangedCommand &second)
|
|
{
|
|
return first.m_imageVector == second.m_imageVector;
|
|
}
|
|
|
|
QDebug operator <<(QDebug debug, const PixmapChangedCommand &command)
|
|
{
|
|
return debug.nospace() << "PixmapChangedCommand(" << command.images() << ")";
|
|
}
|
|
|
|
} // namespace QmlDesigner
|