annotate data/model/SparseTimeValueModel.h @ 422:4caa28a0a8a2

* sorting arbitrary columns in data editor
author Chris Cannam
date Thu, 12 Jun 2008 09:03:00 +0000
parents 397fe91dc8e0
children 6a96bff0bd59
rev   line source
Chris@147 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@147 2
Chris@147 3 /*
Chris@147 4 Sonic Visualiser
Chris@147 5 An audio file viewer and annotation editor.
Chris@147 6 Centre for Digital Music, Queen Mary, University of London.
Chris@147 7 This file copyright 2006 Chris Cannam.
Chris@147 8
Chris@147 9 This program is free software; you can redistribute it and/or
Chris@147 10 modify it under the terms of the GNU General Public License as
Chris@147 11 published by the Free Software Foundation; either version 2 of the
Chris@147 12 License, or (at your option) any later version. See the file
Chris@147 13 COPYING included with this distribution for more information.
Chris@147 14 */
Chris@147 15
Chris@147 16 #ifndef _SPARSE_TIME_VALUE_MODEL_H_
Chris@147 17 #define _SPARSE_TIME_VALUE_MODEL_H_
Chris@147 18
Chris@147 19 #include "SparseValueModel.h"
Chris@150 20 #include "base/PlayParameterRepository.h"
Chris@147 21 #include "base/RealTime.h"
Chris@147 22
Chris@147 23 /**
Chris@147 24 * Time/value point type for use in a SparseModel or SparseValueModel.
Chris@147 25 * With this point type, the model basically represents a wiggly-line
Chris@147 26 * plot with points at arbitrary intervals of the model resolution.
Chris@147 27 */
Chris@147 28
Chris@147 29 struct TimeValuePoint
Chris@147 30 {
Chris@147 31 public:
Chris@147 32 TimeValuePoint(long _frame) : frame(_frame), value(0.0f) { }
Chris@147 33 TimeValuePoint(long _frame, float _value, QString _label) :
Chris@147 34 frame(_frame), value(_value), label(_label) { }
Chris@147 35
Chris@147 36 int getDimensions() const { return 2; }
Chris@147 37
Chris@147 38 long frame;
Chris@147 39 float value;
Chris@147 40 QString label;
Chris@338 41
Chris@338 42 QString getLabel() const { return label; }
Chris@147 43
Chris@314 44 void toXml(QTextStream &stream, QString indent = "",
Chris@314 45 QString extraAttributes = "") const
Chris@147 46 {
Chris@314 47 stream << QString("%1<point frame=\"%2\" value=\"%3\" label=\"%4\" %5/>\n")
Chris@147 48 .arg(indent).arg(frame).arg(value).arg(label).arg(extraAttributes);
Chris@147 49 }
Chris@147 50
Chris@147 51 QString toDelimitedDataString(QString delimiter, size_t sampleRate) const
Chris@147 52 {
Chris@147 53 QStringList list;
Chris@147 54 list << RealTime::frame2RealTime(frame, sampleRate).toString().c_str();
Chris@147 55 list << QString("%1").arg(value);
Chris@318 56 if (label != "") list << label;
Chris@147 57 return list.join(delimiter);
Chris@147 58 }
Chris@147 59
Chris@147 60 struct Comparator {
Chris@147 61 bool operator()(const TimeValuePoint &p1,
Chris@147 62 const TimeValuePoint &p2) const {
Chris@147 63 if (p1.frame != p2.frame) return p1.frame < p2.frame;
Chris@147 64 if (p1.value != p2.value) return p1.value < p2.value;
Chris@147 65 return p1.label < p2.label;
Chris@147 66 }
Chris@147 67 };
Chris@147 68
Chris@147 69 struct OrderComparator {
Chris@147 70 bool operator()(const TimeValuePoint &p1,
Chris@147 71 const TimeValuePoint &p2) const {
Chris@147 72 return p1.frame < p2.frame;
Chris@147 73 }
Chris@147 74 };
Chris@147 75 };
Chris@147 76
Chris@147 77
Chris@147 78 class SparseTimeValueModel : public SparseValueModel<TimeValuePoint>
Chris@147 79 {
Chris@147 80 public:
Chris@147 81 SparseTimeValueModel(size_t sampleRate, size_t resolution,
Chris@256 82 bool notifyOnAdd = true) :
Chris@256 83 SparseValueModel<TimeValuePoint>(sampleRate, resolution,
Chris@256 84 notifyOnAdd)
Chris@256 85 {
Chris@391 86 // not yet playable
Chris@256 87 }
Chris@256 88
Chris@256 89 SparseTimeValueModel(size_t sampleRate, size_t resolution,
Chris@147 90 float valueMinimum, float valueMaximum,
Chris@147 91 bool notifyOnAdd = true) :
Chris@147 92 SparseValueModel<TimeValuePoint>(sampleRate, resolution,
Chris@147 93 valueMinimum, valueMaximum,
Chris@147 94 notifyOnAdd)
Chris@147 95 {
Chris@391 96 // not yet playable
Chris@147 97 }
Chris@345 98
Chris@345 99 QString getTypeName() const { return tr("Sparse Time-Value"); }
Chris@420 100
Chris@420 101 /**
Chris@420 102 * TabularModel methods.
Chris@420 103 */
Chris@420 104
Chris@420 105 virtual int getColumnCount() const
Chris@420 106 {
Chris@420 107 return 4;
Chris@420 108 }
Chris@420 109
Chris@420 110 virtual QString getHeading(int column) const
Chris@420 111 {
Chris@420 112 switch (column) {
Chris@420 113 case 0: return tr("Time");
Chris@420 114 case 1: return tr("Frame");
Chris@420 115 case 2: return tr("Value");
Chris@420 116 case 3: return tr("Label");
Chris@420 117 default: return tr("Unknown");
Chris@420 118 }
Chris@420 119 }
Chris@420 120
Chris@420 121 virtual QVariant getData(int row, int column, int role) const
Chris@420 122 {
Chris@422 123 if (role != Qt::EditRole &&
Chris@422 124 role != Qt::DisplayRole &&
Chris@422 125 role != SortRole) return QVariant();
Chris@420 126 PointListIterator i = getPointListIteratorForRow(row);
Chris@420 127 if (i == m_points.end()) return QVariant();
Chris@420 128
Chris@420 129 switch (column) {
Chris@420 130 case 0: {
Chris@422 131 if (role == SortRole) return int(i->frame);
Chris@420 132 RealTime rt = RealTime::frame2RealTime(i->frame, getSampleRate());
Chris@420 133 return rt.toText().c_str();
Chris@420 134 }
Chris@420 135 case 1: return int(i->frame);
Chris@420 136 case 2:
Chris@422 137 if (role == Qt::EditRole || role == SortRole) return i->value;
Chris@420 138 else return QString("%1 %2").arg(i->value).arg(getScaleUnits());
Chris@420 139 case 3: return i->label;
Chris@420 140 default: return QVariant();
Chris@420 141 }
Chris@420 142 }
Chris@420 143
Chris@421 144 virtual Command *getSetDataCommand(int row, int column, const QVariant &value, int role) const
Chris@420 145 {
Chris@421 146 std::cerr << "SparseTimeValueModel::setData: row = " << row << ", column = " << column << ", role = " << role << std::endl;
Chris@421 147
Chris@420 148 if (role != Qt::EditRole) return false;
Chris@420 149 PointListIterator i = getPointListIteratorForRow(row);
Chris@421 150 if (i == m_points.end()) {
Chris@421 151 std::cerr << "Failed to find point iterator for row " << row << std::endl;
Chris@421 152 return false;
Chris@421 153 }
Chris@420 154 EditCommand *command = new EditCommand(this, tr("Edit Data"));
Chris@420 155
Chris@420 156 Point point(*i);
Chris@420 157 command->deletePoint(point);
Chris@420 158
Chris@420 159 switch (column) {
Chris@420 160 case 0: break;
Chris@420 161 case 1: break;
Chris@420 162 case 2: point.value = value.toDouble();
Chris@420 163 std::cerr << "setting value of point at " << point.frame << " to " << point.value << std::endl;
Chris@420 164 break;
Chris@420 165 case 3: point.label = value.toString(); break;
Chris@420 166 }
Chris@420 167
Chris@420 168 command->addPoint(point);
Chris@420 169 return command->finish();
Chris@420 170 }
Chris@420 171
Chris@420 172 virtual bool isColumnTimeValue(int column) const
Chris@420 173 {
Chris@420 174 return (column < 2);
Chris@420 175 }
Chris@422 176
Chris@422 177 virtual SortType getSortType(int column) const
Chris@422 178 {
Chris@422 179 if (column == 3) return SortAlphabetical;
Chris@422 180 return SortNumeric;
Chris@422 181 }
Chris@147 182 };
Chris@147 183
Chris@147 184
Chris@147 185 #endif
Chris@147 186
Chris@147 187
Chris@147 188