Mercurial > hg > svgui
view widgets/Panner.h @ 15:4d5d9aba406b
* Fix update and play limits for play-selection mode when not looping
* Fix playback in loop mode when no selection -- but the GUI update for
this is still wrong on the flyback
* Various fixes and improvements to making selections, particularly during
playback
* Draw selection under non-opaque non-scrollable layers, so as to improve
cacheing
* Show selection limits as text when drawing selection
* Allow user to find missing audio files when loading session
* Cross-fade selections when in play-selection mode -- mostly. We don't
cross-fade on a processing block boundary, and unfortunately with short
selections the selection boundary is quite likely to coincide with a block
boundary.
author | Chris Cannam |
---|---|
date | Wed, 25 Jan 2006 17:46:28 +0000 |
parents | 37b110168acf |
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