comparison view/Overview.h @ 274:b9380f679f70

* Fix centre line position * Fix failure to update overview when generating peaks from wav file * Provide y-coordinate scale values and differences for spectrum measurement mode, and fix values for waveform (inc dB for both) * Add Printer colour scheme (may be futile)
author Chris Cannam
date Mon, 02 Jul 2007 13:04:17 +0000
parents cd81066ac7ad
children 4c8ca536b54f
comparison
equal deleted inserted replaced
273:e954c00cbe55 274:b9380f679f70
17 #define _OVERVIEW_H_ 17 #define _OVERVIEW_H_
18 18
19 #include "View.h" 19 #include "View.h"
20 20
21 #include <QPoint> 21 #include <QPoint>
22 #include <QTime>
22 23
23 class QWidget; 24 class QWidget;
24 class QPaintEvent; 25 class QPaintEvent;
25 class Layer; 26 class Layer;
26 class View; 27 class View;
60 61
61 QPoint m_clickPos; 62 QPoint m_clickPos;
62 QPoint m_mousePos; 63 QPoint m_mousePos;
63 bool m_clickedInRange; 64 bool m_clickedInRange;
64 size_t m_dragCentreFrame; 65 size_t m_dragCentreFrame;
66 QTime m_modelTestTime;
65 67
66 typedef std::set<View *> ViewSet; 68 typedef std::set<View *> ViewSet;
67 ViewSet m_views; 69 ViewSet m_views;
68 }; 70 };
69 71