annotate layer/TextLayer.h @ 312:6de6f78b13a1

* Make it possible to drop audio files, layer files, session files and images onto SV panes. Need to do a bit more work on where we expect the dropped file to go, particularly in the case of audio files -- at the moment they're always opened in new panes, but it may be better to by default replace whatever is in the target pane.
author Chris Cannam
date Wed, 10 Oct 2007 15:18:02 +0000
parents cd2492c5fe45
children c0b9eec70639
rev   line source
Chris@58 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@35 2
Chris@35 3 /*
Chris@59 4 Sonic Visualiser
Chris@59 5 An audio file viewer and annotation editor.
Chris@59 6 Centre for Digital Music, Queen Mary, University of London.
Chris@59 7 This file copyright 2006 Chris Cannam.
Chris@35 8
Chris@59 9 This program is free software; you can redistribute it and/or
Chris@59 10 modify it under the terms of the GNU General Public License as
Chris@59 11 published by the Free Software Foundation; either version 2 of the
Chris@59 12 License, or (at your option) any later version. See the file
Chris@59 13 COPYING included with this distribution for more information.
Chris@35 14 */
Chris@35 15
Chris@35 16 #ifndef _TEXT_LAYER_H_
Chris@35 17 #define _TEXT_LAYER_H_
Chris@35 18
Chris@287 19 #include "SingleColourLayer.h"
Chris@128 20 #include "data/model/TextModel.h"
Chris@35 21
Chris@35 22 #include <QObject>
Chris@35 23 #include <QColor>
Chris@35 24
Chris@35 25 class View;
Chris@35 26 class QPainter;
Chris@35 27
Chris@287 28 class TextLayer : public SingleColourLayer
Chris@35 29 {
Chris@35 30 Q_OBJECT
Chris@35 31
Chris@35 32 public:
Chris@44 33 TextLayer();
Chris@35 34
Chris@44 35 virtual void paint(View *v, QPainter &paint, QRect rect) const;
Chris@35 36
Chris@44 37 virtual QString getFeatureDescription(View *v, QPoint &) const;
Chris@35 38
Chris@44 39 virtual bool snapToFeatureFrame(View *v, int &frame,
Chris@35 40 size_t &resolution,
Chris@35 41 SnapType snap) const;
Chris@35 42
Chris@44 43 virtual void drawStart(View *v, QMouseEvent *);
Chris@44 44 virtual void drawDrag(View *v, QMouseEvent *);
Chris@44 45 virtual void drawEnd(View *v, QMouseEvent *);
Chris@35 46
Chris@44 47 virtual void editStart(View *v, QMouseEvent *);
Chris@44 48 virtual void editDrag(View *v, QMouseEvent *);
Chris@44 49 virtual void editEnd(View *v, QMouseEvent *);
Chris@35 50
Chris@43 51 virtual void moveSelection(Selection s, size_t newStartFrame);
Chris@43 52 virtual void resizeSelection(Selection s, Selection newSize);
Chris@76 53 virtual void deleteSelection(Selection s);
Chris@76 54
Chris@76 55 virtual void copy(Selection s, Clipboard &to);
Chris@125 56 virtual bool paste(const Clipboard &from, int frameOffset,
Chris@125 57 bool interactive);
Chris@43 58
Chris@255 59 virtual bool editOpen(View *, QMouseEvent *); // on double-click
Chris@36 60
Chris@35 61 virtual const Model *getModel() const { return m_model; }
Chris@35 62 void setModel(TextModel *model);
Chris@35 63
Chris@35 64 virtual PropertyList getProperties() const;
Chris@87 65 virtual QString getPropertyLabel(const PropertyName &) const;
Chris@35 66 virtual PropertyType getPropertyType(const PropertyName &) const;
Chris@35 67 virtual int getPropertyRangeAndValue(const PropertyName &,
Chris@216 68 int *min, int *max, int *deflt) const;
Chris@35 69 virtual QString getPropertyValueLabel(const PropertyName &,
Chris@35 70 int value) const;
Chris@35 71 virtual void setProperty(const PropertyName &, int value);
Chris@35 72
Chris@44 73 virtual bool isLayerScrollable(const View *v) const;
Chris@35 74
Chris@35 75 virtual bool isLayerEditable() const { return true; }
Chris@35 76
Chris@115 77 virtual int getCompletion(View *) const { return m_model->getCompletion(); }
Chris@35 78
Chris@101 79 virtual bool getValueExtents(float &min, float &max,
Chris@101 80 bool &logarithmic, QString &unit) const;
Chris@79 81
Chris@35 82 virtual QString toXmlString(QString indent = "",
Chris@35 83 QString extraAttributes = "") const;
Chris@35 84
Chris@35 85 void setProperties(const QXmlAttributes &attributes);
Chris@35 86
Chris@35 87 protected:
Chris@44 88 int getYForHeight(View *v, float height) const;
Chris@44 89 float getHeightForY(View *v, int y) const;
Chris@35 90
Chris@287 91 virtual int getDefaultColourHint(bool dark, bool &impose);
Chris@287 92
Chris@44 93 TextModel::PointList getLocalPoints(View *v, int x, int y) const;
Chris@35 94
Chris@35 95 TextModel *m_model;
Chris@35 96 bool m_editing;
Chris@36 97 QPoint m_editOrigin;
Chris@35 98 TextModel::Point m_originalPoint;
Chris@35 99 TextModel::Point m_editingPoint;
Chris@35 100 TextModel::EditCommand *m_editingCommand;
Chris@35 101 };
Chris@35 102
Chris@35 103 #endif
Chris@35 104