annotate view/Overview.h @ 271:1a49bd0d8375

* Change a number of keyboard shortcuts -- get rid of all the Alt+ shortcuts and introduce a few more Ctrl+ ones instead, as well as a number of plain single keypresses * Add Playback menu * Add time-ruler support for snap to feature, use it in ffwd/rewind (rewind still needs fixing) * restore layer hierarchy window prior to making it work correctly
author Chris Cannam
date Thu, 28 Jun 2007 14:50:58 +0000
parents cd81066ac7ad
children b9380f679f70
rev   line source
Chris@173 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@173 2
Chris@173 3 /*
Chris@173 4 Sonic Visualiser
Chris@173 5 An audio file viewer and annotation editor.
Chris@173 6 Centre for Digital Music, Queen Mary, University of London.
Chris@182 7 This file copyright 2006 Chris Cannam and QMUL.
Chris@173 8
Chris@173 9 This program is free software; you can redistribute it and/or
Chris@173 10 modify it under the terms of the GNU General Public License as
Chris@173 11 published by the Free Software Foundation; either version 2 of the
Chris@173 12 License, or (at your option) any later version. See the file
Chris@173 13 COPYING included with this distribution for more information.
Chris@173 14 */
Chris@173 15
Chris@173 16 #ifndef _OVERVIEW_H_
Chris@173 17 #define _OVERVIEW_H_
Chris@173 18
Chris@173 19 #include "View.h"
Chris@173 20
Chris@173 21 #include <QPoint>
Chris@173 22
Chris@173 23 class QWidget;
Chris@173 24 class QPaintEvent;
Chris@173 25 class Layer;
Chris@173 26 class View;
Chris@173 27
Chris@173 28 #include <map>
Chris@173 29
Chris@173 30 class Overview : public View
Chris@173 31 {
Chris@173 32 Q_OBJECT
Chris@173 33
Chris@173 34 public:
Chris@173 35 Overview(QWidget *parent = 0);
Chris@173 36
Chris@211 37 void registerView(View *view);
Chris@211 38 void unregisterView(View *view);
Chris@173 39
Chris@173 40 virtual QString getPropertyContainerIconName() const { return "panner"; }
Chris@173 41
Chris@173 42 public slots:
Chris@173 43 virtual void modelChanged(size_t startFrame, size_t endFrame);
Chris@173 44 virtual void modelReplaced();
Chris@173 45
Chris@211 46 virtual void globalCentreFrameChanged(unsigned long);
Chris@211 47 virtual void viewCentreFrameChanged(View *, unsigned long);
Chris@222 48 virtual void viewZoomLevelChanged(View *, unsigned long, bool);
Chris@173 49 virtual void viewManagerPlaybackFrameChanged(unsigned long);
Chris@173 50
Chris@173 51 protected:
Chris@173 52 virtual void paintEvent(QPaintEvent *e);
Chris@173 53 virtual void mousePressEvent(QMouseEvent *e);
Chris@173 54 virtual void mouseReleaseEvent(QMouseEvent *e);
Chris@173 55 virtual void mouseMoveEvent(QMouseEvent *e);
Chris@189 56 virtual void mouseDoubleClickEvent(QMouseEvent *e);
Chris@189 57 virtual void enterEvent(QEvent *);
Chris@189 58 virtual void leaveEvent(QEvent *);
Chris@173 59 virtual bool shouldLabelSelections() const { return false; }
Chris@173 60
Chris@173 61 QPoint m_clickPos;
Chris@173 62 QPoint m_mousePos;
Chris@173 63 bool m_clickedInRange;
Chris@173 64 size_t m_dragCentreFrame;
Chris@173 65
Chris@211 66 typedef std::set<View *> ViewSet;
Chris@211 67 ViewSet m_views;
Chris@173 68 };
Chris@173 69
Chris@173 70 #endif
Chris@173 71