1.1 --- a/xml.cpp Sat Mar 31 09:28:27 2007 +0000
1.2 +++ b/xml.cpp Sat Mar 31 09:28:30 2007 +0000
1.3 @@ -94,6 +94,11 @@
1.4 col.setNamedColor(atts.value("backgroundColor"));
1.5 mc->getScene()->setBackgroundBrush(col);
1.6 }
1.7 + if (!atts.value( "selectionColor").isEmpty() )
1.8 + {
1.9 + col.setNamedColor(atts.value("selectionColor"));
1.10 + me->setSelectionColor(col);
1.11 + }
1.12 if (!atts.value( "linkColorHint").isEmpty() )
1.13 {
1.14 if (atts.value("linkColorHint")=="HeadingColor")
1.15 @@ -396,7 +401,7 @@
1.16 if (!a.value( "scrolled").isEmpty() )
1.17 lastBranch->toggleScroll();
1.18 if (!a.value( "frameType").isEmpty() )
1.19 - lastBranch->setFrameType (a.value("frameType"));
1.20 + lastOO->setFrameType (a.value("frameType")); //Compatibility 1.8.1
1.21
1.22 if (!a.value( "incImgV").isEmpty() )
1.23 {
1.24 @@ -421,6 +426,10 @@
1.25 {
1.26 if (!a.value( "frameType").isEmpty() )
1.27 lastOO->setFrameType (a.value("frameType"));
1.28 + if (!a.value( "penColor").isEmpty() )
1.29 + lastOO->setFramePenColor (a.value("penColor"));
1.30 + if (!a.value( "brushColor").isEmpty() )
1.31 + lastOO->setFrameBrushColor (a.value("brushColor"));
1.32 }
1.33 return true;
1.34 }