aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/diagram/dswimlane.cpp
blob: 74881a627f3a366072023e5203d2be6cf3a4d88c (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
// Copyright (C) 2017 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "dswimlane.h"

#include "dvisitor.h"
#include "dconstvisitor.h"

namespace qmt {

DSwimlane::DSwimlane()
    : DElement()
{
}

DSwimlane::DSwimlane(const DSwimlane &rhs)
    : DElement(rhs),
      m_text(rhs.m_text),
      m_horizontal(rhs.m_horizontal),
      m_pos(rhs.m_pos)
{
}

DSwimlane::~DSwimlane()
{
}

DSwimlane &DSwimlane::operator=(const DSwimlane &rhs)
{
    if (this != &rhs) {
        DElement::operator=(rhs);
        m_text = rhs.m_text;
        m_horizontal = rhs.m_horizontal;
        m_pos = rhs.m_pos;
    }
    return *this;
}

void DSwimlane::setText(const QString &text)
{
    m_text = text;
}

void DSwimlane::setHorizontal(bool horizontal)
{
    m_horizontal = horizontal;
}

void DSwimlane::setPos(qreal pos)
{
    m_pos = pos;
}

void DSwimlane::accept(DVisitor *visitor)
{
    visitor->visitDSwimlane(this);
}

void DSwimlane::accept(DConstVisitor *visitor) const
{
    visitor->visitDSwimlane(this);
}

} // namespoace qmt