annotate layer/LayerFactory.cpp @ 621:e7352a4c0a05 tonioni

added references to new layer type FlexiNoteLayer and corresponding FlexiNoteModel
author matthiasm
date Tue, 26 Mar 2013 14:46:06 +0000
parents 4806715f7a19
children 49afde2dd704
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"
matthiasm@621 40 #include "data/model/FlexiNoteModel.h"
Chris@411 41 #include "data/model/RegionModel.h"
Chris@128 42 #include "data/model/TextModel.h"
Chris@303 43 #include "data/model/ImageModel.h"
Chris@128 44 #include "data/model/DenseThreeDimensionalModel.h"
Chris@156 45 #include "data/model/WaveFileModel.h"
Chris@156 46 #include "data/model/WritableWaveFileModel.h"
Chris@0 47
Chris@326 48 #include <QDomDocument>
Chris@326 49 #include <QDomElement>
Chris@326 50 #include <QDomNamedNodeMap>
Chris@326 51 #include <QDomAttr>
Chris@326 52
Chris@326 53 #include <QSettings>
Chris@326 54
Chris@0 55 LayerFactory *
Chris@0 56 LayerFactory::m_instance = new LayerFactory;
Chris@0 57
Chris@0 58 LayerFactory *
Chris@125 59 LayerFactory::getInstance()
Chris@0 60 {
Chris@0 61 return m_instance;
Chris@0 62 }
Chris@0 63
Chris@0 64 LayerFactory::~LayerFactory()
Chris@0 65 {
Chris@0 66 }
Chris@0 67
Chris@0 68 QString
Chris@0 69 LayerFactory::getLayerPresentationName(LayerType type)
Chris@0 70 {
Chris@0 71 switch (type) {
Chris@0 72 case Waveform: return Layer::tr("Waveform");
Chris@0 73 case Spectrogram: return Layer::tr("Spectrogram");
Chris@0 74 case TimeRuler: return Layer::tr("Ruler");
Chris@0 75 case TimeInstants: return Layer::tr("Time Instants");
Chris@0 76 case TimeValues: return Layer::tr("Time Values");
Chris@30 77 case Notes: return Layer::tr("Notes");
matthiasm@621 78 case FlexiNotes: return Layer::tr("flexible Notes");
Chris@411 79 case Regions: return Layer::tr("Regions");
Chris@35 80 case Text: return Layer::tr("Text");
Chris@303 81 case Image: return Layer::tr("Images");
Chris@0 82 case Colour3DPlot: return Layer::tr("Colour 3D Plot");
Chris@133 83 case Spectrum: return Layer::tr("Spectrum");
Chris@193 84 case Slice: return Layer::tr("Time Slice");
Chris@0 85
Chris@0 86 case MelodicRangeSpectrogram:
Chris@0 87 // The user can change all the parameters of this after the
Chris@0 88 // fact -- there's nothing permanently melodic-range about it
Chris@0 89 // that should be encoded in its name
Chris@0 90 return Layer::tr("Spectrogram");
Chris@11 91
Chris@37 92 case PeakFrequencySpectrogram:
Chris@37 93 // likewise
Chris@37 94 return Layer::tr("Spectrogram");
Chris@37 95
Chris@11 96 default: break;
Chris@0 97 }
Chris@0 98
Chris@0 99 return Layer::tr("Layer");
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@0 136 LayerFactory::getValidLayerTypes(Model *model)
Chris@0 137 {
Chris@0 138 LayerTypeSet types;
Chris@0 139
Chris@0 140 if (dynamic_cast<DenseThreeDimensionalModel *>(model)) {
Chris@0 141 types.insert(Colour3DPlot);
Chris@193 142 types.insert(Slice);
Chris@193 143 }
Chris@193 144
Chris@193 145 if (dynamic_cast<RangeSummarisableTimeValueModel *>(model)) {
Chris@193 146 types.insert(Waveform);
Chris@0 147 }
Chris@0 148
Chris@0 149 if (dynamic_cast<DenseTimeValueModel *>(model)) {
Chris@0 150 types.insert(Spectrogram);
Chris@0 151 types.insert(MelodicRangeSpectrogram);
Chris@37 152 types.insert(PeakFrequencySpectrogram);
Chris@0 153 }
Chris@0 154
Chris@0 155 if (dynamic_cast<SparseOneDimensionalModel *>(model)) {
Chris@0 156 types.insert(TimeInstants);
Chris@0 157 }
Chris@0 158
Chris@0 159 if (dynamic_cast<SparseTimeValueModel *>(model)) {
Chris@0 160 types.insert(TimeValues);
Chris@411 161 }
Chris@411 162
Chris@35 163 if (dynamic_cast<NoteModel *>(model)) {
Chris@35 164 types.insert(Notes);
Chris@0 165 }
Chris@0 166
matthiasm@621 167 if (dynamic_cast<FlexiNoteModel *>(model)) {
matthiasm@621 168 types.insert(FlexiNotes);
matthiasm@621 169 }
matthiasm@621 170
Chris@411 171 if (dynamic_cast<RegionModel *>(model)) {
Chris@411 172 types.insert(Regions);
Chris@411 173 }
Chris@411 174
Chris@35 175 if (dynamic_cast<TextModel *>(model)) {
Chris@35 176 types.insert(Text);
Chris@30 177 }
Chris@30 178
Chris@303 179 if (dynamic_cast<ImageModel *>(model)) {
Chris@303 180 types.insert(Image);
Chris@303 181 }
Chris@303 182
Chris@133 183 if (dynamic_cast<DenseTimeValueModel *>(model)) {
Chris@133 184 types.insert(Spectrum);
Chris@133 185 }
Chris@133 186
Chris@0 187 // We don't count TimeRuler here as it doesn't actually display
Chris@0 188 // the data, although it can be backed by any model
Chris@0 189
Chris@0 190 return types;
Chris@0 191 }
Chris@0 192
Chris@17 193 LayerFactory::LayerTypeSet
Chris@17 194 LayerFactory::getValidEmptyLayerTypes()
Chris@17 195 {
Chris@17 196 LayerTypeSet types;
Chris@17 197 types.insert(TimeInstants);
Chris@17 198 types.insert(TimeValues);
Chris@30 199 types.insert(Notes);
matthiasm@621 200 types.insert(FlexiNotes);
Chris@411 201 types.insert(Regions);
Chris@35 202 types.insert(Text);
Chris@303 203 types.insert(Image);
Chris@17 204 //!!! and in principle Colour3DPlot -- now that's a challenge
Chris@17 205 return types;
Chris@17 206 }
Chris@17 207
Chris@0 208 LayerFactory::LayerType
Chris@6 209 LayerFactory::getLayerType(const Layer *layer)
Chris@0 210 {
Chris@6 211 if (dynamic_cast<const WaveformLayer *>(layer)) return Waveform;
Chris@6 212 if (dynamic_cast<const SpectrogramLayer *>(layer)) return Spectrogram;
Chris@6 213 if (dynamic_cast<const TimeRulerLayer *>(layer)) return TimeRuler;
Chris@6 214 if (dynamic_cast<const TimeInstantLayer *>(layer)) return TimeInstants;
Chris@6 215 if (dynamic_cast<const TimeValueLayer *>(layer)) return TimeValues;
Chris@30 216 if (dynamic_cast<const NoteLayer *>(layer)) return Notes;
matthiasm@621 217 if (dynamic_cast<const FlexiNoteLayer *>(layer)) return FlexiNotes;
Chris@411 218 if (dynamic_cast<const RegionLayer *>(layer)) return Regions;
Chris@35 219 if (dynamic_cast<const TextLayer *>(layer)) return Text;
Chris@303 220 if (dynamic_cast<const ImageLayer *>(layer)) return Image;
Chris@6 221 if (dynamic_cast<const Colour3DPlotLayer *>(layer)) return Colour3DPlot;
Chris@133 222 if (dynamic_cast<const SpectrumLayer *>(layer)) return Spectrum;
Chris@193 223 if (dynamic_cast<const SliceLayer *>(layer)) return Slice;
Chris@6 224 return UnknownLayer;
Chris@6 225 }
Chris@6 226
Chris@6 227 QString
Chris@17 228 LayerFactory::getLayerIconName(LayerType type)
Chris@17 229 {
Chris@17 230 switch (type) {
Chris@17 231 case Waveform: return "waveform";
Chris@17 232 case Spectrogram: return "spectrogram";
Chris@17 233 case TimeRuler: return "timeruler";
Chris@17 234 case TimeInstants: return "instants";
Chris@17 235 case TimeValues: return "values";
Chris@30 236 case Notes: return "notes";
matthiasm@621 237 case FlexiNotes: return "flexible notes";
Chris@411 238 case Regions: return "regions";
Chris@35 239 case Text: return "text";
Chris@303 240 case Image: return "image";
Chris@17 241 case Colour3DPlot: return "colour3d";
Chris@133 242 case Spectrum: return "spectrum";
Chris@193 243 case Slice: return "spectrum";
Chris@326 244 case MelodicRangeSpectrogram: return "spectrogram";
Chris@326 245 case PeakFrequencySpectrogram: return "spectrogram";
Chris@17 246 default: return "unknown";
Chris@17 247 }
Chris@17 248 }
Chris@17 249
Chris@17 250 QString
Chris@6 251 LayerFactory::getLayerTypeName(LayerType type)
Chris@6 252 {
Chris@6 253 switch (type) {
Chris@6 254 case Waveform: return "waveform";
Chris@6 255 case Spectrogram: return "spectrogram";
Chris@6 256 case TimeRuler: return "timeruler";
Chris@6 257 case TimeInstants: return "timeinstants";
Chris@6 258 case TimeValues: return "timevalues";
Chris@30 259 case Notes: return "notes";
matthiasm@621 260 case FlexiNotes: return "flexible notes";
Chris@411 261 case Regions: return "regions";
Chris@35 262 case Text: return "text";
Chris@303 263 case Image: return "image";
Chris@6 264 case Colour3DPlot: return "colour3dplot";
Chris@133 265 case Spectrum: return "spectrum";
Chris@193 266 case Slice: return "slice";
Chris@326 267 case MelodicRangeSpectrogram: return "melodicrange";
Chris@326 268 case PeakFrequencySpectrogram: return "peakfrequency";
Chris@6 269 default: return "unknown";
Chris@6 270 }
Chris@6 271 }
Chris@6 272
Chris@6 273 LayerFactory::LayerType
Chris@6 274 LayerFactory::getLayerTypeForName(QString name)
Chris@6 275 {
Chris@6 276 if (name == "waveform") return Waveform;
Chris@6 277 if (name == "spectrogram") return Spectrogram;
Chris@6 278 if (name == "timeruler") return TimeRuler;
Chris@6 279 if (name == "timeinstants") return TimeInstants;
Chris@6 280 if (name == "timevalues") return TimeValues;
matthiasm@621 281 if (name == "flexible notes") return FlexiNotes;
Chris@411 282 if (name == "regions") return Regions;
Chris@35 283 if (name == "text") return Text;
Chris@303 284 if (name == "image") return Image;
Chris@6 285 if (name == "colour3dplot") return Colour3DPlot;
Chris@133 286 if (name == "spectrum") return Spectrum;
Chris@193 287 if (name == "slice") return Slice;
Chris@0 288 return UnknownLayer;
Chris@0 289 }
Chris@0 290
Chris@0 291 void
Chris@0 292 LayerFactory::setModel(Layer *layer, Model *model)
Chris@0 293 {
Chris@156 294 // if (trySetModel<WaveformLayer, RangeSummarisableTimeValueModel>(layer, model))
Chris@156 295 // return;
Chris@156 296
Chris@156 297 if (trySetModel<WaveformLayer, WaveFileModel>(layer, model))
Chris@156 298 return;
Chris@156 299
Chris@156 300 if (trySetModel<WaveformLayer, WritableWaveFileModel>(layer, model))
Chris@0 301 return;
Chris@0 302
Chris@0 303 if (trySetModel<SpectrogramLayer, DenseTimeValueModel>(layer, model))
Chris@0 304 return;
Chris@0 305
Chris@0 306 if (trySetModel<TimeRulerLayer, Model>(layer, model))
Chris@0 307 return;
Chris@0 308
Chris@0 309 if (trySetModel<TimeInstantLayer, SparseOneDimensionalModel>(layer, model))
Chris@0 310 return;
Chris@0 311
Chris@0 312 if (trySetModel<TimeValueLayer, SparseTimeValueModel>(layer, model))
Chris@0 313 return;
Chris@0 314
Chris@30 315 if (trySetModel<NoteLayer, NoteModel>(layer, model))
Chris@30 316 return;
Chris@30 317
matthiasm@621 318 if (trySetModel<FlexiNoteLayer, FlexiNoteModel>(layer, model))
matthiasm@621 319 return;
matthiasm@621 320
Chris@411 321 if (trySetModel<RegionLayer, RegionModel>(layer, model))
Chris@411 322 return;
Chris@411 323
Chris@35 324 if (trySetModel<TextLayer, TextModel>(layer, model))
Chris@35 325 return;
Chris@35 326
Chris@303 327 if (trySetModel<ImageLayer, ImageModel>(layer, model))
Chris@303 328 return;
Chris@303 329
Chris@0 330 if (trySetModel<Colour3DPlotLayer, DenseThreeDimensionalModel>(layer, model))
Chris@0 331 return;
Chris@0 332
Chris@0 333 if (trySetModel<SpectrogramLayer, DenseTimeValueModel>(layer, model))
Chris@0 334 return;
Chris@133 335
Chris@133 336 if (trySetModel<SpectrumLayer, DenseTimeValueModel>(layer, model))
Chris@133 337 return;
Chris@193 338
Chris@193 339 // if (trySetModel<SliceLayer, DenseThreeDimensionalModel>(layer, model))
Chris@193 340 // return;
Chris@0 341 }
Chris@0 342
Chris@17 343 Model *
Chris@17 344 LayerFactory::createEmptyModel(LayerType layerType, Model *baseModel)
Chris@17 345 {
Chris@17 346 if (layerType == TimeInstants) {
Chris@17 347 return new SparseOneDimensionalModel(baseModel->getSampleRate(), 1);
Chris@17 348 } else if (layerType == TimeValues) {
Chris@245 349 return new SparseTimeValueModel(baseModel->getSampleRate(), 1, true);
Chris@30 350 } else if (layerType == Notes) {
Chris@245 351 return new NoteModel(baseModel->getSampleRate(), 1, true);
matthiasm@621 352 } else if (layerType == FlexiNotes) {
matthiasm@621 353 return new NoteModel(baseModel->getSampleRate(), 1, true);
Chris@411 354 } else if (layerType == Regions) {
Chris@411 355 return new RegionModel(baseModel->getSampleRate(), 1, true);
Chris@35 356 } else if (layerType == Text) {
Chris@35 357 return new TextModel(baseModel->getSampleRate(), 1, true);
Chris@303 358 } else if (layerType == Image) {
Chris@303 359 return new ImageModel(baseModel->getSampleRate(), 1, true);
Chris@17 360 } else {
Chris@17 361 return 0;
Chris@17 362 }
Chris@17 363 }
Chris@17 364
Chris@53 365 int
Chris@53 366 LayerFactory::getChannel(Layer *layer)
Chris@53 367 {
Chris@53 368 if (dynamic_cast<WaveformLayer *>(layer)) {
Chris@53 369 return dynamic_cast<WaveformLayer *>(layer)->getChannel();
Chris@53 370 }
Chris@53 371 if (dynamic_cast<SpectrogramLayer *>(layer)) {
Chris@53 372 return dynamic_cast<SpectrogramLayer *>(layer)->getChannel();
Chris@53 373 }
Chris@53 374 return -1;
Chris@53 375 }
Chris@53 376
Chris@53 377 void
Chris@53 378 LayerFactory::setChannel(Layer *layer, int channel)
Chris@53 379 {
Chris@53 380 if (dynamic_cast<WaveformLayer *>(layer)) {
Chris@53 381 dynamic_cast<WaveformLayer *>(layer)->setChannel(channel);
Chris@53 382 return;
Chris@53 383 }
Chris@53 384 if (dynamic_cast<SpectrogramLayer *>(layer)) {
Chris@53 385 dynamic_cast<SpectrogramLayer *>(layer)->setChannel(channel);
Chris@53 386 return;
Chris@53 387 }
Chris@349 388 if (dynamic_cast<SpectrumLayer *>(layer)) {
Chris@349 389 dynamic_cast<SpectrumLayer *>(layer)->setChannel(channel);
Chris@349 390 return;
Chris@349 391 }
Chris@53 392 }
Chris@53 393
Chris@0 394 Layer *
Chris@53 395 LayerFactory::createLayer(LayerType type)
Chris@0 396 {
Chris@0 397 Layer *layer = 0;
Chris@0 398
Chris@0 399 switch (type) {
Chris@0 400
Chris@0 401 case Waveform:
Chris@44 402 layer = new WaveformLayer;
Chris@0 403 break;
Chris@0 404
Chris@0 405 case Spectrogram:
Chris@44 406 layer = new SpectrogramLayer;
Chris@0 407 break;
Chris@0 408
Chris@0 409 case TimeRuler:
Chris@44 410 layer = new TimeRulerLayer;
Chris@0 411 break;
Chris@0 412
Chris@0 413 case TimeInstants:
Chris@44 414 layer = new TimeInstantLayer;
Chris@0 415 break;
Chris@0 416
Chris@0 417 case TimeValues:
Chris@44 418 layer = new TimeValueLayer;
Chris@0 419 break;
Chris@0 420
Chris@30 421 case Notes:
Chris@44 422 layer = new NoteLayer;
Chris@30 423 break;
Chris@30 424
matthiasm@621 425 case FlexiNotes:
matthiasm@621 426 layer = new FlexiNoteLayer;
matthiasm@621 427 break;
matthiasm@621 428
Chris@411 429 case Regions:
Chris@411 430 layer = new RegionLayer;
Chris@411 431 break;
Chris@411 432
Chris@35 433 case Text:
Chris@44 434 layer = new TextLayer;
Chris@35 435 break;
Chris@35 436
Chris@303 437 case Image:
Chris@303 438 layer = new ImageLayer;
Chris@303 439 break;
Chris@303 440
Chris@0 441 case Colour3DPlot:
Chris@44 442 layer = new Colour3DPlotLayer;
Chris@0 443 break;
Chris@0 444
Chris@133 445 case Spectrum:
Chris@133 446 layer = new SpectrumLayer;
Chris@133 447 break;
Chris@133 448
Chris@193 449 case Slice:
Chris@193 450 layer = new SliceLayer;
Chris@193 451 break;
Chris@193 452
Chris@0 453 case MelodicRangeSpectrogram:
Chris@44 454 layer = new SpectrogramLayer(SpectrogramLayer::MelodicRange);
Chris@0 455 break;
Chris@11 456
Chris@37 457 case PeakFrequencySpectrogram:
Chris@44 458 layer = new SpectrogramLayer(SpectrogramLayer::MelodicPeaks);
Chris@37 459 break;
Chris@37 460
Chris@11 461 default: break;
Chris@0 462 }
Chris@0 463
Chris@0 464 if (!layer) {
Chris@587 465 SVDEBUG << "LayerFactory::createLayer: Unknown layer type "
Chris@585 466 << type << endl;
Chris@0 467 } else {
Chris@587 468 // SVDEBUG << "LayerFactory::createLayer: Setting object name "
Chris@585 469 // << getLayerPresentationName(type) << " on " << layer << endl;
Chris@0 470 layer->setObjectName(getLayerPresentationName(type));
Chris@326 471 setLayerDefaultProperties(type, layer);
Chris@0 472 }
Chris@0 473
Chris@0 474 return layer;
Chris@0 475 }
Chris@0 476
Chris@326 477 void
Chris@326 478 LayerFactory::setLayerDefaultProperties(LayerType type, Layer *layer)
Chris@326 479 {
Chris@587 480 // SVDEBUG << "LayerFactory::setLayerDefaultProperties: type " << type << " (name \"" << getLayerTypeName(type) << "\")" << endl;
Chris@327 481
Chris@326 482 QSettings settings;
Chris@326 483 settings.beginGroup("LayerDefaults");
Chris@326 484 QString defaults = settings.value(getLayerTypeName(type), "").toString();
Chris@326 485 if (defaults == "") return;
Chris@326 486
Chris@584 487 // std::cerr << "defaults=\"" << defaults << "\"" << std::endl;
Chris@327 488
Chris@326 489 QString xml = layer->toXmlString();
Chris@326 490 QDomDocument docOld, docNew;
Chris@326 491
Chris@326 492 if (docOld.setContent(xml, false) &&
Chris@326 493 docNew.setContent(defaults, false)) {
Chris@326 494
Chris@326 495 QXmlAttributes attrs;
Chris@326 496
Chris@326 497 QDomElement layerElt = docNew.firstChildElement("layer");
Chris@326 498 QDomNamedNodeMap attrNodes = layerElt.attributes();
Chris@326 499
Chris@326 500 for (unsigned int i = 0; i < attrNodes.length(); ++i) {
Chris@326 501 QDomAttr attr = attrNodes.item(i).toAttr();
Chris@326 502 if (attr.isNull()) continue;
Chris@336 503 // std::cerr << "append \"" << attr.name().toStdString()
Chris@584 504 // << "\" -> \"" << attr.value() << "\""
Chris@336 505 // << std::endl;
Chris@326 506 attrs.append(attr.name(), "", "", attr.value());
Chris@326 507 }
Chris@326 508
Chris@326 509 layerElt = docOld.firstChildElement("layer");
Chris@326 510 attrNodes = layerElt.attributes();
Chris@326 511 for (unsigned int i = 0; i < attrNodes.length(); ++i) {
Chris@326 512 QDomAttr attr = attrNodes.item(i).toAttr();
Chris@326 513 if (attr.isNull()) continue;
Chris@326 514 if (attrs.value(attr.name()) == "") {
Chris@336 515 // std::cerr << "append \"" << attr.name().toStdString()
Chris@584 516 // << "\" -> \"" << attr.value() << "\""
Chris@336 517 // << std::endl;
Chris@326 518 attrs.append(attr.name(), "", "", attr.value());
Chris@326 519 }
Chris@326 520 }
Chris@326 521
Chris@326 522 layer->setProperties(attrs);
Chris@326 523 }
Chris@326 524
Chris@326 525 settings.endGroup();
Chris@326 526 }
Chris@326 527
Chris@360 528 LayerFactory::LayerType
Chris@360 529 LayerFactory::getLayerTypeForClipboardContents(const Clipboard &clip)
Chris@360 530 {
Chris@360 531 const Clipboard::PointList &contents = clip.getPoints();
Chris@360 532
Chris@360 533 bool haveFrame = false;
Chris@360 534 bool haveValue = false;
Chris@360 535 bool haveDuration = false;
Chris@411 536 bool haveLevel = false;
Chris@360 537
Chris@360 538 for (Clipboard::PointList::const_iterator i = contents.begin();
Chris@360 539 i != contents.end(); ++i) {
Chris@360 540 if (i->haveFrame()) haveFrame = true;
Chris@360 541 if (i->haveValue()) haveValue = true;
Chris@360 542 if (i->haveDuration()) haveDuration = true;
Chris@411 543 if (i->haveLevel()) haveLevel = true;
Chris@360 544 }
Chris@360 545
Chris@411 546 if (haveFrame && haveValue && haveDuration && haveLevel) return Notes;
Chris@411 547 if (haveFrame && haveValue && haveDuration) return Regions;
Chris@360 548 if (haveFrame && haveValue) return TimeValues;
Chris@360 549 return TimeInstants;
Chris@360 550 }
Chris@360 551