forked from qt-creator/qt-creator
Change-Id: I9c0c1c6b0d9410e5f4ece358fc6fd262a15c85fb Reviewed-by: André Hartmann <aha_1980@gmx.de>
137 lines
3.6 KiB
C++
137 lines
3.6 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 Jochen Becher
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "mdiagram.h"
|
|
|
|
#include "mvisitor.h"
|
|
#include "mconstvisitor.h"
|
|
#include "qmt/diagram/delement.h"
|
|
|
|
namespace qmt {
|
|
|
|
MDiagram::MDiagram()
|
|
: MObject(),
|
|
// modification date is set to null value for performance reasons
|
|
m_lastModified()
|
|
{
|
|
}
|
|
|
|
MDiagram::MDiagram(const MDiagram &rhs)
|
|
: MObject(rhs),
|
|
m_elements(),
|
|
// modification date is copied (instead of set to current time) to allow exact copies of the diagram
|
|
m_lastModified(rhs.m_lastModified),
|
|
m_toolbarId(rhs.toolbarId())
|
|
{
|
|
}
|
|
|
|
MDiagram::~MDiagram()
|
|
{
|
|
qDeleteAll(m_elements);
|
|
}
|
|
|
|
MDiagram &MDiagram::operator=(const MDiagram &rhs)
|
|
{
|
|
if (this != &rhs) {
|
|
MObject::operator=(rhs);
|
|
// no deep copy; list of elements remains unchanged
|
|
// modification date is copied (instead of set to current time) to allow exact copies of the diagram
|
|
m_lastModified = rhs.m_lastModified;
|
|
m_toolbarId = rhs.m_toolbarId;
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
DElement *MDiagram::findDiagramElement(const Uid &key) const
|
|
{
|
|
// PERFORM introduce map for better performance
|
|
foreach (DElement *element, m_elements) {
|
|
if (element->uid() == key)
|
|
return element;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void MDiagram::setDiagramElements(const QList<DElement *> &elements)
|
|
{
|
|
m_elements = elements;
|
|
}
|
|
|
|
void MDiagram::addDiagramElement(DElement *element)
|
|
{
|
|
QMT_ASSERT(element, return);
|
|
|
|
m_elements.append(element);
|
|
}
|
|
|
|
void MDiagram::insertDiagramElement(int beforeElement, DElement *element)
|
|
{
|
|
QMT_ASSERT(beforeElement >= 0 && beforeElement <= m_elements.size(), return);
|
|
|
|
m_elements.insert(beforeElement, element);
|
|
}
|
|
|
|
void MDiagram::removeDiagramElement(int index)
|
|
{
|
|
QMT_ASSERT(index >= 0 && index < m_elements.size(), return);
|
|
|
|
delete m_elements.at(index);
|
|
m_elements.removeAt(index);
|
|
}
|
|
|
|
void MDiagram::removeDiagramElement(DElement *element)
|
|
{
|
|
QMT_ASSERT(element, return);
|
|
|
|
removeDiagramElement(m_elements.indexOf(element));
|
|
}
|
|
|
|
void MDiagram::setLastModified(const QDateTime &lastModified)
|
|
{
|
|
m_lastModified = lastModified;
|
|
}
|
|
|
|
void MDiagram::setLastModifiedToNow()
|
|
{
|
|
m_lastModified = QDateTime::currentDateTime();
|
|
}
|
|
|
|
void MDiagram::setToolbarId(const QString &toolbarId)
|
|
{
|
|
m_toolbarId = toolbarId;
|
|
}
|
|
|
|
void MDiagram::accept(MVisitor *visitor)
|
|
{
|
|
visitor->visitMDiagram(this);
|
|
}
|
|
|
|
void MDiagram::accept(MConstVisitor *visitor) const
|
|
{
|
|
visitor->visitMDiagram(this);
|
|
}
|
|
|
|
} // namespace qmt
|