annotate layer/LayerFactory.cpp @ 1471:f2525e6cbdf1 by-id

More layer updates
author Chris Cannam
date Mon, 01 Jul 2019 14:17:13 +0100
parents 9e846af73f3e
children 0fa155b84bac
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 #include "LayerFactory.h"
Chris@0 17
Chris@0 18 #include "WaveformLayer.h"
Chris@0 19 #include "SpectrogramLayer.h"
Chris@0 20 #include "TimeRulerLayer.h"
Chris@0 21 #include "TimeInstantLayer.h"
Chris@0 22 #include "TimeValueLayer.h"
Chris@30 23 #include "NoteLayer.h"
matthiasm@621 24 #include "FlexiNoteLayer.h"
Chris@411 25 #include "RegionLayer.h"
Chris@35 26 #include "TextLayer.h"
Chris@303 27 #include "ImageLayer.h"
Chris@0 28 #include "Colour3DPlotLayer.h"
Chris@133 29 #include "SpectrumLayer.h"
Chris@193 30 #include "SliceLayer.h"
Chris@193 31 #include "SliceableLayer.h"
Chris@0 32
Chris@360 33 #include "base/Clipboard.h"
Chris@360 34
Chris@128 35 #include "data/model/RangeSummarisableTimeValueModel.h"
Chris@128 36 #include "data/model/DenseTimeValueModel.h"
Chris@128 37 #include "data/model/SparseOneDimensionalModel.h"
Chris@128 38 #include "data/model/SparseTimeValueModel.h"
Chris@128 39 #include "data/model/NoteModel.h"
Chris@411 40 #include "data/model/RegionModel.h"
Chris@128 41 #include "data/model/TextModel.h"
Chris@303 42 #include "data/model/ImageModel.h"
Chris@128 43 #include "data/model/DenseThreeDimensionalModel.h"
Chris@156 44 #include "data/model/WaveFileModel.h"
Chris@156 45 #include "data/model/WritableWaveFileModel.h"
Chris@0 46
Chris@326 47 #include <QDomDocument>
Chris@326 48 #include <QDomElement>
Chris@326 49 #include <QDomNamedNodeMap>
Chris@326 50 #include <QDomAttr>
Chris@326 51
Chris@326 52 #include <QSettings>
Chris@326 53
Chris@0 54 LayerFactory *
Chris@0 55 LayerFactory::m_instance = new LayerFactory;
Chris@0 56
Chris@0 57 LayerFactory *
Chris@125 58 LayerFactory::getInstance()
Chris@0 59 {
Chris@0 60 return m_instance;
Chris@0 61 }
Chris@0 62
Chris@0 63 LayerFactory::~LayerFactory()
Chris@0 64 {
Chris@0 65 }
Chris@0 66
Chris@0 67 QString
Chris@0 68 LayerFactory::getLayerPresentationName(LayerType type)
Chris@0 69 {
Chris@0 70 switch (type) {
Chris@0 71 case Waveform: return Layer::tr("Waveform");
Chris@0 72 case Spectrogram: return Layer::tr("Spectrogram");
Chris@0 73 case TimeRuler: return Layer::tr("Ruler");
Chris@0 74 case TimeInstants: return Layer::tr("Time Instants");
Chris@0 75 case TimeValues: return Layer::tr("Time Values");
Chris@30 76 case Notes: return Layer::tr("Notes");
gyorgyf@625 77 case FlexiNotes: return Layer::tr("Flexible Notes");
Chris@411 78 case Regions: return Layer::tr("Regions");
Chris@35 79 case Text: return Layer::tr("Text");
Chris@303 80 case Image: return Layer::tr("Images");
Chris@0 81 case Colour3DPlot: return Layer::tr("Colour 3D Plot");
Chris@133 82 case Spectrum: return Layer::tr("Spectrum");
Chris@193 83 case Slice: return Layer::tr("Time Slice");
Chris@0 84
Chris@0 85 case MelodicRangeSpectrogram:
Chris@1266 86 // The user can change all the parameters of this after the
Chris@1266 87 // fact -- there's nothing permanently melodic-range about it
Chris@1266 88 // that should be encoded in its name
Chris@1266 89 return Layer::tr("Spectrogram");
Chris@11 90
Chris@37 91 case PeakFrequencySpectrogram:
Chris@1266 92 // likewise
Chris@1266 93 return Layer::tr("Spectrogram");
Chris@37 94
Chris@805 95 case UnknownLayer:
Chris@805 96 default:
Chris@805 97 cerr << "WARNING: LayerFactory::getLayerPresentationName passed unknown layer" << endl;
Chris@805 98 return Layer::tr("Unknown Layer");
Chris@0 99 }
Chris@0 100 }
Chris@0 101
Chris@193 102 bool
Chris@193 103 LayerFactory::isLayerSliceable(const Layer *layer)
Chris@193 104 {
Chris@193 105 if (dynamic_cast<const SliceableLayer *>(layer)) {
Chris@193 106 if (dynamic_cast<const SpectrogramLayer *>(layer)) {
Chris@193 107
Chris@193 108 //!!! We can create slices of spectrograms, but there's a
Chris@193 109 // problem managing the models. The source model for the
Chris@193 110 // slice layer has to be one of the spectrogram's FFT
Chris@193 111 // models -- that's fine, except that we can't store &
Chris@193 112 // recall the slice layer with a reference to that model
Chris@193 113 // because the model is internal to the spectrogram layer
Chris@193 114 // and the document has no record of it. We would need
Chris@193 115 // some other way of managing models that are used in this
Chris@193 116 // way. For the moment we just don't allow slices of
Chris@193 117 // spectrograms -- and provide a spectrum layer for this
Chris@193 118 // instead.
Chris@193 119 //
Chris@193 120 // This business needs a bit more thought -- either come
Chris@193 121 // up with a sensible way to deal with that stuff, or
Chris@193 122 // simplify the existing slice layer logic so that it
Chris@193 123 // doesn't have to deal with models disappearing on it at
Chris@193 124 // all (and use the normal Document setModel mechanism to
Chris@193 125 // set its sliceable model instead of the fancy pants
Chris@193 126 // nonsense it's doing at the moment).
Chris@193 127
Chris@193 128 return false;
Chris@193 129 }
Chris@193 130 return true;
Chris@193 131 }
Chris@193 132 return false;
Chris@193 133 }
Chris@193 134
Chris@0 135 LayerFactory::LayerTypeSet
Chris@1471 136 LayerFactory::getValidLayerTypes(ModelId modelId)
Chris@0 137 {
Chris@0 138 LayerTypeSet types;
Chris@0 139
Chris@1471 140 if (ModelById::getAs<DenseThreeDimensionalModel>(modelId)) {
Chris@1266 141 types.insert(Colour3DPlot);
Chris@193 142 types.insert(Slice);
Chris@193 143 }
Chris@193 144
Chris@1471 145 if (ModelById::getAs<RangeSummarisableTimeValueModel>(modelId)) {
Chris@1266 146 types.insert(Waveform);
Chris@0 147 }
Chris@0 148
Chris@1471 149 if (ModelById::getAs<DenseTimeValueModel>(modelId)) {
Chris@1266 150 types.insert(Spectrogram);
Chris@1266 151 types.insert(MelodicRangeSpectrogram);
Chris@1266 152 types.insert(PeakFrequencySpectrogram);
Chris@0 153 }
Chris@0 154
Chris@1471 155 if (ModelById::getAs<SparseOneDimensionalModel>(modelId)) {
Chris@1266 156 types.insert(TimeInstants);
Chris@0 157 }
Chris@0 158
Chris@1471 159 if (ModelById::getAs<SparseTimeValueModel>(modelId)) {
Chris@1266 160 types.insert(TimeValues);
Chris@411 161 }
Chris@411 162
Chris@1471 163 if (ModelById::getAs<NoteModel>(modelId)) {
Chris@1471 164 auto nm = ModelById::getAs<NoteModel>(modelId);
Chris@1471 165 if (nm && nm->getSubtype() == NoteModel::FLEXI_NOTE) {
Chris@1426 166 types.insert(FlexiNotes);
Chris@1426 167 } else {
Chris@1426 168 types.insert(Notes);
Chris@1426 169 }
matthiasm@621 170 }
matthiasm@621 171
Chris@1471 172 if (ModelById::getAs<RegionModel>(modelId)) {
Chris@1266 173 types.insert(Regions);
Chris@411 174 }
Chris@411 175
Chris@1471 176 if (ModelById::getAs<TextModel>(modelId)) {
Chris@1266 177 types.insert(Text);
Chris@30 178 }
Chris@30 179
Chris@1471 180 if (ModelById::getAs<ImageModel>(modelId)) {
Chris@1266 181 types.insert(Image);
Chris@303 182 }
Chris@303 183
Chris@1471 184 if (ModelById::getAs<DenseTimeValueModel>(modelId)) {
Chris@133 185 types.insert(Spectrum);
Chris@133 186 }
Chris@133 187
Chris@0 188 // We don't count TimeRuler here as it doesn't actually display
Chris@0 189 // the data, although it can be backed by any model
Chris@0 190
Chris@0 191 return types;
Chris@0 192 }
Chris@0 193
Chris@17 194 LayerFactory::LayerTypeSet
Chris@17 195 LayerFactory::getValidEmptyLayerTypes()
Chris@17 196 {
Chris@17 197 LayerTypeSet types;
Chris@17 198 types.insert(TimeInstants);
Chris@17 199 types.insert(TimeValues);
Chris@962 200 // Because this is strictly a UI function -- list the layer types
Chris@962 201 // to show in a menu -- it should not contain FlexiNotes; the
Chris@962 202 // layer isn't meaningfully editable in SV
Chris@962 203 // types.insert(FlexiNotes);
Chris@30 204 types.insert(Notes);
Chris@411 205 types.insert(Regions);
Chris@35 206 types.insert(Text);
Chris@303 207 types.insert(Image);
Chris@17 208 //!!! and in principle Colour3DPlot -- now that's a challenge
Chris@17 209 return types;
Chris@17 210 }
Chris@17 211
Chris@0 212 LayerFactory::LayerType
Chris@6 213 LayerFactory::getLayerType(const Layer *layer)
Chris@0 214 {
Chris@6 215 if (dynamic_cast<const WaveformLayer *>(layer)) return Waveform;
Chris@6 216 if (dynamic_cast<const SpectrogramLayer *>(layer)) return Spectrogram;
Chris@6 217 if (dynamic_cast<const TimeRulerLayer *>(layer)) return TimeRuler;
Chris@6 218 if (dynamic_cast<const TimeInstantLayer *>(layer)) return TimeInstants;
Chris@6 219 if (dynamic_cast<const TimeValueLayer *>(layer)) return TimeValues;
Chris@782 220 if (dynamic_cast<const FlexiNoteLayer *>(layer)) return FlexiNotes;
Chris@30 221 if (dynamic_cast<const NoteLayer *>(layer)) return Notes;
Chris@411 222 if (dynamic_cast<const RegionLayer *>(layer)) return Regions;
Chris@35 223 if (dynamic_cast<const TextLayer *>(layer)) return Text;
Chris@303 224 if (dynamic_cast<const ImageLayer *>(layer)) return Image;
Chris@6 225 if (dynamic_cast<const Colour3DPlotLayer *>(layer)) return Colour3DPlot;
Chris@133 226 if (dynamic_cast<const SpectrumLayer *>(layer)) return Spectrum;
Chris@193 227 if (dynamic_cast<const SliceLayer *>(layer)) return Slice;
Chris@6 228 return UnknownLayer;
Chris@6 229 }
Chris@6 230
Chris@6 231 QString
Chris@17 232 LayerFactory::getLayerIconName(LayerType type)
Chris@17 233 {
Chris@17 234 switch (type) {
Chris@17 235 case Waveform: return "waveform";
Chris@17 236 case Spectrogram: return "spectrogram";
Chris@17 237 case TimeRuler: return "timeruler";
Chris@17 238 case TimeInstants: return "instants";
Chris@17 239 case TimeValues: return "values";
Chris@30 240 case Notes: return "notes";
Chris@782 241 case FlexiNotes: return "flexinotes";
Chris@411 242 case Regions: return "regions";
Chris@35 243 case Text: return "text";
Chris@303 244 case Image: return "image";
Chris@17 245 case Colour3DPlot: return "colour3d";
Chris@133 246 case Spectrum: return "spectrum";
Chris@193 247 case Slice: return "spectrum";
Chris@326 248 case MelodicRangeSpectrogram: return "spectrogram";
Chris@326 249 case PeakFrequencySpectrogram: return "spectrogram";
Chris@805 250 case UnknownLayer:
Chris@805 251 default:
Chris@805 252 cerr << "WARNING: LayerFactory::getLayerIconName passed unknown layer" << endl;
Chris@805 253 return "unknown";
Chris@17 254 }
Chris@17 255 }
Chris@17 256
Chris@17 257 QString
Chris@6 258 LayerFactory::getLayerTypeName(LayerType type)
Chris@6 259 {
Chris@6 260 switch (type) {
Chris@6 261 case Waveform: return "waveform";
Chris@6 262 case Spectrogram: return "spectrogram";
Chris@6 263 case TimeRuler: return "timeruler";
Chris@6 264 case TimeInstants: return "timeinstants";
Chris@6 265 case TimeValues: return "timevalues";
Chris@30 266 case Notes: return "notes";
matthiasm@623 267 case FlexiNotes: return "flexinotes";
Chris@411 268 case Regions: return "regions";
Chris@35 269 case Text: return "text";
Chris@303 270 case Image: return "image";
Chris@6 271 case Colour3DPlot: return "colour3dplot";
Chris@133 272 case Spectrum: return "spectrum";
Chris@193 273 case Slice: return "slice";
Chris@326 274 case MelodicRangeSpectrogram: return "melodicrange";
Chris@326 275 case PeakFrequencySpectrogram: return "peakfrequency";
Chris@805 276 case UnknownLayer:
Chris@805 277 default:
Chris@805 278 cerr << "WARNING: LayerFactory::getLayerTypeName passed unknown layer" << endl;
Chris@805 279 return "unknown";
Chris@6 280 }
Chris@6 281 }
Chris@6 282
Chris@6 283 LayerFactory::LayerType
Chris@6 284 LayerFactory::getLayerTypeForName(QString name)
Chris@6 285 {
Chris@6 286 if (name == "waveform") return Waveform;
Chris@6 287 if (name == "spectrogram") return Spectrogram;
Chris@6 288 if (name == "timeruler") return TimeRuler;
Chris@6 289 if (name == "timeinstants") return TimeInstants;
Chris@6 290 if (name == "timevalues") return TimeValues;
Chris@1005 291 if (name == "notes") return Notes;
matthiasm@623 292 if (name == "flexinotes") return FlexiNotes;
Chris@411 293 if (name == "regions") return Regions;
Chris@35 294 if (name == "text") return Text;
Chris@303 295 if (name == "image") return Image;
Chris@6 296 if (name == "colour3dplot") return Colour3DPlot;
Chris@133 297 if (name == "spectrum") return Spectrum;
Chris@193 298 if (name == "slice") return Slice;
Chris@0 299 return UnknownLayer;
Chris@0 300 }
Chris@0 301
Chris@0 302 void
Chris@1471 303 LayerFactory::setModel(Layer *layer, ModelId model)
Chris@0 304 {
Chris@156 305 if (trySetModel<WaveformLayer, WaveFileModel>(layer, model))
Chris@1266 306 return;
Chris@156 307
Chris@156 308 if (trySetModel<WaveformLayer, WritableWaveFileModel>(layer, model))
Chris@1266 309 return;
Chris@0 310
Chris@0 311 if (trySetModel<SpectrogramLayer, DenseTimeValueModel>(layer, model))
Chris@1266 312 return;
Chris@0 313
Chris@0 314 if (trySetModel<TimeRulerLayer, Model>(layer, model))
Chris@1266 315 return;
Chris@0 316
Chris@0 317 if (trySetModel<TimeInstantLayer, SparseOneDimensionalModel>(layer, model))
Chris@1266 318 return;
Chris@0 319
Chris@0 320 if (trySetModel<TimeValueLayer, SparseTimeValueModel>(layer, model))
Chris@1266 321 return;
Chris@0 322
gyorgyf@626 323 if (trySetModel<NoteLayer, NoteModel>(layer, model))
Chris@1266 324 return;
Chris@30 325
Chris@1426 326 if (trySetModel<FlexiNoteLayer, NoteModel>(layer, model))
Chris@1266 327 return;
Chris@1266 328
Chris@411 329 if (trySetModel<RegionLayer, RegionModel>(layer, model))
Chris@1266 330 return;
Chris@411 331
Chris@35 332 if (trySetModel<TextLayer, TextModel>(layer, model))
Chris@1266 333 return;
Chris@35 334
Chris@303 335 if (trySetModel<ImageLayer, ImageModel>(layer, model))
Chris@1266 336 return;
Chris@303 337
Chris@0 338 if (trySetModel<Colour3DPlotLayer, DenseThreeDimensionalModel>(layer, model))
Chris@1266 339 return;
Chris@0 340
Chris@133 341 if (trySetModel<SpectrumLayer, DenseTimeValueModel>(layer, model))
Chris@133 342 return;
Chris@0 343 }
Chris@0 344
Chris@1471 345 std::shared_ptr<Model>
Chris@1471 346 LayerFactory::createEmptyModel(LayerType layerType, ModelId baseModelId)
Chris@17 347 {
Chris@1471 348 auto baseModel = ModelById::get(baseModelId);
Chris@1471 349 if (!baseModel) return {};
Chris@1471 350
Chris@1471 351 sv_samplerate_t rate = baseModel->getSampleRate();
Chris@1471 352
Chris@17 353 if (layerType == TimeInstants) {
Chris@1471 354 return std::make_shared<SparseOneDimensionalModel>(rate, 1);
Chris@17 355 } else if (layerType == TimeValues) {
Chris@1471 356 return std::make_shared<SparseTimeValueModel>(rate, 1, true);
Chris@782 357 } else if (layerType == FlexiNotes) {
Chris@1471 358 return std::make_shared<NoteModel>(rate, 1, true);
Chris@30 359 } else if (layerType == Notes) {
Chris@1471 360 return std::make_shared<NoteModel>(rate, 1, true);
Chris@411 361 } else if (layerType == Regions) {
Chris@1471 362 return std::make_shared<RegionModel>(rate, 1, true);
Chris@35 363 } else if (layerType == Text) {
Chris@1471 364 return std::make_shared<TextModel>(rate, 1, true);
Chris@303 365 } else if (layerType == Image) {
Chris@1471 366 return std::make_shared<ImageModel>(rate, 1, true);
Chris@17 367 } else {
Chris@1471 368 return {};
Chris@17 369 }
Chris@17 370 }
Chris@17 371
Chris@53 372 int
Chris@53 373 LayerFactory::getChannel(Layer *layer)
Chris@53 374 {
Chris@53 375 if (dynamic_cast<WaveformLayer *>(layer)) {
Chris@1266 376 return dynamic_cast<WaveformLayer *>(layer)->getChannel();
Chris@53 377 }
Chris@53 378 if (dynamic_cast<SpectrogramLayer *>(layer)) {
Chris@1266 379 return dynamic_cast<SpectrogramLayer *>(layer)->getChannel();
Chris@53 380 }
Chris@53 381 return -1;
Chris@53 382 }
Chris@53 383
Chris@53 384 void
Chris@53 385 LayerFactory::setChannel(Layer *layer, int channel)
Chris@53 386 {
Chris@53 387 if (dynamic_cast<WaveformLayer *>(layer)) {
Chris@1266 388 dynamic_cast<WaveformLayer *>(layer)->setChannel(channel);
Chris@1266 389 return;
Chris@53 390 }
Chris@53 391 if (dynamic_cast<SpectrogramLayer *>(layer)) {
Chris@1266 392 dynamic_cast<SpectrogramLayer *>(layer)->setChannel(channel);
Chris@1266 393 return;
Chris@53 394 }
Chris@349 395 if (dynamic_cast<SpectrumLayer *>(layer)) {
Chris@1266 396 dynamic_cast<SpectrumLayer *>(layer)->setChannel(channel);
Chris@1266 397 return;
Chris@349 398 }
Chris@53 399 }
Chris@53 400
Chris@0 401 Layer *
Chris@53 402 LayerFactory::createLayer(LayerType type)
Chris@0 403 {
Chris@1408 404 Layer *layer = nullptr;
Chris@0 405
Chris@0 406 switch (type) {
Chris@0 407
Chris@0 408 case Waveform:
Chris@1266 409 layer = new WaveformLayer;
Chris@1266 410 break;
Chris@0 411
Chris@0 412 case Spectrogram:
Chris@1266 413 layer = new SpectrogramLayer;
Chris@1266 414 break;
Chris@0 415
Chris@0 416 case TimeRuler:
Chris@1266 417 layer = new TimeRulerLayer;
Chris@1266 418 break;
Chris@0 419
Chris@0 420 case TimeInstants:
Chris@1266 421 layer = new TimeInstantLayer;
Chris@1266 422 break;
Chris@0 423
Chris@0 424 case TimeValues:
Chris@1266 425 layer = new TimeValueLayer;
Chris@1266 426 break;
Chris@0 427
matthiasm@623 428 case FlexiNotes:
Chris@1266 429 layer = new FlexiNoteLayer;
Chris@1266 430 break;
matthiasm@623 431
Chris@30 432 case Notes:
Chris@1266 433 layer = new NoteLayer;
Chris@1266 434 break;
Chris@30 435
Chris@411 436 case Regions:
Chris@1266 437 layer = new RegionLayer;
Chris@1266 438 break;
Chris@411 439
Chris@35 440 case Text:
Chris@1266 441 layer = new TextLayer;
Chris@1266 442 break;
Chris@35 443
Chris@303 444 case Image:
Chris@1266 445 layer = new ImageLayer;
Chris@1266 446 break;
Chris@303 447
Chris@0 448 case Colour3DPlot:
Chris@1266 449 layer = new Colour3DPlotLayer;
Chris@1266 450 break;
Chris@0 451
Chris@133 452 case Spectrum:
Chris@133 453 layer = new SpectrumLayer;
Chris@133 454 break;
Chris@133 455
Chris@193 456 case Slice:
Chris@193 457 layer = new SliceLayer;
Chris@193 458 break;
Chris@193 459
Chris@0 460 case MelodicRangeSpectrogram:
Chris@1266 461 layer = new SpectrogramLayer(SpectrogramLayer::MelodicRange);
Chris@1266 462 break;
Chris@11 463
Chris@37 464 case PeakFrequencySpectrogram:
Chris@1266 465 layer = new SpectrogramLayer(SpectrogramLayer::MelodicPeaks);
Chris@1266 466 break;
Chris@37 467
Chris@805 468 case UnknownLayer:
Chris@805 469 default:
Chris@805 470 cerr << "WARNING: LayerFactory::createLayer passed unknown layer" << endl;
Chris@805 471 break;
Chris@0 472 }
Chris@0 473
Chris@0 474 if (!layer) {
Chris@1266 475 cerr << "LayerFactory::createLayer: Unknown layer type "
Chris@1266 476 << type << endl;
Chris@0 477 } else {
Chris@1266 478 // SVDEBUG << "LayerFactory::createLayer: Setting object name "
Chris@1266 479 // << getLayerPresentationName(type) << " on " << layer << endl;
Chris@1266 480 layer->setObjectName(getLayerPresentationName(type));
Chris@326 481 setLayerDefaultProperties(type, layer);
Chris@0 482 }
Chris@0 483
Chris@0 484 return layer;
Chris@0 485 }
Chris@0 486
Chris@326 487 void
Chris@326 488 LayerFactory::setLayerDefaultProperties(LayerType type, Layer *layer)
Chris@326 489 {
Chris@587 490 // SVDEBUG << "LayerFactory::setLayerDefaultProperties: type " << type << " (name \"" << getLayerTypeName(type) << "\")" << endl;
Chris@327 491
Chris@326 492 QSettings settings;
Chris@326 493 settings.beginGroup("LayerDefaults");
Chris@326 494 QString defaults = settings.value(getLayerTypeName(type), "").toString();
Chris@326 495 if (defaults == "") return;
Chris@1455 496 setLayerProperties(layer, defaults);
Chris@1455 497 settings.endGroup();
Chris@1455 498 }
Chris@326 499
Chris@1455 500 void
Chris@1455 501 LayerFactory::setLayerProperties(Layer *layer, QString newXml)
Chris@1455 502 {
Chris@1455 503 QDomDocument docOld, docNew;
Chris@1455 504 QString oldXml = layer->toXmlString();
Chris@327 505
Chris@1455 506 if (!docOld.setContent(oldXml, false)) {
Chris@1455 507 SVCERR << "LayerFactory::setLayerProperties: Failed to parse XML for existing layer properties! XML string is: " << oldXml << endl;
Chris@1455 508 return;
Chris@1455 509 }
Chris@1455 510
Chris@1455 511 if (!docNew.setContent(newXml, false)) {
Chris@1455 512 SVCERR << "LayerFactory::setLayerProperties: Failed to parse XML: " << newXml << endl;
Chris@1455 513 return;
Chris@1455 514 }
Chris@326 515
Chris@1455 516 QXmlAttributes attrs;
Chris@326 517
Chris@1455 518 QDomElement layerElt = docNew.firstChildElement("layer");
Chris@1455 519 QDomNamedNodeMap attrNodes = layerElt.attributes();
Chris@326 520
Chris@1455 521 for (int i = 0; i < attrNodes.length(); ++i) {
Chris@1455 522 QDomAttr attr = attrNodes.item(i).toAttr();
Chris@1455 523 if (attr.isNull()) continue;
Chris@683 524 // cerr << "append \"" << attr.name()
Chris@584 525 // << "\" -> \"" << attr.value() << "\""
Chris@682 526 // << endl;
Chris@1455 527 attrs.append(attr.name(), "", "", attr.value());
Chris@1455 528 }
Chris@1455 529
Chris@1455 530 layerElt = docOld.firstChildElement("layer");
Chris@1455 531 attrNodes = layerElt.attributes();
Chris@1455 532 for (int i = 0; i < attrNodes.length(); ++i) {
Chris@1455 533 QDomAttr attr = attrNodes.item(i).toAttr();
Chris@1455 534 if (attr.isNull()) continue;
Chris@1455 535 if (attrs.value(attr.name()) == "") {
Chris@683 536 // cerr << "append \"" << attr.name()
Chris@584 537 // << "\" -> \"" << attr.value() << "\""
Chris@682 538 // << endl;
Chris@1455 539 attrs.append(attr.name(), "", "", attr.value());
Chris@326 540 }
Chris@326 541 }
Chris@1455 542
Chris@1455 543 layer->setProperties(attrs);
Chris@326 544 }
Chris@326 545
Chris@360 546 LayerFactory::LayerType
Chris@360 547 LayerFactory::getLayerTypeForClipboardContents(const Clipboard &clip)
Chris@360 548 {
Chris@1423 549 const EventVector &contents = clip.getPoints();
Chris@360 550
Chris@360 551 bool haveValue = false;
Chris@360 552 bool haveDuration = false;
Chris@411 553 bool haveLevel = false;
Chris@360 554
Chris@1423 555 for (EventVector::const_iterator i = contents.begin();
Chris@360 556 i != contents.end(); ++i) {
Chris@1423 557 if (i->hasValue()) haveValue = true;
Chris@1423 558 if (i->hasDuration()) haveDuration = true;
Chris@1423 559 if (i->hasLevel()) haveLevel = true;
Chris@360 560 }
Chris@360 561
Chris@1423 562 if (haveValue && haveDuration && haveLevel) return Notes;
Chris@1423 563 if (haveValue && haveDuration) return Regions;
Chris@1423 564 if (haveValue) return TimeValues;
Chris@360 565 return TimeInstants;
Chris@360 566 }
Chris@360 567