annotate view/Pane.h @ 276:21c7152ddba8

* attempt to ensure zoom-to-fit actually makes things fit (not obscured by the scale) -- not working * attempt to add vertical scrollbar optionally in main window -- not working -- no time to fix now
author Chris Cannam
date Mon, 02 Jul 2007 14:58:34 +0000
parents 4ed1446ad604
children 8acd30ed735c
rev   line source
Chris@127 1
Chris@127 2 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@127 3
Chris@127 4 /*
Chris@127 5 Sonic Visualiser
Chris@127 6 An audio file viewer and annotation editor.
Chris@127 7 Centre for Digital Music, Queen Mary, University of London.
Chris@182 8 This file copyright 2006 Chris Cannam and QMUL.
Chris@127 9
Chris@127 10 This program is free software; you can redistribute it and/or
Chris@127 11 modify it under the terms of the GNU General Public License as
Chris@127 12 published by the Free Software Foundation; either version 2 of the
Chris@127 13 License, or (at your option) any later version. See the file
Chris@127 14 COPYING included with this distribution for more information.
Chris@127 15 */
Chris@127 16
Chris@127 17 #ifndef _PANE_H_
Chris@127 18 #define _PANE_H_
Chris@127 19
Chris@127 20 #include <QFrame>
Chris@127 21 #include <QPoint>
Chris@127 22
Chris@127 23 #include "base/ZoomConstraint.h"
Chris@128 24 #include "View.h"
Chris@127 25 #include "base/Selection.h"
Chris@127 26
Chris@127 27 class QWidget;
Chris@127 28 class QPaintEvent;
Chris@127 29 class Layer;
Chris@133 30 class Thumbwheel;
Chris@172 31 class Panner;
Chris@189 32 class NotifyingPushButton;
Chris@127 33
Chris@127 34 class Pane : public View
Chris@127 35 {
Chris@127 36 Q_OBJECT
Chris@127 37
Chris@127 38 public:
Chris@127 39 Pane(QWidget *parent = 0);
Chris@127 40 virtual QString getPropertyContainerIconName() const { return "pane"; }
Chris@127 41
Chris@127 42 virtual bool shouldIlluminateLocalFeatures(const Layer *layer,
Chris@127 43 QPoint &pos) const;
Chris@127 44 virtual bool shouldIlluminateLocalSelection(QPoint &pos,
Chris@127 45 bool &closeToLeft,
Chris@127 46 bool &closeToRight) const;
Chris@127 47
Chris@127 48 void setCentreLineVisible(bool visible);
Chris@127 49 bool getCentreLineVisible() const { return m_centreLineVisible; }
Chris@127 50
Chris@222 51 virtual size_t getFirstVisibleFrame() const;
Chris@222 52
Chris@276 53 virtual size_t getVerticalScaleWidth() const;
Chris@276 54
Chris@229 55 virtual QImage *toNewImage(size_t f0, size_t f1);
Chris@229 56 virtual QImage *toNewImage() { return View::toNewImage(); }
Chris@229 57 virtual QSize getImageSize(size_t f0, size_t f1);
Chris@229 58 virtual QSize getImageSize() { return View::getImageSize(); }
Chris@227 59
Chris@127 60 virtual QString toXmlString(QString indent = "",
Chris@127 61 QString extraAttributes = "") const;
Chris@127 62
Chris@127 63 signals:
Chris@127 64 void paneInteractedWith();
Chris@127 65 void rightButtonMenuRequested(QPoint position);
Chris@127 66
Chris@127 67 public slots:
Chris@127 68 virtual void toolModeChanged();
Chris@133 69 virtual void zoomWheelsEnabledChanged();
Chris@222 70 virtual void viewZoomLevelChanged(View *v, unsigned long z, bool locked);
Chris@127 71
Chris@132 72 virtual void horizontalThumbwheelMoved(int value);
Chris@132 73 virtual void verticalThumbwheelMoved(int value);
Chris@133 74 virtual void verticalZoomChanged();
Chris@174 75 virtual void verticalPannerMoved(float x, float y, float w, float h);
Chris@188 76 virtual void editVerticalPannerExtents();
Chris@133 77
Chris@133 78 virtual void propertyContainerSelected(View *, PropertyContainer *pc);
Chris@132 79
Chris@189 80 void mouseEnteredWidget();
Chris@189 81 void mouseLeftWidget();
Chris@189 82
Chris@127 83 protected:
Chris@127 84 virtual void paintEvent(QPaintEvent *e);
Chris@127 85 virtual void mousePressEvent(QMouseEvent *e);
Chris@127 86 virtual void mouseReleaseEvent(QMouseEvent *e);
Chris@127 87 virtual void mouseMoveEvent(QMouseEvent *e);
Chris@127 88 virtual void mouseDoubleClickEvent(QMouseEvent *e);
Chris@127 89 virtual void leaveEvent(QEvent *e);
Chris@127 90 virtual void wheelEvent(QWheelEvent *e);
Chris@133 91 virtual void resizeEvent(QResizeEvent *e);
Chris@127 92
Chris@261 93 void drawVerticalScale(QRect r, Layer *, QPainter &);
Chris@261 94 void drawFeatureDescription(Layer *, QPainter &);
Chris@261 95 void drawCentreLine(int, QPainter &);
Chris@261 96 void drawDurationAndRate(QRect, const Model *, int, QPainter &);
Chris@261 97 void drawLayerNames(QRect, QPainter &);
Chris@261 98 void drawEditingSelection(QPainter &);
Chris@261 99
Chris@229 100 virtual bool render(QPainter &paint, int x0, size_t f0, size_t f1);
Chris@229 101
Chris@127 102 Selection getSelectionAt(int x, bool &closeToLeft, bool &closeToRight) const;
Chris@127 103
Chris@127 104 bool editSelectionStart(QMouseEvent *e);
Chris@127 105 bool editSelectionDrag(QMouseEvent *e);
Chris@127 106 bool editSelectionEnd(QMouseEvent *e);
Chris@127 107 bool selectionIsBeingEdited() const;
Chris@127 108
Chris@133 109 void updateHeadsUpDisplay();
Chris@174 110 void updateVerticalPanner();
Chris@174 111
Chris@174 112 bool canTopLayerMoveVertical();
Chris@174 113 bool getTopLayerDisplayExtents(float &valueMin, float &valueMax,
Chris@188 114 float &displayMin, float &displayMax,
Chris@188 115 QString *unit = 0);
Chris@174 116 bool setTopLayerDisplayExtents(float displayMin, float displayMax);
Chris@174 117
Chris@174 118 void dragTopLayer(QMouseEvent *e);
Chris@174 119 void dragExtendSelection(QMouseEvent *e);
Chris@174 120 void zoomToRegion(int x0, int y0, int x1, int y1);
Chris@189 121 void updateContextHelp(const QPoint *pos);
Chris@259 122 void edgeScrollMaybe(int x);
Chris@133 123
Chris@127 124 bool m_identifyFeatures;
Chris@127 125 QPoint m_identifyPoint;
Chris@127 126 QPoint m_clickPos;
Chris@127 127 QPoint m_mousePos;
Chris@127 128 bool m_clickedInRange;
Chris@127 129 bool m_shiftPressed;
Chris@127 130 bool m_ctrlPressed;
Chris@266 131
Chris@127 132 bool m_navigating;
Chris@127 133 bool m_resizing;
Chris@127 134 size_t m_dragCentreFrame;
Chris@136 135 float m_dragStartMinValue;
Chris@127 136 bool m_centreLineVisible;
Chris@127 137 size_t m_selectionStartFrame;
Chris@127 138 Selection m_editingSelection;
Chris@127 139 int m_editingSelectionEdge;
Chris@222 140 mutable int m_scaleWidth;
Chris@133 141
Chris@150 142 enum DragMode {
Chris@150 143 UnresolvedDrag,
Chris@150 144 VerticalDrag,
Chris@150 145 HorizontalDrag,
Chris@150 146 FreeDrag
Chris@150 147 };
Chris@150 148 DragMode m_dragMode;
Chris@150 149
Chris@133 150 QWidget *m_headsUpDisplay;
Chris@172 151 Panner *m_vpan;
Chris@133 152 Thumbwheel *m_hthumb;
Chris@133 153 Thumbwheel *m_vthumb;
Chris@189 154 NotifyingPushButton *m_reset;
Chris@262 155
Chris@267 156 static QCursor *m_measureCursor1;
Chris@267 157 static QCursor *m_measureCursor2;
Chris@127 158 };
Chris@127 159
Chris@127 160 #endif
Chris@127 161