-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnote.h
34 lines (28 loc) · 899 Bytes
/
note.h
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
#ifndef NOTE_H
#define NOTE_H
#include <QGraphicsEllipseItem>
#include <QBrush>
class Note : public QGraphicsItem
{
public:
Note();
virtual bool collidesWithItem(const QGraphicsItem *other, Qt::ItemSelectionMode mode) const;
virtual QVariant itemChange(GraphicsItemChange change, const QVariant &value);
virtual QRectF boundingRect() const;
#ifndef QT_DEBUG
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget){
Q_UNUSED(painter)Q_UNUSED(option)Q_UNUSED(widget)
}
#else
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
#endif
private:
void makeNoteHead();
void makeStem();
#ifdef QT_DEBUG
mutable QRectF m_collide;
#endif
QGraphicsEllipseItem* m_noteHead;
QGraphicsLineItem* m_stem;
};
#endif // NOTE_H