From: Jeff R. <jef...@us...> - 2005-11-19 03:13:37
|
Update of /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Basic Data Types and Interfaces In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12283/src/SharpVectorBindings/SharpVectors/Dom/Svg/Basic Data Types and Interfaces Modified Files: ISvgAngle.cs ISvgAnimatedEnumeration.cs ISvgAnimatedInteger.cs ISvgLangSpace.cs ISvgRect.cs ISvgZoomAndPan.cs Log Message: Library wide changes for scripting support and automated re-rendering Index: ISvgZoomAndPan.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Basic Data Types and Interfaces/ISvgZoomAndPan.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgZoomAndPan.cs 9 Aug 2003 22:50:15 -0000 1.1 +++ ISvgZoomAndPan.cs 19 Nov 2005 03:13:22 -0000 1.2 @@ -7,6 +7,6 @@ /// <completed>100</completed> public interface ISvgZoomAndPan { - SvgZoomAndPanType ZoomAndPan{get;} + SvgZoomAndPanType ZoomAndPan{get;set;} } } \ No newline at end of file Index: ISvgAnimatedInteger.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Basic Data Types and Interfaces/ISvgAnimatedInteger.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgAnimatedInteger.cs 9 Aug 2003 22:50:14 -0000 1.1 +++ ISvgAnimatedInteger.cs 19 Nov 2005 03:13:22 -0000 1.2 @@ -4,7 +4,7 @@ { public interface ISvgAnimatedInteger { - long BaseVal{get;} + long BaseVal{get;set;} long AnimVal{get;} } } Index: ISvgRect.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Basic Data Types and Interfaces/ISvgRect.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgRect.cs 9 Aug 2003 22:50:14 -0000 1.1 +++ ISvgRect.cs 19 Nov 2005 03:13:22 -0000 1.2 @@ -8,9 +8,9 @@ /// <completed>100</completed> public interface ISvgRect { - double X { get; } - double Y { get; } - double Width { get; } - double Height { get; } + double X { get; set; } + double Y { get; set; } + double Width { get; set; } + double Height { get; set; } } } Index: ISvgLangSpace.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Basic Data Types and Interfaces/ISvgLangSpace.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgLangSpace.cs 9 Aug 2003 22:50:14 -0000 1.1 +++ ISvgLangSpace.cs 19 Nov 2005 03:13:22 -0000 1.2 @@ -8,7 +8,7 @@ /// <completed>100</completed> public interface ISvgLangSpace { - string XmlLang{get;} - string XmlSpace{get;} + string XmlLang{get;set;} + string XmlSpace{get;set;} } } Index: ISvgAngle.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Basic Data Types and Interfaces/ISvgAngle.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgAngle.cs 9 Aug 2003 22:50:13 -0000 1.1 +++ ISvgAngle.cs 19 Nov 2005 03:13:22 -0000 1.2 @@ -20,7 +20,7 @@ /// and valueAsString to be updated automatically to reflect /// this setting. /// </summary> - double Value{get;} + double Value{get;set;} /// <summary> /// The angle value as a floating point value, in the units @@ -28,7 +28,7 @@ /// value and valueAsString to be updated automatically to /// reflect this setting. /// </summary> - double ValueInSpecifiedUnits{get;} + double ValueInSpecifiedUnits{get;set;} /// <summary> /// The angle value as a string value, in the units expressed @@ -36,7 +36,7 @@ /// valueInSpecifiedUnits to be updated automatically to /// reflect this setting. /// </summary> - string ValueAsString{get;} + string ValueAsString{get;set;} /// <summary> /// Reset the value as a number with an associated unitType, Index: ISvgAnimatedEnumeration.cs =================================================================== RCS file: /cvsroot/svgdomcsharp/SharpVectorGraphics/src/SharpVectorBindings/SharpVectors/Dom/Svg/Basic Data Types and Interfaces/ISvgAnimatedEnumeration.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ISvgAnimatedEnumeration.cs 9 Aug 2003 22:50:13 -0000 1.1 +++ ISvgAnimatedEnumeration.cs 19 Nov 2005 03:13:22 -0000 1.2 @@ -15,7 +15,7 @@ /// applying any animations. Inheriting Class should throw /// an excpetion when the value is read only /// </summary> - Enum BaseVal{get;set;} + ushort BaseVal{get;set;} /// <summary> /// If the given attribute or property is being animated, @@ -24,6 +24,6 @@ /// currently being animated, contains the same value as /// 'BaseVal'. /// </summary> - Enum AnimVal{get;} + ushort AnimVal{get;} } } \ No newline at end of file |