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 _TEXT_MODEL_H_
|
Chris@147
|
17 #define _TEXT_MODEL_H_
|
Chris@147
|
18
|
Chris@147
|
19 #include "SparseModel.h"
|
Chris@302
|
20 #include "base/XmlExportable.h"
|
Chris@147
|
21 #include "base/RealTime.h"
|
Chris@147
|
22
|
Chris@423
|
23 #include <QStringList>
|
Chris@423
|
24
|
Chris@147
|
25 /**
|
Chris@147
|
26 * Text point type for use in a SparseModel. This represents a piece
|
Chris@147
|
27 * of text at a given time and y-value in the [0,1) range (indicative
|
Chris@147
|
28 * of height on the window). Intended for casual textual annotations.
|
Chris@147
|
29 */
|
Chris@147
|
30
|
Chris@302
|
31 struct TextPoint : public XmlExportable
|
Chris@147
|
32 {
|
Chris@147
|
33 public:
|
Chris@147
|
34 TextPoint(long _frame) : frame(_frame), height(0.0f) { }
|
Chris@147
|
35 TextPoint(long _frame, float _height, QString _label) :
|
Chris@147
|
36 frame(_frame), height(_height), label(_label) { }
|
Chris@147
|
37
|
Chris@147
|
38 int getDimensions() const { return 2; }
|
Chris@147
|
39
|
Chris@147
|
40 long frame;
|
Chris@147
|
41 float height;
|
Chris@147
|
42 QString label;
|
Chris@338
|
43
|
Chris@338
|
44 QString getLabel() const { return label; }
|
Chris@147
|
45
|
Chris@314
|
46 void toXml(QTextStream &stream, QString indent = "",
|
Chris@314
|
47 QString extraAttributes = "") const
|
Chris@147
|
48 {
|
Chris@314
|
49 stream << QString("%1<point frame=\"%2\" height=\"%3\" label=\"%4\" %5/>\n")
|
Chris@302
|
50 .arg(indent).arg(frame).arg(height)
|
Chris@302
|
51 .arg(encodeEntities(label)).arg(extraAttributes);
|
Chris@147
|
52 }
|
Chris@147
|
53
|
Chris@147
|
54 QString toDelimitedDataString(QString delimiter, size_t sampleRate) const
|
Chris@147
|
55 {
|
Chris@147
|
56 QStringList list;
|
Chris@147
|
57 list << RealTime::frame2RealTime(frame, sampleRate).toString().c_str();
|
Chris@147
|
58 list << QString("%1").arg(height);
|
Chris@318
|
59 if (label != "") list << label;
|
Chris@147
|
60 return list.join(delimiter);
|
Chris@147
|
61 }
|
Chris@147
|
62
|
Chris@147
|
63 struct Comparator {
|
Chris@147
|
64 bool operator()(const TextPoint &p1,
|
Chris@147
|
65 const TextPoint &p2) const {
|
Chris@147
|
66 if (p1.frame != p2.frame) return p1.frame < p2.frame;
|
Chris@147
|
67 if (p1.height != p2.height) return p1.height < p2.height;
|
Chris@147
|
68 return p1.label < p2.label;
|
Chris@147
|
69 }
|
Chris@147
|
70 };
|
Chris@147
|
71
|
Chris@147
|
72 struct OrderComparator {
|
Chris@147
|
73 bool operator()(const TextPoint &p1,
|
Chris@147
|
74 const TextPoint &p2) const {
|
Chris@147
|
75 return p1.frame < p2.frame;
|
Chris@147
|
76 }
|
Chris@147
|
77 };
|
Chris@147
|
78 };
|
Chris@147
|
79
|
Chris@147
|
80
|
Chris@147
|
81 // Make this a class rather than a typedef so it can be predeclared.
|
Chris@147
|
82
|
Chris@147
|
83 class TextModel : public SparseModel<TextPoint>
|
Chris@147
|
84 {
|
Chris@423
|
85 Q_OBJECT
|
Chris@423
|
86
|
Chris@147
|
87 public:
|
Chris@147
|
88 TextModel(size_t sampleRate, size_t resolution, bool notifyOnAdd = true) :
|
Chris@147
|
89 SparseModel<TextPoint>(sampleRate, resolution, notifyOnAdd)
|
Chris@147
|
90 { }
|
Chris@147
|
91
|
Chris@288
|
92 virtual void toXml(QTextStream &out,
|
Chris@288
|
93 QString indent = "",
|
Chris@288
|
94 QString extraAttributes = "") const
|
Chris@147
|
95 {
|
Chris@288
|
96 SparseModel<TextPoint>::toXml
|
Chris@288
|
97 (out,
|
Chris@288
|
98 indent,
|
Chris@147
|
99 QString("%1 subtype=\"text\"")
|
Chris@147
|
100 .arg(extraAttributes));
|
Chris@147
|
101 }
|
Chris@345
|
102
|
Chris@345
|
103 QString getTypeName() const { return tr("Text"); }
|
Chris@147
|
104 };
|
Chris@147
|
105
|
Chris@147
|
106
|
Chris@147
|
107 #endif
|
Chris@147
|
108
|
Chris@147
|
109
|
Chris@147
|
110
|