Chris@58
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@30
|
2
|
Chris@30
|
3 /*
|
Chris@59
|
4 Sonic Visualiser
|
Chris@59
|
5 An audio file viewer and annotation editor.
|
Chris@59
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@59
|
7 This file copyright 2006 Chris Cannam.
|
Chris@30
|
8
|
Chris@59
|
9 This program is free software; you can redistribute it and/or
|
Chris@59
|
10 modify it under the terms of the GNU General Public License as
|
Chris@59
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@59
|
12 License, or (at your option) any later version. See the file
|
Chris@59
|
13 COPYING included with this distribution for more information.
|
Chris@30
|
14 */
|
Chris@30
|
15
|
matthiasm@620
|
16 #ifndef _FLEXINOTE_LAYER_H_
|
matthiasm@620
|
17 #define _FLEXINOTE_LAYER_H_
|
Chris@30
|
18
|
matthiasm@651
|
19 #define NOTE_HEIGHT 16
|
gyorgyf@646
|
20
|
Chris@287
|
21 #include "SingleColourLayer.h"
|
matthiasm@620
|
22 #include "data/model/FlexiNoteModel.h"
|
Chris@30
|
23
|
Chris@30
|
24 #include <QObject>
|
Chris@30
|
25 #include <QColor>
|
Chris@30
|
26
|
Chris@30
|
27 class View;
|
Chris@30
|
28 class QPainter;
|
Chris@30
|
29
|
matthiasm@620
|
30 class FlexiNoteLayer : public SingleColourLayer
|
Chris@30
|
31 {
|
Chris@30
|
32 Q_OBJECT
|
Chris@30
|
33
|
Chris@30
|
34 public:
|
matthiasm@620
|
35 FlexiNoteLayer();
|
Chris@30
|
36
|
Chris@44
|
37 virtual void paint(View *v, QPainter &paint, QRect rect) const;
|
Chris@30
|
38
|
Chris@692
|
39 virtual int getVerticalScaleWidth(View *v, bool, QPainter &) const;
|
Chris@692
|
40 virtual void paintVerticalScale(View *v, bool, QPainter &paint, QRect rect) const;
|
Chris@692
|
41
|
Chris@44
|
42 virtual QString getFeatureDescription(View *v, QPoint &) const;
|
Chris@30
|
43
|
Chris@44
|
44 virtual bool snapToFeatureFrame(View *v, int &frame,
|
gyorgyf@646
|
45 size_t &resolution,
|
gyorgyf@646
|
46 SnapType snap) const;
|
Chris@30
|
47
|
Chris@44
|
48 virtual void drawStart(View *v, QMouseEvent *);
|
Chris@44
|
49 virtual void drawDrag(View *v, QMouseEvent *);
|
Chris@44
|
50 virtual void drawEnd(View *v, QMouseEvent *);
|
Chris@30
|
51
|
Chris@335
|
52 virtual void eraseStart(View *v, QMouseEvent *);
|
Chris@335
|
53 virtual void eraseDrag(View *v, QMouseEvent *);
|
Chris@335
|
54 virtual void eraseEnd(View *v, QMouseEvent *);
|
Chris@335
|
55
|
Chris@44
|
56 virtual void editStart(View *v, QMouseEvent *);
|
Chris@44
|
57 virtual void editDrag(View *v, QMouseEvent *);
|
Chris@44
|
58 virtual void editEnd(View *v, QMouseEvent *);
|
Chris@30
|
59
|
gyorgyf@635
|
60 virtual void splitStart(View *v, QMouseEvent *);
|
gyorgyf@635
|
61 virtual void splitEnd(View *v, QMouseEvent *);
|
matthiasm@660
|
62
|
matthiasm@660
|
63 virtual void addNote(View *v, QMouseEvent *e);
|
gyorgyf@635
|
64
|
gyorgyf@646
|
65 virtual void mouseMoveEvent(View *v, QMouseEvent *);
|
gyorgyf@646
|
66
|
Chris@255
|
67 virtual bool editOpen(View *v, QMouseEvent *);
|
Chris@70
|
68
|
Chris@43
|
69 virtual void moveSelection(Selection s, size_t newStartFrame);
|
Chris@43
|
70 virtual void resizeSelection(Selection s, Selection newSize);
|
Chris@76
|
71 virtual void deleteSelection(Selection s);
|
Chris@76
|
72
|
Chris@359
|
73 virtual void copy(View *v, Selection s, Clipboard &to);
|
Chris@359
|
74 virtual bool paste(View *v, const Clipboard &from, int frameOffset,
|
Chris@125
|
75 bool interactive);
|
Chris@43
|
76
|
Chris@30
|
77 virtual const Model *getModel() const { return m_model; }
|
matthiasm@620
|
78 void setModel(FlexiNoteModel *model);
|
Chris@30
|
79
|
Chris@30
|
80 virtual PropertyList getProperties() const;
|
Chris@87
|
81 virtual QString getPropertyLabel(const PropertyName &) const;
|
Chris@30
|
82 virtual PropertyType getPropertyType(const PropertyName &) const;
|
Chris@198
|
83 virtual QString getPropertyGroupName(const PropertyName &) const;
|
Chris@30
|
84 virtual int getPropertyRangeAndValue(const PropertyName &,
|
Chris@216
|
85 int *min, int *max, int *deflt) const;
|
Chris@30
|
86 virtual QString getPropertyValueLabel(const PropertyName &,
|
gyorgyf@646
|
87 int value) const;
|
Chris@30
|
88 virtual void setProperty(const PropertyName &, int value);
|
Chris@30
|
89
|
Chris@30
|
90 enum VerticalScale {
|
Chris@101
|
91 AutoAlignScale,
|
Chris@101
|
92 LinearScale,
|
Chris@101
|
93 LogScale,
|
Chris@101
|
94 MIDIRangeScale
|
Chris@30
|
95 };
|
gyorgyf@649
|
96
|
gyorgyf@649
|
97 //GF: Tonioni: context sensitive note edit actions (denoted clockwise from top).
|
gyorgyf@649
|
98 enum EditMode {
|
matthiasm@651
|
99 DragNote,
|
matthiasm@651
|
100 RightBoundary,
|
matthiasm@651
|
101 SplitNote,
|
matthiasm@651
|
102 LeftBoundary
|
gyorgyf@649
|
103 };
|
gyorgyf@658
|
104
|
gyorgyf@658
|
105 void setIntelligentActions(bool on) { m_intelligentActions=on; }
|
Chris@30
|
106
|
Chris@30
|
107 void setVerticalScale(VerticalScale scale);
|
Chris@30
|
108 VerticalScale getVerticalScale() const { return m_verticalScale; }
|
Chris@30
|
109
|
Chris@44
|
110 virtual bool isLayerScrollable(const View *v) const;
|
Chris@30
|
111
|
Chris@30
|
112 virtual bool isLayerEditable() const { return true; }
|
Chris@30
|
113
|
Chris@115
|
114 virtual int getCompletion(View *) const { return m_model->getCompletion(); }
|
Chris@30
|
115
|
Chris@101
|
116 virtual bool getValueExtents(float &min, float &max,
|
Chris@101
|
117 bool &log, QString &unit) const;
|
Chris@101
|
118
|
Chris@101
|
119 virtual bool getDisplayExtents(float &min, float &max) const;
|
Chris@439
|
120 virtual bool setDisplayExtents(float min, float max);
|
Chris@439
|
121
|
Chris@439
|
122 virtual int getVerticalZoomSteps(int &defaultStep) const;
|
Chris@439
|
123 virtual int getCurrentVerticalZoomStep() const;
|
Chris@439
|
124 virtual void setVerticalZoomStep(int);
|
Chris@439
|
125 virtual RangeMapper *getNewVerticalZoomRangeMapper() const;
|
Chris@79
|
126
|
Chris@507
|
127 /**
|
Chris@507
|
128 * Add a note-on. Used when recording MIDI "live". The note will
|
Chris@507
|
129 * not be finally added to the layer until the corresponding
|
Chris@507
|
130 * note-off.
|
Chris@507
|
131 */
|
Chris@507
|
132 void addNoteOn(long frame, int pitch, int velocity);
|
Chris@507
|
133
|
Chris@507
|
134 /**
|
Chris@507
|
135 * Add a note-off. This will cause a note to appear, if and only
|
Chris@507
|
136 * if there is a matching pending note-on.
|
Chris@507
|
137 */
|
Chris@507
|
138 void addNoteOff(long frame, int pitch);
|
Chris@507
|
139
|
Chris@507
|
140 /**
|
Chris@507
|
141 * Abandon all pending note-on events.
|
Chris@507
|
142 */
|
Chris@507
|
143 void abandonNoteOns();
|
Chris@507
|
144
|
Chris@316
|
145 virtual void toXml(QTextStream &stream, QString indent = "",
|
Chris@316
|
146 QString extraAttributes = "") const;
|
Chris@30
|
147
|
Chris@30
|
148 void setProperties(const QXmlAttributes &attributes);
|
matthiasm@651
|
149
|
matthiasm@656
|
150 void setVerticalRangeToNoteRange(View *v);
|
Chris@30
|
151
|
Chris@30
|
152 protected:
|
Chris@101
|
153 void getScaleExtents(View *, float &min, float &max, bool &log) const;
|
Chris@44
|
154 int getYForValue(View *v, float value) const;
|
Chris@44
|
155 float getValueForY(View *v, int y) const;
|
Chris@101
|
156 bool shouldConvertMIDIToHz() const;
|
Chris@30
|
157
|
Chris@287
|
158 virtual int getDefaultColourHint(bool dark, bool &impose);
|
Chris@287
|
159
|
matthiasm@620
|
160 FlexiNoteModel::PointList getLocalPoints(View *v, int) const;
|
Chris@30
|
161
|
matthiasm@620
|
162 bool getPointToDrag(View *v, int x, int y, FlexiNoteModel::Point &) const;
|
gyorgyf@646
|
163 bool getNoteToEdit(View *v, int x, int y, FlexiNoteModel::Point &) const;
|
gyorgyf@646
|
164 void getRelativeMousePosition(View *v, FlexiNoteModel::Point ¬e, int x, int y, bool &closeToLeft, bool &closeToRight, bool &closeToTop, bool &closeToBottom) const;
|
gyorgyf@655
|
165 void updateNoteValue(View *v, FlexiNoteModel::Point ¬e) const;
|
Chris@550
|
166
|
matthiasm@620
|
167 FlexiNoteModel *m_model;
|
Chris@30
|
168 bool m_editing;
|
gyorgyf@658
|
169 bool m_intelligentActions;
|
Chris@551
|
170 int m_dragPointX;
|
Chris@551
|
171 int m_dragPointY;
|
Chris@551
|
172 int m_dragStartX;
|
Chris@551
|
173 int m_dragStartY;
|
matthiasm@620
|
174 FlexiNoteModel::Point m_originalPoint;
|
matthiasm@620
|
175 FlexiNoteModel::Point m_editingPoint;
|
matthiasm@651
|
176 long m_greatestLeftNeighbourFrame;
|
matthiasm@651
|
177 long m_smallestRightNeighbourFrame;
|
matthiasm@620
|
178 FlexiNoteModel::EditCommand *m_editingCommand;
|
Chris@30
|
179 VerticalScale m_verticalScale;
|
gyorgyf@649
|
180 EditMode m_editMode;
|
Chris@376
|
181
|
matthiasm@620
|
182 typedef std::set<FlexiNoteModel::Point, FlexiNoteModel::Point::Comparator> FlexiNoteSet;
|
matthiasm@620
|
183 FlexiNoteSet m_pendingNoteOns;
|
Chris@507
|
184
|
Chris@439
|
185 mutable float m_scaleMinimum;
|
Chris@439
|
186 mutable float m_scaleMaximum;
|
Chris@439
|
187
|
Chris@439
|
188 bool shouldAutoAlign() const;
|
Chris@439
|
189
|
matthiasm@620
|
190 void finish(FlexiNoteModel::EditCommand *command) {
|
Chris@376
|
191 Command *c = command->finish();
|
Chris@376
|
192 if (c) CommandHistory::getInstance()->addCommand(c, false);
|
Chris@376
|
193 }
|
Chris@30
|
194 };
|
Chris@30
|
195
|
Chris@30
|
196 #endif
|
Chris@30
|
197
|