Chris@127
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@127
|
2
|
Chris@127
|
3 /*
|
Chris@127
|
4 Sonic Visualiser
|
Chris@127
|
5 An audio file viewer and annotation editor.
|
Chris@127
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@127
|
7 This file copyright 2006 Chris Cannam.
|
Chris@127
|
8
|
Chris@127
|
9 This program is free software; you can redistribute it and/or
|
Chris@127
|
10 modify it under the terms of the GNU General Public License as
|
Chris@127
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@127
|
12 License, or (at your option) any later version. See the file
|
Chris@127
|
13 COPYING included with this distribution for more information.
|
Chris@127
|
14 */
|
Chris@127
|
15
|
Chris@226
|
16 #ifndef _VIEW_H_
|
Chris@226
|
17 #define _VIEW_H_
|
Chris@127
|
18
|
Chris@127
|
19 #include <QFrame>
|
Chris@127
|
20 #include <QProgressBar>
|
Chris@127
|
21
|
Chris@127
|
22 #include "base/ZoomConstraint.h"
|
Chris@127
|
23 #include "base/PropertyContainer.h"
|
Chris@128
|
24 #include "ViewManager.h"
|
Chris@127
|
25 #include "base/XmlExportable.h"
|
Chris@127
|
26
|
Chris@127
|
27 // #define DEBUG_VIEW_WIDGET_PAINT 1
|
Chris@127
|
28
|
Chris@127
|
29 class Layer;
|
Chris@127
|
30 class ViewPropertyContainer;
|
Chris@127
|
31
|
Chris@127
|
32 #include <map>
|
Chris@127
|
33
|
Chris@127
|
34 /**
|
Chris@127
|
35 * View is the base class of widgets that display one or more
|
Chris@127
|
36 * overlaid views of data against a horizontal time scale.
|
Chris@127
|
37 *
|
Chris@127
|
38 * A View may have any number of attached Layers, each of which
|
Chris@127
|
39 * is expected to have one data Model (although multiple views may
|
Chris@127
|
40 * share the same model).
|
Chris@127
|
41 *
|
Chris@127
|
42 * A View may be panned in time and zoomed, although the
|
Chris@127
|
43 * mechanisms for doing so (as well as any other operations and
|
Chris@127
|
44 * properties available) depend on the subclass.
|
Chris@127
|
45 */
|
Chris@127
|
46
|
Chris@127
|
47 class View : public QFrame,
|
Chris@127
|
48 public XmlExportable
|
Chris@127
|
49 {
|
Chris@127
|
50 Q_OBJECT
|
Chris@127
|
51
|
Chris@127
|
52 public:
|
Chris@127
|
53 /**
|
Chris@127
|
54 * Deleting a View does not delete any of its layers. They should
|
Chris@127
|
55 * be managed elsewhere (e.g. by the Document).
|
Chris@127
|
56 */
|
Chris@127
|
57 virtual ~View();
|
Chris@127
|
58
|
Chris@127
|
59 /**
|
Chris@127
|
60 * Retrieve the first visible sample frame on the widget.
|
Chris@127
|
61 * This is a calculated value based on the centre-frame, widget
|
Chris@127
|
62 * width and zoom level. The result may be negative.
|
Chris@127
|
63 */
|
Chris@127
|
64 virtual long getStartFrame() const;
|
Chris@127
|
65
|
Chris@127
|
66 /**
|
Chris@127
|
67 * Set the widget pan based on the given first visible frame. The
|
Chris@127
|
68 * frame value may be negative.
|
Chris@127
|
69 */
|
Chris@127
|
70 virtual void setStartFrame(long);
|
Chris@127
|
71
|
Chris@127
|
72 /**
|
Chris@127
|
73 * Return the centre frame of the visible widget. This is an
|
Chris@127
|
74 * exact value that does not depend on the zoom block size. Other
|
Chris@127
|
75 * frame values (start, end) are calculated from this based on the
|
Chris@127
|
76 * zoom and other factors.
|
Chris@127
|
77 */
|
Chris@127
|
78 virtual size_t getCentreFrame() const { return m_centreFrame; }
|
Chris@127
|
79
|
Chris@127
|
80 /**
|
Chris@127
|
81 * Set the centre frame of the visible widget.
|
Chris@127
|
82 */
|
Chris@127
|
83 virtual void setCentreFrame(size_t f) { setCentreFrame(f, true); }
|
Chris@127
|
84
|
Chris@127
|
85 /**
|
Chris@127
|
86 * Retrieve the last visible sample frame on the widget.
|
Chris@127
|
87 * This is a calculated value based on the centre-frame, widget
|
Chris@127
|
88 * width and zoom level.
|
Chris@127
|
89 */
|
Chris@127
|
90 virtual size_t getEndFrame() const;
|
Chris@127
|
91
|
Chris@127
|
92 /**
|
Chris@127
|
93 * Return the pixel x-coordinate corresponding to a given sample
|
Chris@127
|
94 * frame (which may be negative).
|
Chris@127
|
95 */
|
Chris@127
|
96 int getXForFrame(long frame) const;
|
Chris@127
|
97
|
Chris@127
|
98 /**
|
Chris@127
|
99 * Return the closest frame to the given pixel x-coordinate.
|
Chris@127
|
100 */
|
Chris@127
|
101 long getFrameForX(int x) const;
|
Chris@127
|
102
|
Chris@127
|
103 /**
|
Chris@127
|
104 * Return the pixel y-coordinate corresponding to a given
|
Chris@127
|
105 * frequency, if the frequency range is as specified. This does
|
Chris@127
|
106 * not imply any policy about layer frequency ranges, but it might
|
Chris@127
|
107 * be useful for layers to match theirs up if desired.
|
Chris@127
|
108 *
|
Chris@127
|
109 * Not thread-safe in logarithmic mode. Call only from GUI thread.
|
Chris@127
|
110 */
|
Chris@127
|
111 float getYForFrequency(float frequency, float minFreq, float maxFreq,
|
Chris@127
|
112 bool logarithmic) const;
|
Chris@127
|
113
|
Chris@127
|
114 /**
|
Chris@127
|
115 * Return the closest frequency to the given pixel y-coordinate,
|
Chris@127
|
116 * if the frequency range is as specified.
|
Chris@127
|
117 *
|
Chris@127
|
118 * Not thread-safe in logarithmic mode. Call only from GUI thread.
|
Chris@127
|
119 */
|
Chris@127
|
120 float getFrequencyForY(int y, float minFreq, float maxFreq,
|
Chris@127
|
121 bool logarithmic) const;
|
Chris@127
|
122
|
Chris@127
|
123 /**
|
Chris@127
|
124 * Return the zoom level, i.e. the number of frames per pixel
|
Chris@127
|
125 */
|
Chris@127
|
126 int getZoomLevel() const;
|
Chris@127
|
127
|
Chris@127
|
128 /**
|
Chris@127
|
129 * Set the zoom level, i.e. the number of frames per pixel. The
|
Chris@127
|
130 * centre frame will be unchanged; the start and end frames will
|
Chris@127
|
131 * change.
|
Chris@127
|
132 */
|
Chris@127
|
133 virtual void setZoomLevel(size_t z);
|
Chris@127
|
134
|
Chris@127
|
135 /**
|
Chris@127
|
136 * Zoom in or out.
|
Chris@127
|
137 */
|
Chris@127
|
138 virtual void zoom(bool in);
|
Chris@127
|
139
|
Chris@127
|
140 /**
|
Chris@127
|
141 * Scroll left or right by a smallish or largish amount.
|
Chris@127
|
142 */
|
Chris@127
|
143 virtual void scroll(bool right, bool lots);
|
Chris@127
|
144
|
Chris@127
|
145 virtual void addLayer(Layer *v);
|
Chris@127
|
146 virtual void removeLayer(Layer *v); // does not delete the layer
|
Chris@127
|
147 virtual int getLayerCount() const { return m_layers.size(); }
|
Chris@127
|
148
|
Chris@127
|
149 /**
|
Chris@127
|
150 * Return a layer, counted in stacking order. That is, layer 0 is
|
Chris@127
|
151 * the bottom layer and layer "getLayerCount()-1" is the top one.
|
Chris@127
|
152 */
|
Chris@127
|
153 virtual Layer *getLayer(int n) { return m_layers[n]; }
|
Chris@127
|
154
|
Chris@127
|
155 /**
|
Chris@268
|
156 * Return the top layer. This is the same as
|
Chris@268
|
157 * getLayer(getLayerCount()-1) if there is at least one layer, and
|
Chris@268
|
158 * 0 otherwise.
|
Chris@268
|
159 */
|
Chris@268
|
160 virtual Layer *getTopLayer() {
|
Chris@268
|
161 return m_layers.empty() ? 0 : m_layers[m_layers.size()-1];
|
Chris@268
|
162 }
|
Chris@268
|
163
|
Chris@268
|
164 /**
|
Chris@127
|
165 * Return the layer last selected by the user. This is normally
|
Chris@127
|
166 * the top layer, the same as getLayer(getLayerCount()-1).
|
Chris@127
|
167 * However, if the user has selected the pane itself more recently
|
Chris@127
|
168 * than any of the layers on it, this function will return 0. It
|
Chris@127
|
169 * will also return 0 if there are no layers.
|
Chris@127
|
170 */
|
Chris@127
|
171 virtual Layer *getSelectedLayer();
|
Chris@127
|
172 virtual const Layer *getSelectedLayer() const;
|
Chris@127
|
173
|
Chris@127
|
174 virtual void setViewManager(ViewManager *m);
|
Chris@127
|
175 virtual ViewManager *getViewManager() const { return m_manager; }
|
Chris@127
|
176
|
Chris@127
|
177 virtual void setFollowGlobalPan(bool f);
|
Chris@127
|
178 virtual bool getFollowGlobalPan() const { return m_followPan; }
|
Chris@127
|
179
|
Chris@127
|
180 virtual void setFollowGlobalZoom(bool f);
|
Chris@127
|
181 virtual bool getFollowGlobalZoom() const { return m_followZoom; }
|
Chris@127
|
182
|
Chris@224
|
183 virtual bool hasLightBackground() const;
|
Chris@127
|
184
|
Chris@127
|
185 enum TextStyle {
|
Chris@127
|
186 BoxedText,
|
Chris@127
|
187 OutlinedText
|
Chris@127
|
188 };
|
Chris@127
|
189
|
Chris@127
|
190 virtual void drawVisibleText(QPainter &p, int x, int y,
|
Chris@267
|
191 QString text, TextStyle style) const;
|
Chris@267
|
192
|
Chris@270
|
193 virtual void drawMeasurementRect(QPainter &p, const Layer *,
|
Chris@270
|
194 QRect rect, bool focus) const;
|
Chris@127
|
195
|
Chris@127
|
196 virtual bool shouldIlluminateLocalFeatures(const Layer *, QPoint &) const {
|
Chris@127
|
197 return false;
|
Chris@127
|
198 }
|
Chris@127
|
199 virtual bool shouldIlluminateLocalSelection(QPoint &, bool &, bool &) const {
|
Chris@127
|
200 return false;
|
Chris@127
|
201 }
|
Chris@127
|
202
|
Chris@127
|
203 virtual void setPlaybackFollow(PlaybackFollowMode m);
|
Chris@127
|
204 virtual PlaybackFollowMode getPlaybackFollow() const { return m_followPlay; }
|
Chris@127
|
205
|
Chris@127
|
206 typedef PropertyContainer::PropertyName PropertyName;
|
Chris@127
|
207
|
Chris@127
|
208 // We implement the PropertyContainer API, although we don't
|
Chris@127
|
209 // actually subclass PropertyContainer. We have our own
|
Chris@127
|
210 // PropertyContainer that we can return on request that just
|
Chris@127
|
211 // delegates back to us.
|
Chris@127
|
212 virtual PropertyContainer::PropertyList getProperties() const;
|
Chris@127
|
213 virtual QString getPropertyLabel(const PropertyName &) const;
|
Chris@127
|
214 virtual PropertyContainer::PropertyType getPropertyType(const PropertyName &) const;
|
Chris@127
|
215 virtual int getPropertyRangeAndValue(const PropertyName &,
|
Chris@216
|
216 int *min, int *max, int *deflt) const;
|
Chris@127
|
217 virtual QString getPropertyValueLabel(const PropertyName &,
|
Chris@127
|
218 int value) const;
|
Chris@127
|
219 virtual void setProperty(const PropertyName &, int value);
|
Chris@127
|
220 virtual QString getPropertyContainerName() const {
|
Chris@127
|
221 return objectName();
|
Chris@127
|
222 }
|
Chris@127
|
223 virtual QString getPropertyContainerIconName() const = 0;
|
Chris@127
|
224
|
Chris@127
|
225 virtual size_t getPropertyContainerCount() const;
|
Chris@127
|
226
|
Chris@127
|
227 virtual const PropertyContainer *getPropertyContainer(size_t i) const;
|
Chris@127
|
228 virtual PropertyContainer *getPropertyContainer(size_t i);
|
Chris@127
|
229
|
Chris@229
|
230 // Render the contents on a wide canvas
|
Chris@229
|
231 virtual QImage *toNewImage(size_t f0, size_t f1);
|
Chris@226
|
232 virtual QImage *toNewImage();
|
Chris@229
|
233 virtual QSize getImageSize(size_t f0, size_t f1);
|
Chris@229
|
234 virtual QSize getImageSize();
|
Chris@226
|
235
|
Chris@127
|
236 virtual int getTextLabelHeight(const Layer *layer, QPainter &) const;
|
Chris@127
|
237
|
Chris@127
|
238 virtual bool getValueExtents(QString unit, float &min, float &max,
|
Chris@127
|
239 bool &log) const;
|
Chris@127
|
240
|
Chris@127
|
241 virtual QString toXmlString(QString indent = "",
|
Chris@127
|
242 QString extraAttributes = "") const;
|
Chris@127
|
243
|
Chris@222
|
244 // First frame actually in model, to right of scale, if present
|
Chris@222
|
245 virtual size_t getFirstVisibleFrame() const;
|
Chris@222
|
246 virtual size_t getLastVisibleFrame() const;
|
Chris@222
|
247
|
Chris@127
|
248 size_t getModelsStartFrame() const;
|
Chris@127
|
249 size_t getModelsEndFrame() const;
|
Chris@127
|
250
|
Chris@127
|
251 signals:
|
Chris@127
|
252 void propertyContainerAdded(PropertyContainer *pc);
|
Chris@127
|
253 void propertyContainerRemoved(PropertyContainer *pc);
|
Chris@127
|
254 void propertyContainerPropertyChanged(PropertyContainer *pc);
|
Chris@197
|
255 void propertyContainerPropertyRangeChanged(PropertyContainer *pc);
|
Chris@127
|
256 void propertyContainerNameChanged(PropertyContainer *pc);
|
Chris@127
|
257 void propertyChanged(PropertyContainer::PropertyName);
|
Chris@127
|
258
|
Chris@211
|
259 void centreFrameChanged(unsigned long frame,
|
Chris@211
|
260 bool globalScroll,
|
Chris@211
|
261 PlaybackFollowMode followMode);
|
Chris@211
|
262
|
Chris@222
|
263 void zoomLevelChanged(unsigned long, bool);
|
Chris@127
|
264
|
Chris@189
|
265 void contextHelpChanged(const QString &);
|
Chris@189
|
266
|
Chris@127
|
267 public slots:
|
Chris@127
|
268 virtual void modelChanged();
|
Chris@127
|
269 virtual void modelChanged(size_t startFrame, size_t endFrame);
|
Chris@127
|
270 virtual void modelCompletionChanged();
|
Chris@127
|
271 virtual void modelReplaced();
|
Chris@127
|
272 virtual void layerParametersChanged();
|
Chris@197
|
273 virtual void layerParameterRangesChanged();
|
Chris@268
|
274 virtual void layerMeasurementRectsChanged();
|
Chris@127
|
275 virtual void layerNameChanged();
|
Chris@127
|
276
|
Chris@211
|
277 virtual void globalCentreFrameChanged(unsigned long);
|
Chris@211
|
278 virtual void viewCentreFrameChanged(View *, unsigned long);
|
Chris@127
|
279 virtual void viewManagerPlaybackFrameChanged(unsigned long);
|
Chris@222
|
280 virtual void viewZoomLevelChanged(View *, unsigned long, bool);
|
Chris@127
|
281
|
Chris@127
|
282 virtual void propertyContainerSelected(View *, PropertyContainer *pc);
|
Chris@127
|
283
|
Chris@127
|
284 virtual void selectionChanged();
|
Chris@127
|
285 virtual void toolModeChanged();
|
Chris@133
|
286 virtual void overlayModeChanged();
|
Chris@133
|
287 virtual void zoomWheelsEnabledChanged();
|
Chris@127
|
288
|
Chris@127
|
289 protected:
|
Chris@127
|
290 View(QWidget *, bool showProgress);
|
Chris@127
|
291 virtual void paintEvent(QPaintEvent *e);
|
Chris@127
|
292 virtual void drawSelections(QPainter &);
|
Chris@127
|
293 virtual bool shouldLabelSelections() const { return true; }
|
Chris@229
|
294 virtual bool render(QPainter &paint, int x0, size_t f0, size_t f1);
|
Chris@127
|
295
|
Chris@127
|
296 typedef std::vector<Layer *> LayerList;
|
Chris@127
|
297
|
Chris@127
|
298 int getModelsSampleRate() const;
|
Chris@127
|
299 bool areLayersScrollable() const;
|
Chris@127
|
300 LayerList getScrollableBackLayers(bool testChanged, bool &changed) const;
|
Chris@127
|
301 LayerList getNonScrollableFrontLayers(bool testChanged, bool &changed) const;
|
Chris@127
|
302 size_t getZoomConstraintBlockSize(size_t blockSize,
|
Chris@127
|
303 ZoomConstraint::RoundingDirection dir =
|
Chris@127
|
304 ZoomConstraint::RoundNearest) const;
|
Chris@127
|
305
|
Chris@183
|
306 // True if the top layer(s) use colours for meaningful things. If
|
Chris@183
|
307 // this is the case, selections will be shown using unfilled boxes
|
Chris@183
|
308 // rather than with a translucent fill.
|
Chris@183
|
309 bool areLayerColoursSignificant() const;
|
Chris@183
|
310
|
Chris@217
|
311 // True if the top layer has a time axis on the x coordinate (this
|
Chris@217
|
312 // is generally the case except for spectrum/slice layers). It
|
Chris@217
|
313 // will not be possible to make or display selections if this is
|
Chris@217
|
314 // false.
|
Chris@217
|
315 bool hasTopLayerTimeXAxis() const;
|
Chris@217
|
316
|
Chris@127
|
317 bool setCentreFrame(size_t f, bool doEmit);
|
Chris@127
|
318
|
Chris@127
|
319 void checkProgress(void *object);
|
Chris@127
|
320
|
Chris@127
|
321 size_t m_centreFrame;
|
Chris@127
|
322 int m_zoomLevel;
|
Chris@127
|
323 bool m_followPan;
|
Chris@127
|
324 bool m_followZoom;
|
Chris@127
|
325 PlaybackFollowMode m_followPlay;
|
Chris@127
|
326 size_t m_playPointerFrame;
|
Chris@127
|
327 bool m_lightBackground;
|
Chris@127
|
328 bool m_showProgress;
|
Chris@127
|
329
|
Chris@127
|
330 QPixmap *m_cache;
|
Chris@127
|
331 size_t m_cacheCentreFrame;
|
Chris@127
|
332 int m_cacheZoomLevel;
|
Chris@127
|
333 bool m_selectionCached;
|
Chris@127
|
334
|
Chris@127
|
335 bool m_deleting;
|
Chris@127
|
336
|
Chris@127
|
337 LayerList m_layers; // I don't own these, but see dtor note above
|
Chris@127
|
338 bool m_haveSelectedLayer;
|
Chris@127
|
339
|
Chris@127
|
340 // caches for use in getScrollableBackLayers, getNonScrollableFrontLayers
|
Chris@127
|
341 mutable LayerList m_lastScrollableBackLayers;
|
Chris@127
|
342 mutable LayerList m_lastNonScrollableBackLayers;
|
Chris@127
|
343
|
Chris@127
|
344 class LayerProgressBar : public QProgressBar {
|
Chris@127
|
345 public:
|
Chris@127
|
346 LayerProgressBar(QWidget *parent);
|
Chris@127
|
347 virtual QString text() const { return m_text; }
|
Chris@127
|
348 virtual void setText(QString text) { m_text = text; }
|
Chris@127
|
349 protected:
|
Chris@127
|
350 QString m_text;
|
Chris@127
|
351 };
|
Chris@127
|
352
|
Chris@127
|
353 typedef std::map<Layer *, LayerProgressBar *> ProgressMap;
|
Chris@127
|
354 ProgressMap m_progressBars; // I own the ProgressBars
|
Chris@127
|
355
|
Chris@127
|
356 ViewManager *m_manager; // I don't own this
|
Chris@127
|
357 ViewPropertyContainer *m_propertyContainer; // I own this
|
Chris@127
|
358 };
|
Chris@127
|
359
|
Chris@127
|
360
|
Chris@127
|
361 // Use this for delegation, because we can't subclass from
|
Chris@127
|
362 // PropertyContainer (which is a QObject) ourselves because of
|
Chris@127
|
363 // ambiguity with QFrame parent
|
Chris@127
|
364
|
Chris@127
|
365 class ViewPropertyContainer : public PropertyContainer
|
Chris@127
|
366 {
|
Chris@127
|
367 Q_OBJECT
|
Chris@127
|
368
|
Chris@127
|
369 public:
|
Chris@127
|
370 ViewPropertyContainer(View *v);
|
Chris@127
|
371 PropertyList getProperties() const { return m_v->getProperties(); }
|
Chris@127
|
372 QString getPropertyLabel(const PropertyName &n) const {
|
Chris@127
|
373 return m_v->getPropertyLabel(n);
|
Chris@127
|
374 }
|
Chris@127
|
375 PropertyType getPropertyType(const PropertyName &n) const {
|
Chris@127
|
376 return m_v->getPropertyType(n);
|
Chris@127
|
377 }
|
Chris@216
|
378 int getPropertyRangeAndValue(const PropertyName &n, int *min, int *max,
|
Chris@216
|
379 int *deflt) const {
|
Chris@216
|
380 return m_v->getPropertyRangeAndValue(n, min, max, deflt);
|
Chris@127
|
381 }
|
Chris@127
|
382 QString getPropertyValueLabel(const PropertyName &n, int value) const {
|
Chris@127
|
383 return m_v->getPropertyValueLabel(n, value);
|
Chris@127
|
384 }
|
Chris@127
|
385 QString getPropertyContainerName() const {
|
Chris@127
|
386 return m_v->getPropertyContainerName();
|
Chris@127
|
387 }
|
Chris@127
|
388 QString getPropertyContainerIconName() const {
|
Chris@127
|
389 return m_v->getPropertyContainerIconName();
|
Chris@127
|
390 }
|
Chris@127
|
391
|
Chris@127
|
392 public slots:
|
Chris@127
|
393 virtual void setProperty(const PropertyName &n, int value) {
|
Chris@127
|
394 m_v->setProperty(n, value);
|
Chris@127
|
395 }
|
Chris@127
|
396
|
Chris@127
|
397 protected:
|
Chris@127
|
398 View *m_v;
|
Chris@127
|
399 };
|
Chris@127
|
400
|
Chris@127
|
401 #endif
|
Chris@127
|
402
|