-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnote.cpp
125 lines (105 loc) · 3.57 KB
/
note.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
121
122
123
124
125
#include "note.h"
#include "staffGamesConstants.h"
#include <QPainter>
#include <QWidget>
#include <QDebug>
#include <QGraphicsScene>
#include <QGraphicsView>
#include <QLine>
#include <QGraphicsSceneMouseEvent>
Note::Note()
{
makeNoteHead();
makeStem();
this->setData(propertyKeys::type, propertyTypes::noteType);
setFlag(QGraphicsItem::ItemSendsGeometryChanges);
#ifdef QT_DEBUG
m_collide = QRectF(0, 0, 0, 0);
#endif
}
QVariant Note::itemChange(GraphicsItemChange change, const QVariant &value)
{
if (change == ItemPositionHasChanged && scene()) {
QPointF newPos = value.toPointF();
QRectF rect = scene()->sceneRect();
rect.setHeight( rect.height() - noteProperties::noteDiameter);
if (!rect.contains(newPos)) {
// Keep the item inside the scene rect.
newPos.setX(qMin(rect.right(), qMax(newPos.x(), rect.left())));
newPos.setY(qMin(rect.bottom(), qMax(newPos.y(), rect.top())));
setPos(newPos);
}
}
else if(change == ItemPositionChange && scene())
scene()->views().at(0)->ensureVisible(this, 10, 100);
return QGraphicsItem::itemChange(change, value);
}
QRectF Note::boundingRect() const
{
return m_noteHead->boundingRect();
}
void Note::makeNoteHead()
{
QBrush brush(colours::crotchet);
QPen pen(colours::crotchet);
QPoint p1(0, 0);
QPoint p2(noteProperties::noteDiameter*1.1, 0);
QRectF rec(p1, p2);
rec.setHeight(noteProperties::noteDiameter*0.7);
m_noteHead = new QGraphicsEllipseItem(rec, this);
m_noteHead->setBrush(brush);
pen.setWidth(noteProperties::noteThickness);
m_noteHead->setPen(pen);
m_noteHead->setTransformOriginPoint(this->boundingRect().center());
m_noteHead->setRotation(-30);
}
void Note::makeStem()
{
QPen pen(colours::stem);
int noteRight = m_noteHead->boundingRect().right();
int noteCentreY = m_noteHead->boundingRect().center().y();
QPoint p1(noteRight, m_noteHead->boundingRect().top() - noteProperties::stemHeight);
QPoint p2(noteRight, noteCentreY);
QLine stem(p1, p2);
m_stem = new QGraphicsLineItem(stem, this);
pen.setWidth(noteProperties::noteThickness);
pen.setCapStyle(Qt::RoundCap);
m_stem->setPen(pen);
m_stem->moveBy(-noteProperties::noteThickness*0.9, -noteProperties::noteThickness*0.5);
}
bool Note::collidesWithItem(const QGraphicsItem *other, Qt::ItemSelectionMode mode) const
{
QVariant type = other->data(propertyKeys::type);
if(type.toString() == propertyTypes::lineType){
QRectF otherRec = other->boundingRect();
QPointF otherCentre = mapFromScene(otherRec.center());
QPointF thisCentre = this->boundingRect().center();
QRectF collisionArea = otherRec;
collisionArea.setHeight(staffLayout::whiteLineHeight/2);
collisionArea.moveCenter( otherCentre );
if(collisionArea.contains(thisCentre)){
#ifdef QT_DEBUG
m_collide = collisionArea;
#endif
return true;
}
else{
return false;
}
}
return QGraphicsItem::collidesWithItem(other, mode);
}
#ifdef QT_DEBUG
void Note::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
QBrush brush(Qt::blue);
QPen pen(Qt::black);
pen.setWidth(2);
painter->save();
painter->setBrush(brush);
painter->setPen(pen);
painter->drawRect(m_collide);
painter->restore();
widget->update();
}
#endif