-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcsitem.cpp
120 lines (103 loc) · 2.65 KB
/
csitem.cpp
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/***************************************************************************
* Copyright (C) 2015 by Renaud Guezennec *
* https://rolisteam.org/contact *
* *
* rolisteam is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "csitem.h"
#include <QDebug>
int CSItem::m_count= 0;
CSItem::CSItem(QGraphicsItem* parent, bool addCount)
{
Q_UNUSED(parent);
if(addCount)
{
++m_count;
}
}
QColor CSItem::bgColor() const
{
return m_bgColor;
}
void CSItem::setBgColor(const QColor& bgColor)
{
m_bgColor= bgColor;
}
QColor CSItem::textColor() const
{
return m_textColor;
}
void CSItem::setTextColor(const QColor& textColor)
{
m_textColor= textColor;
}
qreal CSItem::getX() const
{
return 0;
}
qreal CSItem::getY() const
{
return 0;
}
qreal CSItem::getWidth() const
{
return 0;
}
qreal CSItem::getHeight() const
{
return 0;
}
void CSItem::setX(qreal x)
{
Q_UNUSED(x);
}
void CSItem::setY(qreal y)
{
Q_UNUSED(y);
}
void CSItem::setWidth(qreal width)
{
Q_UNUSED(width);
}
void CSItem::setHeight(qreal height)
{
Q_UNUSED(height);
}
QRectF CSItem::getRect() const
{
return m_rect;
}
void CSItem::setRect(const QRectF& rect)
{
m_rect= rect;
}
CSItem::BorderLine CSItem::border() const
{
return m_border;
}
void CSItem::setBorder(const CSItem::BorderLine& border)
{
m_border= border;
emit askUpdate();
}
void CSItem::resetCount()
{
m_count= 0;
}
void CSItem::setCount(int i)
{
m_count= i;
}