annotate layer/TimeRulerLayer.h @ 299:5c59c433b358

* Show colour swatch next to layer name in pane (if available) * Fix for incorrect layer name prefix handling (was making some layers appear to have the same model name in cases where the model names differed by the final character only)
author Chris Cannam
date Wed, 05 Sep 2007 15:17:15 +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@0 2
Chris@0 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@0 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@0 14 */
Chris@0 15
Chris@0 16 #ifndef _TIME_RULER_H_
Chris@0 17 #define _TIME_RULER_H_
Chris@0 18
Chris@287 19 #include "SingleColourLayer.h"
Chris@0 20
Chris@0 21 #include <QRect>
Chris@0 22 #include <QColor>
Chris@0 23
Chris@0 24 class View;
Chris@0 25 class Model;
Chris@0 26 class QPainter;
Chris@0 27
Chris@287 28 class TimeRulerLayer : public SingleColourLayer
Chris@0 29 {
Chris@0 30 Q_OBJECT
Chris@0 31
Chris@0 32 public:
Chris@44 33 TimeRulerLayer();
Chris@0 34
Chris@44 35 virtual void paint(View *v, QPainter &paint, QRect rect) const;
Chris@0 36
Chris@0 37 void setModel(Model *);
Chris@0 38 virtual const Model *getModel() const { return m_model; }
Chris@0 39
Chris@0 40 enum LabelHeight { LabelTop, LabelMiddle, LabelBottom };
Chris@0 41 void setLabelHeight(LabelHeight h) { m_labelHeight = h; }
Chris@0 42 LabelHeight getLabelHeight() const { return m_labelHeight; }
Chris@0 43
Chris@271 44 virtual bool snapToFeatureFrame(View *, int &, size_t &, SnapType) const;
Chris@271 45
Chris@287 46 virtual ColourSignificance getLayerColourSignificance() const {
Chris@287 47 return ColourIrrelevant;
Chris@287 48 }
Chris@0 49
Chris@125 50 virtual bool getValueExtents(float &, float &, bool &, QString &) const {
Chris@79 51 return false;
Chris@79 52 }
Chris@79 53
Chris@6 54 virtual QString toXmlString(QString indent = "",
Chris@6 55 QString extraAttributes = "") const;
Chris@6 56
Chris@11 57 void setProperties(const QXmlAttributes &attributes);
Chris@11 58
Chris@0 59 protected:
Chris@0 60 Model *m_model;
Chris@0 61 LabelHeight m_labelHeight;
Chris@271 62
Chris@287 63 virtual int getDefaultColourHint(bool dark, bool &impose);
Chris@287 64
Chris@271 65 int getMajorTickSpacing(View *, bool &quarterTicks) const;
Chris@0 66 };
Chris@0 67
Chris@0 68 #endif