annotate view/Pane.h @ 592:a13aa5320221 sonification

Extends the audio feedback of the piano scale to the Spectrum layer (horizontal piano keyboard). Increase of the piano keyboard width (SpectrogramLayer) and height (SpectrumLayer) for layout purposes. A get method should be added to obtain the scale size parameter outside the layer class.
author mathieub <mathieu.barthet@eecs.qmul.ac.uk>
date Wed, 06 Jul 2011 18:05:42 +0100
parents 683c46d7500b
children
rev   line source
Chris@127 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@127 2
Chris@127 3 /*
Chris@127 4 Sonic Visualiser
Chris@127 5 An audio file viewer and annotation editor.
Chris@127 6 Centre for Digital Music, Queen Mary, University of London.
Chris@182 7 This file copyright 2006 Chris Cannam and QMUL.
Chris@127 8
Chris@127 9 This program is free software; you can redistribute it and/or
Chris@127 10 modify it under the terms of the GNU General Public License as
Chris@127 11 published by the Free Software Foundation; either version 2 of the
Chris@127 12 License, or (at your option) any later version. See the file
Chris@127 13 COPYING included with this distribution for more information.
Chris@127 14 */
Chris@127 15
Chris@127 16 #ifndef _PANE_H_
Chris@127 17 #define _PANE_H_
Chris@127 18
Chris@127 19 #include <QFrame>
Chris@127 20 #include <QPoint>
Chris@127 21
Chris@127 22 #include "base/ZoomConstraint.h"
Chris@128 23 #include "View.h"
Chris@127 24 #include "base/Selection.h"
Chris@127 25
Chris@127 26 class QWidget;
Chris@127 27 class QPaintEvent;
Chris@127 28 class Layer;
Chris@133 29 class Thumbwheel;
Chris@172 30 class Panner;
Chris@189 31 class NotifyingPushButton;
Chris@282 32 class KeyReference;
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
mathieu@592 55 //virtual size_t getHorizontalScaleHeight() const;
mathieu@592 56
Chris@229 57 virtual QImage *toNewImage(size_t f0, size_t f1);
Chris@229 58 virtual QImage *toNewImage() { return View::toNewImage(); }
Chris@229 59 virtual QSize getImageSize(size_t f0, size_t f1);
Chris@229 60 virtual QSize getImageSize() { return View::getImageSize(); }
Chris@227 61
Chris@316 62 virtual void toXml(QTextStream &stream, QString indent = "",
Chris@316 63 QString extraAttributes = "") const;
Chris@127 64
Chris@282 65 static void registerShortcuts(KeyReference &kr);
Chris@282 66
Chris@127 67 signals:
Chris@127 68 void paneInteractedWith();
Chris@127 69 void rightButtonMenuRequested(QPoint position);
Chris@312 70 void dropAccepted(QStringList uriList);
Chris@312 71 void dropAccepted(QString text);
Chris@127 72
Chris@127 73 public slots:
Chris@127 74 virtual void toolModeChanged();
Chris@133 75 virtual void zoomWheelsEnabledChanged();
Chris@222 76 virtual void viewZoomLevelChanged(View *v, unsigned long z, bool locked);
Chris@320 77 virtual void modelAlignmentCompletionChanged();
Chris@127 78
Chris@132 79 virtual void horizontalThumbwheelMoved(int value);
Chris@132 80 virtual void verticalThumbwheelMoved(int value);
Chris@133 81 virtual void verticalZoomChanged();
Chris@174 82 virtual void verticalPannerMoved(float x, float y, float w, float h);
Chris@188 83 virtual void editVerticalPannerExtents();
Chris@133 84
Chris@437 85 virtual void layerParametersChanged();
Chris@437 86
Chris@133 87 virtual void propertyContainerSelected(View *, PropertyContainer *pc);
Chris@132 88
Chris@189 89 void mouseEnteredWidget();
Chris@189 90 void mouseLeftWidget();
Chris@189 91
Chris@127 92 protected:
Chris@127 93 virtual void paintEvent(QPaintEvent *e);
Chris@127 94 virtual void mousePressEvent(QMouseEvent *e);
Chris@127 95 virtual void mouseReleaseEvent(QMouseEvent *e);
Chris@127 96 virtual void mouseMoveEvent(QMouseEvent *e);
Chris@127 97 virtual void mouseDoubleClickEvent(QMouseEvent *e);
Chris@290 98 virtual void enterEvent(QEvent *e);
Chris@127 99 virtual void leaveEvent(QEvent *e);
Chris@127 100 virtual void wheelEvent(QWheelEvent *e);
Chris@133 101 virtual void resizeEvent(QResizeEvent *e);
Chris@312 102 virtual void dragEnterEvent(QDragEnterEvent *e);
Chris@312 103 virtual void dropEvent(QDropEvent *e);
Chris@127 104
Chris@261 105 void drawVerticalScale(QRect r, Layer *, QPainter &);
Chris@261 106 void drawFeatureDescription(Layer *, QPainter &);
Chris@277 107 void drawCentreLine(int, QPainter &, bool omitLine);
Chris@261 108 void drawDurationAndRate(QRect, const Model *, int, QPainter &);
Chris@326 109 void drawWorkTitle(QRect, QPainter &, const Model *);
Chris@261 110 void drawLayerNames(QRect, QPainter &);
Chris@261 111 void drawEditingSelection(QPainter &);
Chris@326 112 void drawAlignmentStatus(QRect, QPainter &, const Model *, bool down);
Chris@261 113
Chris@229 114 virtual bool render(QPainter &paint, int x0, size_t f0, size_t f1);
Chris@229 115
Chris@127 116 Selection getSelectionAt(int x, bool &closeToLeft, bool &closeToRight) const;
Chris@127 117
Chris@127 118 bool editSelectionStart(QMouseEvent *e);
Chris@127 119 bool editSelectionDrag(QMouseEvent *e);
Chris@127 120 bool editSelectionEnd(QMouseEvent *e);
Chris@127 121 bool selectionIsBeingEdited() const;
Chris@127 122
Chris@133 123 void updateHeadsUpDisplay();
Chris@174 124 void updateVerticalPanner();
Chris@174 125
Chris@174 126 bool canTopLayerMoveVertical();
Chris@174 127 bool getTopLayerDisplayExtents(float &valueMin, float &valueMax,
Chris@188 128 float &displayMin, float &displayMax,
Chris@188 129 QString *unit = 0);
Chris@174 130 bool setTopLayerDisplayExtents(float displayMin, float displayMax);
Chris@174 131
Chris@174 132 void dragTopLayer(QMouseEvent *e);
Chris@174 133 void dragExtendSelection(QMouseEvent *e);
Chris@174 134 void zoomToRegion(int x0, int y0, int x1, int y1);
Chris@189 135 void updateContextHelp(const QPoint *pos);
Chris@259 136 void edgeScrollMaybe(int x);
Chris@133 137
Chris@127 138 bool m_identifyFeatures;
Chris@127 139 QPoint m_identifyPoint;
Chris@127 140 QPoint m_clickPos;
Chris@127 141 QPoint m_mousePos;
Chris@127 142 bool m_clickedInRange;
Chris@127 143 bool m_shiftPressed;
Chris@127 144 bool m_ctrlPressed;
Chris@510 145 bool m_altPressed;
Chris@266 146
Chris@127 147 bool m_navigating;
Chris@127 148 bool m_resizing;
Chris@343 149 bool m_editing;
Chris@343 150 bool m_releasing;
Chris@127 151 size_t m_dragCentreFrame;
Chris@136 152 float m_dragStartMinValue;
Chris@127 153 bool m_centreLineVisible;
Chris@127 154 size_t m_selectionStartFrame;
Chris@127 155 Selection m_editingSelection;
Chris@127 156 int m_editingSelectionEdge;
Chris@222 157 mutable int m_scaleWidth;
Chris@133 158
Chris@150 159 enum DragMode {
Chris@150 160 UnresolvedDrag,
Chris@150 161 VerticalDrag,
Chris@150 162 HorizontalDrag,
Chris@150 163 FreeDrag
Chris@150 164 };
Chris@150 165 DragMode m_dragMode;
Chris@150 166
Chris@343 167 DragMode updateDragMode(DragMode currentMode,
Chris@343 168 QPoint origin,
Chris@343 169 QPoint currentPoint,
Chris@343 170 bool canMoveHorizontal,
Chris@343 171 bool canMoveVertical,
Chris@343 172 bool resistHorizontal,
Chris@343 173 bool resistVertical);
Chris@343 174
Chris@133 175 QWidget *m_headsUpDisplay;
Chris@172 176 Panner *m_vpan;
Chris@133 177 Thumbwheel *m_hthumb;
Chris@133 178 Thumbwheel *m_vthumb;
Chris@189 179 NotifyingPushButton *m_reset;
Chris@262 180
Chris@290 181 bool m_mouseInWidget;
Chris@290 182
Chris@267 183 static QCursor *m_measureCursor1;
Chris@267 184 static QCursor *m_measureCursor2;
Chris@127 185 };
Chris@127 186
Chris@127 187 #endif
Chris@127 188