1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
/*
Sonic Visualiser
An audio file viewer and annotation editor.
Centre for Digital Music, Queen Mary, University of London.
This file copyright 2006 Chris Cannam.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version. See the file
COPYING included with this distribution for more information.
*/
#include "Selection.h"
#include <QTextStream>
namespace sv {
Selection::Selection() :
m_startFrame(0),
m_endFrame(0)
{
}
Selection::Selection(sv_frame_t startFrame, sv_frame_t endFrame) :
m_startFrame(startFrame),
m_endFrame(endFrame)
{
if (m_startFrame > m_endFrame) {
sv_frame_t tmp = m_endFrame;
m_endFrame = m_startFrame;
m_startFrame = tmp;
}
}
Selection::Selection(const Selection &s) :
m_startFrame(s.m_startFrame),
m_endFrame(s.m_endFrame)
{
}
Selection &
Selection::operator=(const Selection &s)
{
if (this != &s) {
m_startFrame = s.m_startFrame;
m_endFrame = s.m_endFrame;
}
return *this;
}
Selection::~Selection()
{
}
bool
Selection::isEmpty() const
{
return m_startFrame == m_endFrame;
}
sv_frame_t
Selection::getStartFrame() const
{
return m_startFrame;
}
sv_frame_t
Selection::getEndFrame() const
{
return m_endFrame;
}
bool
Selection::contains(sv_frame_t frame) const
{
return (frame >= m_startFrame) && (frame < m_endFrame);
}
bool
Selection::operator<(const Selection &s) const
{
if (isEmpty()) {
if (s.isEmpty()) return false;
else return true;
} else {
if (s.isEmpty()) return false;
else return (m_startFrame < s.m_startFrame);
}
}
bool
Selection::operator==(const Selection &s) const
{
if (isEmpty()) return s.isEmpty();
return (m_startFrame == s.m_startFrame &&
m_endFrame == s.m_endFrame);
}
MultiSelection::MultiSelection()
{
}
MultiSelection::~MultiSelection()
{
}
const MultiSelection::SelectionList &
MultiSelection::getSelections() const
{
return m_selections;
}
void
MultiSelection::setSelection(const Selection &selection)
{
clearSelections();
addSelection(selection);
}
void
MultiSelection::addSelection(const Selection &selection)
{
m_selections.insert(selection);
// Cope with a sitation where the new selection overlaps one or
// more existing ones. This is a terribly inefficient way to do
// this, but that probably isn't significant in real life.
// It's essential for the correct operation of
// getContainingSelection that the selections do not overlap, so
// this is not just a frill.
for (SelectionList::iterator i = m_selections.begin();
i != m_selections.end(); ) {
SelectionList::iterator j = i;
if (++j == m_selections.end()) break;
if (i->getEndFrame() >= j->getStartFrame()) {
Selection merged(i->getStartFrame(),
std::max(i->getEndFrame(), j->getEndFrame()));
m_selections.erase(i);
m_selections.erase(j);
m_selections.insert(merged);
i = m_selections.begin();
} else {
++i;
}
}
}
void
MultiSelection::removeSelection(const Selection &selection)
{
//!!! Likewise this needs to cope correctly with the situation
//where selection is not one of the original selection set but
//simply overlaps one of them (cutting down the original selection
//appropriately)
if (m_selections.find(selection) != m_selections.end()) {
m_selections.erase(selection);
}
}
void
MultiSelection::clearSelections()
{
if (!m_selections.empty()) {
m_selections.clear();
}
}
void
MultiSelection::getExtents(sv_frame_t &startFrame, sv_frame_t &endFrame) const
{
startFrame = 0;
endFrame = 0;
for (SelectionList::const_iterator i = m_selections.begin();
i != m_selections.end(); ++i) {
if (i == m_selections.begin() || i->getStartFrame() < startFrame) {
startFrame = i->getStartFrame();
}
if (i == m_selections.begin() || i->getEndFrame() > endFrame) {
endFrame = i->getEndFrame();
}
}
}
Selection
MultiSelection::getContainingSelection(sv_frame_t frame, bool defaultToFollowing) const
{
// This scales very badly with the number of selections, but it's
// more efficient for very small numbers of selections than a more
// scalable method, and I think that may be what we need
for (SelectionList::const_iterator i = m_selections.begin();
i != m_selections.end(); ++i) {
if (i->contains(frame)) return *i;
if (i->getStartFrame() > frame) {
if (defaultToFollowing) return *i;
else return Selection();
}
}
return Selection();
}
void
MultiSelection::toXml(QTextStream &stream, QString indent,
QString extraAttributes) const
{
stream << indent << QString("<selections %1>\n").arg(extraAttributes);
for (SelectionList::iterator i = m_selections.begin();
i != m_selections.end(); ++i) {
stream << indent
<< QString(" <selection start=\"%1\" end=\"%2\"/>\n")
.arg(i->getStartFrame()).arg(i->getEndFrame());
}
stream << indent << "</selections>\n";
}
QString
MultiSelection::toString() const
{
QStringList list;
for (SelectionList::iterator i = m_selections.begin();
i != m_selections.end(); ++i) {
list << QString("(%1,%2)")
.arg(i->getStartFrame())
.arg(i->getEndFrame());
}
return "(" + list.join(",") + ")";
}
} // end namespace sv
|