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@182
|
7 This file copyright 2006 Chris Cannam and QMUL.
|
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@127
|
16 #ifndef _LAYER_H_
|
Chris@127
|
17 #define _LAYER_H_
|
Chris@127
|
18
|
Chris@128
|
19 #include "base/PropertyContainer.h"
|
Chris@128
|
20 #include "base/XmlExportable.h"
|
Chris@128
|
21 #include "base/Selection.h"
|
Chris@127
|
22
|
Chris@127
|
23 #include <QObject>
|
Chris@127
|
24 #include <QRect>
|
Chris@127
|
25 #include <QXmlAttributes>
|
Chris@131
|
26 #include <QMutex>
|
Chris@299
|
27 #include <QPixmap>
|
Chris@127
|
28
|
Chris@127
|
29 #include <map>
|
Chris@268
|
30 #include <set>
|
Chris@127
|
31
|
Chris@127
|
32 class ZoomConstraint;
|
Chris@127
|
33 class Model;
|
Chris@127
|
34 class QPainter;
|
Chris@127
|
35 class View;
|
Chris@127
|
36 class QMouseEvent;
|
Chris@127
|
37 class Clipboard;
|
Chris@187
|
38 class RangeMapper;
|
Chris@127
|
39
|
Chris@127
|
40 /**
|
Chris@127
|
41 * The base class for visual representations of the data found in a
|
Chris@127
|
42 * Model. Layers are expected to be able to draw themselves onto a
|
Chris@127
|
43 * View, and may also be editable.
|
Chris@127
|
44 */
|
Chris@127
|
45
|
Chris@127
|
46 class Layer : public PropertyContainer,
|
Chris@127
|
47 public XmlExportable
|
Chris@127
|
48 {
|
Chris@127
|
49 Q_OBJECT
|
Chris@127
|
50
|
Chris@127
|
51 public:
|
Chris@127
|
52 Layer();
|
Chris@127
|
53 virtual ~Layer();
|
Chris@127
|
54
|
Chris@127
|
55 virtual const Model *getModel() const = 0;
|
Chris@127
|
56 virtual Model *getModel() {
|
Chris@127
|
57 return const_cast<Model *>(const_cast<const Layer *>(this)->getModel());
|
Chris@127
|
58 }
|
Chris@127
|
59
|
Chris@137
|
60 /**
|
Chris@137
|
61 * Return a zoom constraint object defining the supported zoom
|
Chris@137
|
62 * levels for this layer. If this returns zero, the layer will
|
Chris@137
|
63 * support any integer zoom level.
|
Chris@137
|
64 */
|
Chris@127
|
65 virtual const ZoomConstraint *getZoomConstraint() const { return 0; }
|
Chris@137
|
66
|
Chris@137
|
67 /**
|
Chris@137
|
68 * Return true if this layer can handle zoom levels other than
|
Chris@137
|
69 * those supported by its zoom constraint (presumably less
|
Chris@137
|
70 * efficiently or accurately than the officially supported zoom
|
Chris@137
|
71 * levels). If true, the layer will unenthusistically accept any
|
Chris@137
|
72 * integer zoom level from 1 to the maximum returned by its zoom
|
Chris@137
|
73 * constraint.
|
Chris@137
|
74 */
|
Chris@137
|
75 virtual bool supportsOtherZoomLevels() const { return true; }
|
Chris@137
|
76
|
Chris@127
|
77 virtual void paint(View *, QPainter &, QRect) const = 0;
|
Chris@127
|
78
|
Chris@127
|
79 enum VerticalPosition {
|
Chris@127
|
80 PositionTop, PositionMiddle, PositionBottom
|
Chris@127
|
81 };
|
Chris@127
|
82 virtual VerticalPosition getPreferredTimeRulerPosition() const {
|
Chris@127
|
83 return PositionMiddle;
|
Chris@127
|
84 }
|
Chris@127
|
85 virtual VerticalPosition getPreferredFrameCountPosition() const {
|
Chris@127
|
86 return PositionBottom;
|
Chris@127
|
87 }
|
Chris@224
|
88 virtual bool hasLightBackground() const {
|
Chris@224
|
89 return true;
|
Chris@224
|
90 }
|
Chris@127
|
91
|
Chris@127
|
92 virtual QString getPropertyContainerIconName() const;
|
Chris@127
|
93
|
Chris@127
|
94 virtual QString getPropertyContainerName() const {
|
Chris@363
|
95 if (m_presentationName != "") return m_presentationName;
|
Chris@363
|
96 else return objectName();
|
Chris@127
|
97 }
|
Chris@127
|
98
|
Chris@363
|
99 virtual void setPresentationName(QString name);
|
Chris@363
|
100
|
Chris@127
|
101 virtual QString getLayerPresentationName() const;
|
Chris@299
|
102 virtual QPixmap getLayerPresentationPixmap(QSize) const { return QPixmap(); }
|
Chris@127
|
103
|
Chris@127
|
104 virtual int getVerticalScaleWidth(View *, QPainter &) const { return 0; }
|
Chris@127
|
105 virtual void paintVerticalScale(View *, QPainter &, QRect) const { }
|
Chris@127
|
106
|
Chris@127
|
107 virtual bool getCrosshairExtents(View *, QPainter &, QPoint /* cursorPos */,
|
Chris@127
|
108 std::vector<QRect> &) const {
|
Chris@127
|
109 return false;
|
Chris@127
|
110 }
|
Chris@127
|
111 virtual void paintCrosshairs(View *, QPainter &, QPoint) const { }
|
Chris@127
|
112
|
Chris@272
|
113 virtual void paintMeasurementRects(View *, QPainter &,
|
Chris@272
|
114 bool showFocus, QPoint focusPoint) const;
|
Chris@272
|
115
|
Chris@272
|
116 virtual bool nearestMeasurementRectChanged(View *, QPoint prev,
|
Chris@272
|
117 QPoint now) const;
|
Chris@267
|
118
|
Chris@127
|
119 virtual QString getFeatureDescription(View *, QPoint &) const {
|
Chris@127
|
120 return "";
|
Chris@127
|
121 }
|
Chris@127
|
122
|
Chris@127
|
123 enum SnapType {
|
Chris@127
|
124 SnapLeft,
|
Chris@127
|
125 SnapRight,
|
Chris@127
|
126 SnapNearest,
|
Chris@127
|
127 SnapNeighbouring
|
Chris@127
|
128 };
|
Chris@127
|
129
|
Chris@127
|
130 /**
|
Chris@127
|
131 * Adjust the given frame to snap to the nearest feature, if
|
Chris@127
|
132 * possible.
|
Chris@127
|
133 *
|
Chris@127
|
134 * If snap is SnapLeft or SnapRight, adjust the frame to match
|
Chris@127
|
135 * that of the nearest feature in the given direction regardless
|
Chris@127
|
136 * of how far away it is. If snap is SnapNearest, adjust the
|
Chris@127
|
137 * frame to that of the nearest feature in either direction. If
|
Chris@127
|
138 * snap is SnapNeighbouring, adjust the frame to that of the
|
Chris@127
|
139 * nearest feature if it is close, and leave it alone (returning
|
Chris@127
|
140 * false) otherwise. SnapNeighbouring should always choose the
|
Chris@127
|
141 * same feature that would be used in an editing operation through
|
Chris@127
|
142 * calls to editStart etc.
|
Chris@127
|
143 *
|
Chris@127
|
144 * Return true if a suitable feature was found and frame adjusted
|
Chris@180
|
145 * accordingly. Return false if no suitable feature was available
|
Chris@180
|
146 * (and leave frame unmodified). Also return the resolution of
|
Chris@180
|
147 * the model in this layer in sample frames.
|
Chris@127
|
148 */
|
Chris@127
|
149 virtual bool snapToFeatureFrame(View * /* v */,
|
Chris@127
|
150 int & /* frame */,
|
Chris@127
|
151 size_t &resolution,
|
Chris@127
|
152 SnapType /* snap */) const {
|
Chris@127
|
153 resolution = 1;
|
Chris@127
|
154 return false;
|
Chris@127
|
155 }
|
Chris@127
|
156
|
Chris@335
|
157 // Draw, erase, and edit modes:
|
Chris@127
|
158 //
|
Chris@127
|
159 // Layer needs to get actual mouse events, I guess. Draw mode is
|
Chris@127
|
160 // probably the easier.
|
Chris@127
|
161
|
Chris@127
|
162 virtual void drawStart(View *, QMouseEvent *) { }
|
Chris@127
|
163 virtual void drawDrag(View *, QMouseEvent *) { }
|
Chris@127
|
164 virtual void drawEnd(View *, QMouseEvent *) { }
|
Chris@127
|
165
|
Chris@335
|
166 virtual void eraseStart(View *, QMouseEvent *) { }
|
Chris@335
|
167 virtual void eraseDrag(View *, QMouseEvent *) { }
|
Chris@335
|
168 virtual void eraseEnd(View *, QMouseEvent *) { }
|
Chris@335
|
169
|
Chris@127
|
170 virtual void editStart(View *, QMouseEvent *) { }
|
Chris@127
|
171 virtual void editDrag(View *, QMouseEvent *) { }
|
Chris@127
|
172 virtual void editEnd(View *, QMouseEvent *) { }
|
Chris@127
|
173
|
Chris@267
|
174 // Measurement rectangle (or equivalent). Unlike draw and edit,
|
Chris@267
|
175 // the base Layer class can provide working implementations of
|
Chris@267
|
176 // these for most situations.
|
Chris@267
|
177 //
|
Chris@267
|
178 virtual void measureStart(View *, QMouseEvent *);
|
Chris@267
|
179 virtual void measureDrag(View *, QMouseEvent *);
|
Chris@267
|
180 virtual void measureEnd(View *, QMouseEvent *);
|
Chris@280
|
181 virtual void measureDoubleClick(View *, QMouseEvent *);
|
Chris@267
|
182
|
Chris@283
|
183 virtual bool haveCurrentMeasureRect() const {
|
Chris@283
|
184 return m_haveCurrentMeasureRect;
|
Chris@283
|
185 }
|
Chris@283
|
186 virtual void deleteCurrentMeasureRect(); // using a command
|
Chris@283
|
187
|
Chris@255
|
188 /**
|
Chris@255
|
189 * Open an editor on the item under the mouse (e.g. on
|
Chris@255
|
190 * double-click). If there is no item or editing is not
|
Chris@255
|
191 * supported, return false.
|
Chris@255
|
192 */
|
Chris@255
|
193 virtual bool editOpen(View *, QMouseEvent *) { return false; }
|
Chris@127
|
194
|
Chris@127
|
195 virtual void moveSelection(Selection, size_t /* newStartFrame */) { }
|
Chris@127
|
196 virtual void resizeSelection(Selection, Selection /* newSize */) { }
|
Chris@127
|
197 virtual void deleteSelection(Selection) { }
|
Chris@127
|
198
|
Chris@359
|
199 virtual void copy(View *, Selection, Clipboard & /* to */) { }
|
Chris@127
|
200
|
Chris@127
|
201 /**
|
Chris@127
|
202 * Paste from the given clipboard onto the layer at the given
|
Chris@127
|
203 * frame offset. If interactive is true, the layer may ask the
|
Chris@127
|
204 * user about paste options through a dialog if desired, and may
|
Chris@127
|
205 * return false if the user cancelled the paste operation. This
|
Chris@127
|
206 * function should return true if a paste actually occurred.
|
Chris@127
|
207 */
|
Chris@359
|
208 virtual bool paste(View *,
|
Chris@359
|
209 const Clipboard & /* from */,
|
Chris@127
|
210 int /* frameOffset */,
|
Chris@127
|
211 bool /* interactive */) { return false; }
|
Chris@127
|
212
|
Chris@127
|
213 // Text mode:
|
Chris@127
|
214 //
|
Chris@127
|
215 // Label nearest feature. We need to get the feature coordinates
|
Chris@127
|
216 // and current label from the layer, and then the pane can pop up
|
Chris@127
|
217 // a little text entry dialog at the right location. Or we edit
|
Chris@127
|
218 // in place? Probably the dialog is easier.
|
Chris@127
|
219
|
Chris@127
|
220 /**
|
Chris@127
|
221 * This should return true if the layer can safely be scrolled
|
Chris@127
|
222 * automatically by a given view (simply copying the existing data
|
Chris@127
|
223 * and then refreshing the exposed area) without altering its
|
Chris@127
|
224 * meaning. For the view widget as a whole this is usually not
|
Chris@127
|
225 * possible because of invariant (non-scrolling) material
|
Chris@127
|
226 * displayed over the top, but the widget may be able to optimise
|
Chris@127
|
227 * scrolling better if it is known that individual views can be
|
Chris@127
|
228 * scrolled safely in this way.
|
Chris@127
|
229 */
|
Chris@127
|
230 virtual bool isLayerScrollable(const View *) const { return true; }
|
Chris@127
|
231
|
Chris@127
|
232 /**
|
Chris@127
|
233 * This should return true if the layer completely obscures any
|
Chris@127
|
234 * underlying layers. It's used to determine whether the view can
|
Chris@127
|
235 * safely draw any selection rectangles under the layer instead of
|
Chris@127
|
236 * over it, in the case where the layer is not scrollable and
|
Chris@127
|
237 * therefore needs to be redrawn each time (so that the selection
|
Chris@127
|
238 * rectangle can be cached).
|
Chris@127
|
239 */
|
Chris@127
|
240 virtual bool isLayerOpaque() const { return false; }
|
Chris@127
|
241
|
Chris@287
|
242 enum ColourSignificance {
|
Chris@287
|
243 ColourAbsent,
|
Chris@287
|
244 ColourIrrelevant,
|
Chris@287
|
245 ColourDistinguishes,
|
Chris@287
|
246 ColourAndBackgroundSignificant,
|
Chris@287
|
247 ColourHasMeaningfulValue
|
Chris@287
|
248 };
|
Chris@287
|
249
|
Chris@127
|
250 /**
|
Chris@287
|
251 * This should return the degree of meaning associated with colour
|
Chris@287
|
252 * in this layer.
|
Chris@287
|
253 *
|
Chris@287
|
254 * If ColourAbsent, the layer does not use colour. If
|
Chris@287
|
255 * ColourIrrelevant, the layer is coloured and the colour may be
|
Chris@287
|
256 * set by the user, but it doesn't really matter what the colour
|
Chris@287
|
257 * is (for example, in a time ruler layer). If
|
Chris@287
|
258 * ColourDistinguishes, then the colour is used to distinguish
|
Chris@287
|
259 * this layer from other similar layers (e.g. for data layers).
|
Chris@287
|
260 * If ColourAndBackgroundSignificant, then the layer should be
|
Chris@287
|
261 * given greater weight than ColourDistinguishes layers when
|
Chris@287
|
262 * choosing a background colour (e.g. for waveforms). If
|
Chris@287
|
263 * ColourHasMeaningfulValue, colours are actually meaningful --
|
Chris@287
|
264 * the view will then show selections using unfilled rectangles
|
Chris@287
|
265 * instead of translucent filled rectangles, so as not to disturb
|
Chris@287
|
266 * the colours underneath.
|
Chris@183
|
267 */
|
Chris@287
|
268 virtual ColourSignificance getLayerColourSignificance() const = 0;
|
Chris@183
|
269
|
Chris@183
|
270 /**
|
Chris@127
|
271 * This should return true if the layer can be edited by the user.
|
Chris@127
|
272 * If this is the case, the appropriate edit tools may be made
|
Chris@127
|
273 * available by the application and the layer's drawStart/Drag/End
|
Chris@127
|
274 * and editStart/Drag/End methods should be implemented.
|
Chris@127
|
275 */
|
Chris@127
|
276 virtual bool isLayerEditable() const { return false; }
|
Chris@127
|
277
|
Chris@127
|
278 /**
|
Chris@127
|
279 * Return the proportion of background work complete in drawing
|
Chris@127
|
280 * this view, as a percentage -- in most cases this will be the
|
Chris@127
|
281 * value returned by pointer from a call to the underlying model's
|
Chris@226
|
282 * isReady(int *) call. The view may choose to show a progress
|
Chris@127
|
283 * meter if it finds that this returns < 100 at any given moment.
|
Chris@127
|
284 */
|
Chris@127
|
285 virtual int getCompletion(View *) const { return 100; }
|
Chris@127
|
286
|
Chris@127
|
287 virtual void setObjectName(const QString &name);
|
Chris@127
|
288
|
Chris@127
|
289 /**
|
Chris@127
|
290 * Convert the layer's data (though not those of the model it
|
Chris@316
|
291 * refers to) into XML for file output. This class implements the
|
Chris@316
|
292 * basic name/type/model-id output; subclasses will typically call
|
Chris@316
|
293 * this superclass implementation with extra attributes describing
|
Chris@316
|
294 * their particular properties.
|
Chris@127
|
295 */
|
Chris@316
|
296 virtual void toXml(QTextStream &stream, QString indent = "",
|
Chris@316
|
297 QString extraAttributes = "") const;
|
Chris@127
|
298
|
Chris@127
|
299 /**
|
Chris@127
|
300 * Set the particular properties of a layer (those specific to the
|
Chris@127
|
301 * subclass) from a set of XML attributes. This is the effective
|
Chris@316
|
302 * inverse of the toXml method.
|
Chris@127
|
303 */
|
Chris@127
|
304 virtual void setProperties(const QXmlAttributes &) = 0;
|
Chris@127
|
305
|
Chris@127
|
306 /**
|
Chris@316
|
307 * Produce XML containing the layer's ID and type. This is used
|
Chris@316
|
308 * to refer to the layer in the display section of the SV session
|
Chris@316
|
309 * file, for a layer that has already been described in the data
|
Chris@316
|
310 * section.
|
Chris@269
|
311 */
|
Chris@316
|
312 virtual void toBriefXml(QTextStream &stream,
|
Chris@316
|
313 QString indent = "",
|
Chris@316
|
314 QString extraAttributes = "") const;
|
Chris@269
|
315
|
Chris@269
|
316 /**
|
Chris@269
|
317 * Add a measurement rectangle from the given XML attributes
|
Chris@269
|
318 * (presumably taken from a measurement element).
|
Chris@269
|
319 * Does not use a command.
|
Chris@269
|
320 */
|
Chris@269
|
321 virtual void addMeasurementRect(const QXmlAttributes &);
|
Chris@269
|
322
|
Chris@269
|
323 /**
|
Chris@127
|
324 * Indicate that a layer is not currently visible in the given
|
Chris@127
|
325 * view and is not expected to become visible in the near future
|
Chris@127
|
326 * (for example because the user has explicitly removed or hidden
|
Chris@127
|
327 * it). The layer may respond by (for example) freeing any cache
|
Chris@127
|
328 * memory it is using, until next time its paint method is called,
|
Chris@127
|
329 * when it should set itself un-dormant again.
|
Chris@131
|
330 *
|
Chris@131
|
331 * A layer class that overrides this function must also call this
|
Chris@131
|
332 * class's implementation.
|
Chris@127
|
333 */
|
Chris@131
|
334 virtual void setLayerDormant(const View *v, bool dormant);
|
Chris@127
|
335
|
Chris@127
|
336 /**
|
Chris@127
|
337 * Return whether the layer is dormant (i.e. hidden) in the given
|
Chris@127
|
338 * view.
|
Chris@127
|
339 */
|
Chris@131
|
340 virtual bool isLayerDormant(const View *v) const;
|
Chris@127
|
341
|
Chris@127
|
342 virtual PlayParameters *getPlayParameters();
|
Chris@127
|
343
|
Chris@127
|
344 virtual bool needsTextLabelHeight() const { return false; }
|
Chris@127
|
345
|
Chris@217
|
346 virtual bool hasTimeXAxis() const { return true; }
|
Chris@217
|
347
|
Chris@127
|
348 /**
|
Chris@127
|
349 * Return the minimum and maximum values for the y axis of the
|
Chris@127
|
350 * model in this layer, as well as whether the layer is configured
|
Chris@127
|
351 * to use a logarithmic y axis display. Also return the unit for
|
Chris@127
|
352 * these values if known.
|
Chris@127
|
353 *
|
Chris@127
|
354 * This function returns the "normal" extents for the layer, not
|
Chris@127
|
355 * necessarily the extents actually in use in the display.
|
Chris@127
|
356 */
|
Chris@127
|
357 virtual bool getValueExtents(float &min, float &max,
|
Chris@127
|
358 bool &logarithmic, QString &unit) const = 0;
|
Chris@127
|
359
|
Chris@127
|
360 /**
|
Chris@127
|
361 * Return the minimum and maximum values within the displayed
|
Chris@127
|
362 * range for the y axis, if only a subset of the whole range of
|
Chris@127
|
363 * the model (returned by getValueExtents) is being displayed.
|
Chris@127
|
364 * Return false if the layer is not imposing a particular display
|
Chris@127
|
365 * extent (using the normal layer extents or deferring to whatever
|
Chris@127
|
366 * is in use for the same units elsewhere in the view).
|
Chris@127
|
367 */
|
Chris@127
|
368 virtual bool getDisplayExtents(float & /* min */,
|
Chris@127
|
369 float & /* max */) const {
|
Chris@127
|
370 return false;
|
Chris@127
|
371 }
|
Chris@127
|
372
|
Chris@127
|
373 /**
|
Chris@127
|
374 * Set the displayed minimum and maximum values for the y axis to
|
Chris@127
|
375 * the given range, if supported. Return false if not supported
|
Chris@127
|
376 * on this layer (and set nothing). In most cases, layers that
|
Chris@127
|
377 * return false for getDisplayExtents should also return false for
|
Chris@127
|
378 * this function.
|
Chris@127
|
379 */
|
Chris@127
|
380 virtual bool setDisplayExtents(float /* min */,
|
Chris@127
|
381 float /* max */) {
|
Chris@127
|
382 return false;
|
Chris@127
|
383 }
|
Chris@127
|
384
|
Chris@133
|
385 /**
|
Chris@260
|
386 * Return the value and unit at the given x coordinate in the
|
Chris@260
|
387 * given view. This is for descriptive purposes using the
|
Chris@260
|
388 * measurement tool. The default implementation works correctly
|
Chris@260
|
389 * if the layer hasTimeXAxis().
|
Chris@260
|
390 */
|
Chris@267
|
391 virtual bool getXScaleValue(const View *v, int x,
|
Chris@260
|
392 float &value, QString &unit) const;
|
Chris@260
|
393
|
Chris@260
|
394 /**
|
Chris@260
|
395 * Return the value and unit at the given y coordinate in the
|
Chris@260
|
396 * given view.
|
Chris@260
|
397 */
|
Chris@267
|
398 virtual bool getYScaleValue(const View *, int /* y */,
|
Chris@260
|
399 float &/* value */, QString &/* unit */) const {
|
Chris@260
|
400 return false;
|
Chris@260
|
401 }
|
Chris@260
|
402
|
Chris@260
|
403 /**
|
Chris@274
|
404 * Return the difference between the values at the given y
|
Chris@274
|
405 * coordinates in the given view, and the unit of the difference.
|
Chris@274
|
406 * The default implementation just calls getYScaleValue twice and
|
Chris@274
|
407 * returns the difference, with the same unit.
|
Chris@274
|
408 */
|
Chris@274
|
409 virtual bool getYScaleDifference(const View *v, int y0, int y1,
|
Chris@274
|
410 float &diff, QString &unit) const;
|
Chris@274
|
411
|
Chris@274
|
412 /**
|
Chris@133
|
413 * Get the number of vertical zoom steps available for this layer.
|
Chris@133
|
414 * If vertical zooming is not available, return 0. The meaning of
|
Chris@133
|
415 * "zooming" is entirely up to the layer -- changing the zoom
|
Chris@133
|
416 * level may cause the layer to reset its display extents or
|
Chris@180
|
417 * change another property such as display gain. However, layers
|
Chris@180
|
418 * are advised for consistency to treat smaller zoom steps as
|
Chris@180
|
419 * "more distant" or "zoomed out" and larger ones as "closer" or
|
Chris@180
|
420 * "zoomed in".
|
Chris@180
|
421 *
|
Chris@133
|
422 * Layers that provide this facility should also emit the
|
Chris@133
|
423 * verticalZoomChanged signal if their vertical zoom changes
|
Chris@133
|
424 * due to factors other than setVerticalZoomStep being called.
|
Chris@133
|
425 */
|
Chris@248
|
426 virtual int getVerticalZoomSteps(int & /* defaultStep */) const { return 0; }
|
Chris@133
|
427
|
Chris@133
|
428 /**
|
Chris@133
|
429 * Get the current vertical zoom step. A layer may support finer
|
Chris@133
|
430 * control over ranges etc than is available through the integer
|
Chris@133
|
431 * zoom step mechanism; if this one does, it should just return
|
Chris@133
|
432 * the nearest of the available zoom steps to the current settings.
|
Chris@133
|
433 */
|
Chris@133
|
434 virtual int getCurrentVerticalZoomStep() const { return 0; }
|
Chris@133
|
435
|
Chris@133
|
436 /**
|
Chris@133
|
437 * Set the vertical zoom step. The meaning of "zooming" is
|
Chris@133
|
438 * entirely up to the layer -- changing the zoom level may cause
|
Chris@133
|
439 * the layer to reset its display extents or change another
|
Chris@133
|
440 * property such as display gain.
|
Chris@133
|
441 */
|
Chris@133
|
442 virtual void setVerticalZoomStep(int) { }
|
Chris@133
|
443
|
Chris@187
|
444 /**
|
Chris@187
|
445 * Create and return a range mapper for vertical zoom step values.
|
Chris@187
|
446 * See the RangeMapper documentation for more details. The
|
Chris@187
|
447 * returned value is allocated on the heap and will be deleted by
|
Chris@187
|
448 * the caller.
|
Chris@187
|
449 */
|
Chris@187
|
450 virtual RangeMapper *getNewVerticalZoomRangeMapper() const { return 0; }
|
Chris@187
|
451
|
Chris@127
|
452 public slots:
|
Chris@127
|
453 void showLayer(View *, bool show);
|
Chris@127
|
454
|
Chris@127
|
455 signals:
|
Chris@127
|
456 void modelChanged();
|
Chris@127
|
457 void modelCompletionChanged();
|
Chris@320
|
458 void modelAlignmentCompletionChanged();
|
Chris@127
|
459 void modelChanged(size_t startFrame, size_t endFrame);
|
Chris@127
|
460 void modelReplaced();
|
Chris@127
|
461
|
Chris@127
|
462 void layerParametersChanged();
|
Chris@197
|
463 void layerParameterRangesChanged();
|
Chris@268
|
464 void layerMeasurementRectsChanged();
|
Chris@127
|
465 void layerNameChanged();
|
Chris@127
|
466
|
Chris@133
|
467 void verticalZoomChanged();
|
Chris@133
|
468
|
Chris@267
|
469 protected:
|
Chris@320
|
470 void connectSignals(const Model *);
|
Chris@320
|
471
|
Chris@359
|
472 virtual size_t alignToReference(View *v, size_t frame) const;
|
Chris@359
|
473 virtual size_t alignFromReference(View *v, size_t frame) const;
|
Chris@360
|
474 bool clipboardHasDifferentAlignment(View *v, const Clipboard &clip) const;
|
Chris@359
|
475
|
Chris@267
|
476 struct MeasureRect {
|
Chris@268
|
477
|
Chris@267
|
478 mutable QRect pixrect;
|
Chris@268
|
479 bool haveFrames;
|
Chris@268
|
480 long startFrame; // only valid if haveFrames
|
Chris@267
|
481 long endFrame; // ditto
|
Chris@273
|
482 double startY;
|
Chris@273
|
483 double endY;
|
Chris@268
|
484
|
Chris@268
|
485 bool operator<(const MeasureRect &mr) const;
|
Chris@316
|
486 void toXml(QTextStream &stream, QString indent) const;
|
Chris@267
|
487 };
|
Chris@267
|
488
|
Chris@268
|
489 class AddMeasurementRectCommand : public Command
|
Chris@268
|
490 {
|
Chris@268
|
491 public:
|
Chris@268
|
492 AddMeasurementRectCommand(Layer *layer, MeasureRect rect) :
|
Chris@268
|
493 m_layer(layer), m_rect(rect) { }
|
Chris@268
|
494
|
Chris@268
|
495 virtual QString getName() const;
|
Chris@268
|
496 virtual void execute();
|
Chris@268
|
497 virtual void unexecute();
|
Chris@268
|
498
|
Chris@268
|
499 private:
|
Chris@268
|
500 Layer *m_layer;
|
Chris@268
|
501 MeasureRect m_rect;
|
Chris@268
|
502 };
|
Chris@268
|
503
|
Chris@283
|
504 class DeleteMeasurementRectCommand : public Command
|
Chris@283
|
505 {
|
Chris@283
|
506 public:
|
Chris@283
|
507 DeleteMeasurementRectCommand(Layer *layer, MeasureRect rect) :
|
Chris@283
|
508 m_layer(layer), m_rect(rect) { }
|
Chris@283
|
509
|
Chris@283
|
510 virtual QString getName() const;
|
Chris@283
|
511 virtual void execute();
|
Chris@283
|
512 virtual void unexecute();
|
Chris@283
|
513
|
Chris@283
|
514 private:
|
Chris@283
|
515 Layer *m_layer;
|
Chris@283
|
516 MeasureRect m_rect;
|
Chris@283
|
517 };
|
Chris@283
|
518
|
Chris@269
|
519 void addMeasureRectToSet(const MeasureRect &r) {
|
Chris@268
|
520 m_measureRects.insert(r);
|
Chris@268
|
521 emit layerMeasurementRectsChanged();
|
Chris@268
|
522 }
|
Chris@268
|
523
|
Chris@269
|
524 void deleteMeasureRectFromSet(const MeasureRect &r) {
|
Chris@268
|
525 m_measureRects.erase(r);
|
Chris@268
|
526 emit layerMeasurementRectsChanged();
|
Chris@268
|
527 }
|
Chris@268
|
528
|
Chris@268
|
529 typedef std::set<MeasureRect> MeasureRectSet;
|
Chris@268
|
530 MeasureRectSet m_measureRects;
|
Chris@267
|
531 MeasureRect m_draggingRect;
|
Chris@267
|
532 bool m_haveDraggingRect;
|
Chris@283
|
533 mutable bool m_haveCurrentMeasureRect;
|
Chris@283
|
534 mutable QPoint m_currentMeasureRectPoint;
|
Chris@272
|
535
|
Chris@272
|
536 // Note that pixrects are only correct for a single view.
|
Chris@272
|
537 // So we should update them at the start of the paint procedure
|
Chris@272
|
538 // (painting is single threaded) and only use them after that.
|
Chris@273
|
539 void updateMeasurePixrects(View *v) const;
|
Chris@273
|
540
|
Chris@273
|
541 virtual void updateMeasureRectYCoords(View *v, const MeasureRect &r) const;
|
Chris@273
|
542 virtual void setMeasureRectYCoord(View *v, MeasureRect &r, bool start, int y) const;
|
Chris@283
|
543 virtual void setMeasureRectFromPixrect(View *v, MeasureRect &r, QRect pixrect) const;
|
Chris@272
|
544
|
Chris@272
|
545 // This assumes updateMeasurementPixrects has been called
|
Chris@272
|
546 MeasureRectSet::const_iterator findFocusedMeasureRect(QPoint) const;
|
Chris@267
|
547
|
Chris@269
|
548 void paintMeasurementRect(View *v, QPainter &paint,
|
Chris@270
|
549 const MeasureRect &r, bool focus) const;
|
Chris@268
|
550
|
Chris@363
|
551 QString m_presentationName;
|
Chris@363
|
552
|
Chris@131
|
553 private:
|
Chris@131
|
554 mutable QMutex m_dormancyMutex;
|
Chris@127
|
555 mutable std::map<const void *, bool> m_dormancy;
|
Chris@127
|
556 };
|
Chris@127
|
557
|
Chris@127
|
558 #endif
|
Chris@127
|
559
|