Author: spouliot
Date: 2007-06-04 20:59:44 -0400 (Mon, 04 Jun 2007)
New Revision: 78605

Added:
   trunk/olive/class/agclr/System.Windows.Media/EllipseGeometry.cs
   trunk/olive/class/agclr/System.Windows.Media/GeometryCollection.cs
   trunk/olive/class/agclr/System.Windows.Media/GeometryGroup.cs
   trunk/olive/class/agclr/System.Windows.Media/LineGeometry.cs
   trunk/olive/class/agclr/System.Windows.Media/PathFigure.cs
   trunk/olive/class/agclr/System.Windows.Media/PathFigureCollection.cs
   trunk/olive/class/agclr/System.Windows.Media/PathGeometry.cs
   trunk/olive/class/agclr/System.Windows.Media/PathSegmentCollection.cs
Modified:
   trunk/olive/class/agclr/System.Windows.Media/ChangeLog
Log:
        * EllipseGeometry.cs: New.
        * GeometryCollection.cs: New.
        * GeometryGroup.cs: New.
        * LineGeometry.cs: New.
        * PathFigureCollection.cs: New.
        * PathFigure.cs: New.
        * PathGeometry.cs: New.
        * PathSegmentCollection.cs: New.

2007-06-03  Sebastien Pouliot  <[EMAIL PROTECTED]> 



Modified: trunk/olive/class/agclr/System.Windows.Media/ChangeLog
===================================================================
--- trunk/olive/class/agclr/System.Windows.Media/ChangeLog      2007-06-05 
00:44:39 UTC (rev 78604)
+++ trunk/olive/class/agclr/System.Windows.Media/ChangeLog      2007-06-05 
00:59:44 UTC (rev 78605)
@@ -1,5 +1,16 @@
 2007-06-03  Sebastien Pouliot  <[EMAIL PROTECTED]> 
 
+       * EllipseGeometry.cs: New.
+       * GeometryCollection.cs: New.
+       * GeometryGroup.cs: New.
+       * LineGeometry.cs: New.
+       * PathFigureCollection.cs: New.
+       * PathFigure.cs: New.
+       * PathGeometry.cs: New.
+       * PathSegmentCollection.cs: New.
+
+2007-06-03  Sebastien Pouliot  <[EMAIL PROTECTED]> 
+
        * BrushMappingMode.cs: New.
        * Color.cs: New (incomplete)
        * ColorInterpretationMode.cs: New.

Added: trunk/olive/class/agclr/System.Windows.Media/EllipseGeometry.cs
===================================================================
--- trunk/olive/class/agclr/System.Windows.Media/EllipseGeometry.cs     
2007-06-05 00:44:39 UTC (rev 78604)
+++ trunk/olive/class/agclr/System.Windows.Media/EllipseGeometry.cs     
2007-06-05 00:59:44 UTC (rev 78605)
@@ -0,0 +1,56 @@
+//
+// System.Windows.Media.EllipseGeometry class
+//
+// Authors:
+//     Sebastien Pouliot  <[EMAIL PROTECTED]>
+//
+// Copyright (C) 2007 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+namespace System.Windows.Media {
+
+       public class EllipseGeometry : Geometry {
+
+               public static readonly DependencyProperty CenterProperty = 
DependencyProperty.Register ("Center", typeof (Point), typeof 
(EllipseGeometry));
+               public static readonly DependencyProperty RadiusXProperty = 
DependencyProperty.Register ("RadiusX", typeof (double), typeof 
(EllipseGeometry));
+               public static readonly DependencyProperty RadiusYProperty = 
DependencyProperty.Register ("RadiusY", typeof (double), typeof 
(EllipseGeometry));
+
+               public EllipseGeometry ()
+               {
+               }
+
+               public Point Center {
+                       get { return (Point) GetValue (CenterProperty); }
+                       set { SetValue (CenterProperty, value); }
+               }
+
+               public double RadiusX {
+                       get { return (double) GetValue (RadiusXProperty); }
+                       set { SetValue (RadiusXProperty, value); }
+               }
+
+               public double RadiusY {
+                       get { return (double) GetValue (RadiusYProperty); }
+                       set { SetValue (RadiusYProperty, value); }
+               }
+       }
+}

Added: trunk/olive/class/agclr/System.Windows.Media/GeometryCollection.cs
===================================================================
--- trunk/olive/class/agclr/System.Windows.Media/GeometryCollection.cs  
2007-06-05 00:44:39 UTC (rev 78604)
+++ trunk/olive/class/agclr/System.Windows.Media/GeometryCollection.cs  
2007-06-05 00:59:44 UTC (rev 78605)
@@ -0,0 +1,35 @@
+//
+// System.Windows.Media.GeometryCollection class
+//
+// Authors:
+//     Sebastien Pouliot  <[EMAIL PROTECTED]>
+//
+// Copyright (C) 2007 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using MS.Internal;
+
+namespace System.Windows.Media {
+
+       public class GeometryCollection : Collection<Geometry> {
+       }
+}

Added: trunk/olive/class/agclr/System.Windows.Media/GeometryGroup.cs
===================================================================
--- trunk/olive/class/agclr/System.Windows.Media/GeometryGroup.cs       
2007-06-05 00:44:39 UTC (rev 78604)
+++ trunk/olive/class/agclr/System.Windows.Media/GeometryGroup.cs       
2007-06-05 00:59:44 UTC (rev 78605)
@@ -0,0 +1,44 @@
+//
+// System.Windows.Media.GeometryGroup class
+//
+// Authors:
+//     Sebastien Pouliot  <[EMAIL PROTECTED]>
+//
+// Copyright (C) 2007 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+namespace System.Windows.Media {
+
+       public class GeometryGroup : Geometry {
+
+               public static readonly DependencyProperty ChildrenProperty = 
DependencyProperty.Register ("Children", typeof (GeometryCollection), typeof 
(GeometryGroup));
+
+               public GeometryGroup ()
+               {
+               }
+
+               public GeometryCollection Children {
+                       get { return (GeometryCollection) GetValue 
(ChildrenProperty); }
+                       set { SetValue (ChildrenProperty, value); }
+               }
+       }
+}

Added: trunk/olive/class/agclr/System.Windows.Media/LineGeometry.cs
===================================================================
--- trunk/olive/class/agclr/System.Windows.Media/LineGeometry.cs        
2007-06-05 00:44:39 UTC (rev 78604)
+++ trunk/olive/class/agclr/System.Windows.Media/LineGeometry.cs        
2007-06-05 00:59:44 UTC (rev 78605)
@@ -0,0 +1,50 @@
+//
+// System.Windows.Media.LineGeometry class
+//
+// Authors:
+//     Sebastien Pouliot  <[EMAIL PROTECTED]>
+//
+// Copyright (C) 2007 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+namespace System.Windows.Media {
+
+       public class LineGeometry : Geometry {
+
+               public static readonly DependencyProperty EndPointProperty = 
DependencyProperty.Register ("EndPoint", typeof (Point), typeof (LineGeometry));
+               public static readonly DependencyProperty StartPointProperty = 
DependencyProperty.Register ("StartPoint", typeof (Point), typeof 
(LineGeometry));
+
+               public LineGeometry ()
+               {
+               }
+
+               public Point EndPoint {
+                       get { return (Point) GetValue (EndPointProperty); }
+                       set { SetValue (EndPointProperty, value); }
+               }
+
+               public Point StartPoint {
+                       get { return (Point) GetValue (StartPointProperty); }
+                       set { SetValue (StartPointProperty, value); }
+               }
+       }
+}

Added: trunk/olive/class/agclr/System.Windows.Media/PathFigure.cs
===================================================================
--- trunk/olive/class/agclr/System.Windows.Media/PathFigure.cs  2007-06-05 
00:44:39 UTC (rev 78604)
+++ trunk/olive/class/agclr/System.Windows.Media/PathFigure.cs  2007-06-05 
00:59:44 UTC (rev 78605)
@@ -0,0 +1,62 @@
+//
+// System.Windows.Media.PathFigure class
+//
+// Authors:
+//     Sebastien Pouliot  <[EMAIL PROTECTED]>
+//
+// Copyright (C) 2007 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+namespace System.Windows.Media {
+
+       public class PathFigure : DependencyObject {
+
+               public static readonly DependencyProperty IsClosedProperty = 
DependencyProperty.Register ("IsClosed", typeof (bool), typeof (PathFigure));
+               public static readonly DependencyProperty IsFilledProperty = 
DependencyProperty.Register ("IsFilled", typeof (bool), typeof (PathFigure));
+               public static readonly DependencyProperty SegmentsProperty = 
DependencyProperty.Register ("Segments", typeof (PathSegmentCollection), typeof 
(PathFigure));
+               public static readonly DependencyProperty StartPointProperty = 
DependencyProperty.Register ("StartPoint", typeof (Point), typeof (PathFigure));
+
+               public PathFigure ()
+               {
+               }
+
+               public bool IsClosed {
+                       get { return (bool) GetValue (IsClosedProperty); }
+                       set { SetValue (IsClosedProperty, value); }
+               }
+                       
+               public bool IsFilled {
+                       get { return (bool) GetValue (IsFilledProperty); }
+                       set { SetValue (IsFilledProperty, value); }
+               }
+
+               public PathSegmentCollection Segments {
+                       get { return (PathSegmentCollection) GetValue 
(SegmentsProperty); }
+                       set { SetValue (SegmentsProperty, value); }
+               }
+
+               public Point StartPoint {
+                       get { return (Point) GetValue (StartPointProperty); }
+                       set { SetValue (StartPointProperty, value); }
+               }
+       }
+}

Added: trunk/olive/class/agclr/System.Windows.Media/PathFigureCollection.cs
===================================================================
--- trunk/olive/class/agclr/System.Windows.Media/PathFigureCollection.cs        
2007-06-05 00:44:39 UTC (rev 78604)
+++ trunk/olive/class/agclr/System.Windows.Media/PathFigureCollection.cs        
2007-06-05 00:59:44 UTC (rev 78605)
@@ -0,0 +1,35 @@
+//
+// System.Windows.Media.PathFigureCollection class
+//
+// Authors:
+//     Sebastien Pouliot  <[EMAIL PROTECTED]>
+//
+// Copyright (C) 2007 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using MS.Internal;
+
+namespace System.Windows.Media {
+
+       public class PathFigureCollection : Collection<PathFigure> {
+       }
+}

Added: trunk/olive/class/agclr/System.Windows.Media/PathGeometry.cs
===================================================================
--- trunk/olive/class/agclr/System.Windows.Media/PathGeometry.cs        
2007-06-05 00:44:39 UTC (rev 78604)
+++ trunk/olive/class/agclr/System.Windows.Media/PathGeometry.cs        
2007-06-05 00:59:44 UTC (rev 78605)
@@ -0,0 +1,44 @@
+//
+// System.Windows.Media.PathGeometry class
+//
+// Authors:
+//     Sebastien Pouliot  <[EMAIL PROTECTED]>
+//
+// Copyright (C) 2007 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+namespace System.Windows.Media {
+
+       public class PathGeometry : Geometry {
+
+               public static readonly DependencyProperty FiguresProperty = 
DependencyProperty.Register ("Figures", typeof (PathFigureCollection), typeof 
(PathGeometry));
+
+               public PathGeometry ()
+               {
+               }
+
+               public PathFigureCollection Figures {
+                       get { return (PathFigureCollection) GetValue 
(FiguresProperty); }
+                       set { SetValue (FiguresProperty, value); }
+               }
+       }
+}

Added: trunk/olive/class/agclr/System.Windows.Media/PathSegmentCollection.cs
===================================================================
--- trunk/olive/class/agclr/System.Windows.Media/PathSegmentCollection.cs       
2007-06-05 00:44:39 UTC (rev 78604)
+++ trunk/olive/class/agclr/System.Windows.Media/PathSegmentCollection.cs       
2007-06-05 00:59:44 UTC (rev 78605)
@@ -0,0 +1,35 @@
+//
+// System.Windows.Media.PathSegmentCollection class
+//
+// Authors:
+//     Sebastien Pouliot  <[EMAIL PROTECTED]>
+//
+// Copyright (C) 2007 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using MS.Internal;
+
+namespace System.Windows.Media {
+
+       public class PathSegmentCollection : Collection<PathSegment> {
+       }
+}

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to