diff layer/TimeRulerLayer.cpp @ 11:2d5005f2b3d9

* Rework handling of layer properties in file I/O -- we now get the individual layers to load and save them rather than doing it via generic property lists in the base class, so as to ensure we read and write meaningful values rather than generic int values requiring conversion.
author Chris Cannam
date Thu, 19 Jan 2006 12:54:38 +0000
parents 8f5b812baaee
children ea6fe8cfcdd5
line wrap: on
line diff
--- a/layer/TimeRulerLayer.cpp	Tue Jan 17 17:45:55 2006 +0000
+++ b/layer/TimeRulerLayer.cpp	Thu Jan 19 12:54:38 2006 +0000
@@ -288,6 +288,18 @@
 			      QString(" colour=\"%1\"").arg(encodeColour(m_colour)));
 }
 
+void
+TimeRulerLayer::setProperties(const QXmlAttributes &attributes)
+{
+    QString colourSpec = attributes.value("colour");
+    if (colourSpec != "") {
+	QColor colour(colourSpec);
+	if (colour.isValid()) {
+	    setBaseColour(QColor(colourSpec));
+	}
+    }
+}
+
 
 #ifdef INCLUDE_MOCFILES
 #include "TimeRulerLayer.moc.cpp"