Mercurial > hg > svgui
view widgets/Panner.h @ 25:dcdb21b62dbb
* Refactor sparse models. Previously the 1D and time-value models duplicated
a lot of code; now there is a base class (SparseModel) templated on the
stored point type, and the subclasses define point types with the necessary
characteristics.
* Add NoteModel, a new SparseModel subclass.
* Reorganise local feature description display. Instead of asking the layer
to draw its own, just query it for a textual description and draw that in
Pane. Greatly simplifies this part of the layer code.
* Add local feature descriptions to colour 3D plot and waveform layers.
* Add pitch in MIDI-pitch-and-cents to spectrogram layer.
* Give AudioGenerator its own mutex to shorten lock times in CallbackPlaySource.
* Minor adjustments to layers menu &c
author | Chris Cannam |
---|---|
date | Thu, 02 Feb 2006 16:10:19 +0000 |
parents | 4d5d9aba406b |
children | 38fe0ea9e46e |
line wrap: on
line source
/* -*- c-basic-offset: 4 -*- vi:set ts=8 sts=4 sw=4: */ /* A waveform viewer and audio annotation editor. Chris Cannam, Queen Mary University of London, 2005-2006 This is experimental software. Not for distribution. */ #ifndef _PAN_WIDGET_H_ #define _PAN_WIDGET_H_ #include "base/View.h" #include <QPoint> class QWidget; class QPaintEvent; class Layer; class View; #include <map> class Panner : public View { Q_OBJECT public: Panner(QWidget *parent = 0); void registerView(View *widget); void unregisterView(View *widget); virtual QString getPropertyContainerIconName() const { return "panner"; } public slots: virtual void modelChanged(size_t startFrame, size_t endFrame); virtual void modelReplaced(); virtual void viewManagerCentreFrameChanged(void *, unsigned long, bool); virtual void viewManagerZoomLevelChanged(void *, unsigned long, bool); virtual void viewManagerPlaybackFrameChanged(unsigned long); protected: virtual void paintEvent(QPaintEvent *e); virtual void mousePressEvent(QMouseEvent *e); virtual void mouseReleaseEvent(QMouseEvent *e); virtual void mouseMoveEvent(QMouseEvent *e); virtual bool shouldLabelSelections() const { return false; } QPoint m_clickPos; QPoint m_mousePos; bool m_clickedInRange; size_t m_dragCentreFrame; typedef std::pair<size_t, int> WidgetRec; // centre, zoom (-1 = invalid) typedef std::map<void *, WidgetRec> WidgetMap; WidgetMap m_widgets; }; #endif