ChangeLog 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. 2004-05-13 Sanjay Gupta <[email protected]>
  2. * GraphicsPath: Added stub for missing method CloseFigure().
  3. 2004-05-11 Ravindra <[email protected]>
  4. * AdjustableArrowCap.cs: Implemented.
  5. * CustomLineCap.cs: Implemented.
  6. 2004-05-04 Ravindra <[email protected]>
  7. * LinearGradientBrush.cs: Fixed Transform property.
  8. 2004-04-30 Ravindra <[email protected]>
  9. * LinearGradientBrush.cs: Fixed some errors.
  10. 2004-04-06 Duncan Mak <[email protected]>
  11. * GraphicsPath.cs (GraphicsPath): Filled out the missing
  12. constructors.
  13. (ConvertPoints): New helper function. Converts a Point array to a
  14. PointF array.
  15. 2004-04-05 Jordi Mas i Hernandez <[email protected]>
  16. * GraphicsPath.cs: added missing methods
  17. 2004-04-01 Duncan Mak <[email protected]>
  18. * GraphicsPath.cs (AddCurve, AddClosedCurve): Added all overloads.
  19. 2004-03-26 Ravindra <[email protected]>
  20. * WrapMode.cs: Corrected the TileFlipXY and TileFlipY values.
  21. 2004-03-23 Ravindra <[email protected]>
  22. * LinearGradientBrush.cs: Implemented public methods.
  23. 2004-03-22 Ravindra <[email protected]>
  24. * LinearGradientBrush.cs: Implemented constructors and properties.
  25. * PathGradientBrush.cs: Fixed a constructor and few coding
  26. style fixes.
  27. 2004-03-18 Ravindra <[email protected]>
  28. * HatchBrush.cs: Fixed Clone method.
  29. * PathGradientBrush.cs: Fixed Clone method and few minor
  30. fixes.
  31. 2004-03-17 Ravindra <[email protected]>
  32. * Blend.cs: Fixed.
  33. * ColorBlend.cs: Fixed.
  34. 2004-03-06 Ravindra <[email protected]>
  35. * PathGradientBrush.cs: Implemented methods.
  36. 2004-03-06 Ravindra <[email protected]>
  37. * PathGradientBrush.cs: Implemented constructors and properties.
  38. 2004-03-04 Duncan Mak <[email protected]>
  39. * GraphicsPath.cs (PathCount): Corrected. The name should be PointCount.
  40. (AddPath): Implemented.
  41. 2004-02-27 Ravindra <[email protected]>
  42. * WrapMode.cs: Corrected enum values. Tile should be zero
  43. and Clamp should be four.
  44. 2004-02-11 Ravindra <[email protected]>
  45. * Matrix.cs: Added status checks using
  46. GDIPlus.CheckStatus(Status) method.
  47. 2004-02-07 Andreas Nahr <[email protected]>
  48. * GraphicsPathIterator.cs: Fixed signature, added TODOs
  49. * Matrix.cs: Removed additional method
  50. 2004-02-06 Ravindra <[email protected]>
  51. * HatchBrush.cs: Using CheckStatus method instead of
  52. GetException.
  53. 2004-02-05 Ravindra <[email protected]>
  54. * HatchBrush.cs: Implemented.
  55. * HatchStyle.cs: Corrected enum values. Changed file format
  56. from DOS to UNIX.
  57. 2004-01-30 Duncan Mak <[email protected]>
  58. * GraphicsPath.cs (AddPie): Corrected arguments sent to
  59. P/Invoke. This fixes the strange NaNs we were getting when we
  60. tried to draw Paths with a Pie figure.
  61. 2004-01-24 Duncan Mak <[email protected]>
  62. * GraphicsPath.cs (AddEllipse): Added.
  63. 2004-01-19 Duncan Mak <[email protected]>
  64. * GraphicsPath.cs: Implemented. Still needs testing, though.
  65. Particular the PathPoints property, I ran into a P/Invoke problem,
  66. I need to first fix that before I can go on with the rest of the testing.
  67. 2004-01-13 Ravindra <[email protected]>
  68. * Matrix.cs: Made the Matrix(IntPtr) constructor internal.
  69. Because default access is private, that makes it unusable
  70. by other classes.
  71. 2004-01-11 Duncan Mak <[email protected]>
  72. * Matrix.cs (Matrix): Removed reference to GpRect/GpRectF.
  73. 2004-01-10 Ravindra <[email protected]>
  74. * All Enums: Made serializable.
  75. * GraphicsPathIterator.cs: Implements IDisposable.
  76. * GraphicsState.cs: Inherits MarshalByRefObject.
  77. 2003-12-25 Duncan Mak <[email protected]>
  78. * Matrix.cs (ToString): Cache the elements inside a local variable
  79. to avoid calling the Elements property repeatedly.
  80. 2003-12-04 Gonzalo Paniagua Javier <[email protected]>
  81. * Blend.cs: fix array sizes in the constructors. Closes bug #51564.
  82. System.Web moves in mysterious ways.
  83. 2003-11-22 Duncan Mak <[email protected]>
  84. * Matrix.cs: Rewrote to use GDI+ implementation, doing all the
  85. math in unmanaged code instead of doing it in C#.
  86. 2003-11-04 Miguel de Icaza <[email protected]>
  87. * GraphicsPathIterator.cs: Do not make this protected.
  88. 2003-11-13 Andreas Nahr <[email protected]>
  89. * QualityMode.cs: Fixed typo
  90. * InterpolationMode.cs: Fixed typo
  91. * RegionData.cs: Fixed signatures, partially implemented
  92. * PathGradientBrush.cs: Fixed signatures
  93. * PathData.cs: Fixed signature, implemented
  94. * LinearGradientBrush.cs: Added missing MonoTODOs, fixed typo
  95. * GraphicsContainer.cs: Added private constructor
  96. * CustomLineCap.cs: Fixed typos, fixed inheritance, removed unneeded member
  97. 2003-11-11 Ben Maurer <[email protected]>
  98. * ColorBlend.cs (Positions): another one.
  99. 2003-11-11 Ben Maurer <[email protected]>
  100. * Blend.cs (Positions): recursion in prop.
  101. 2003-10-24 Miguel de Icaza <[email protected]>
  102. * GraphicsPath.cs: Stub some more.
  103. 2003-10-12 Alexandre Pigolkine <[email protected]>
  104. * GraphicsState.cs internal member added
  105. 2003-06-26 Alexandre Pigolkine <[email protected]>
  106. * GraphicsState.cs internal member added
  107. 2003-04-26 Alexandre Pigolkine <[email protected]>
  108. * LinearGradientBrush.cs some implementation added
  109. 2003-3-15 DennisHayes <[email protected]>
  110. * Stubbed and somewhat implmented
  111. * CustomLineCap.cs
  112. * GraphicsContainer.cs
  113. * GraphicsPath.cs
  114. * GraphicsPathIterator.cs
  115. * GraphicsState.cs
  116. * HatchBrush.cs
  117. * LinearGradientBrush.cs
  118. 2003-3-5 DennisHayes <[email protected]>
  119. * Added values for enums
  120. * Stubbed and somewhat implmented Blend, ColorBlend, CustomLineCap
  121. 2003-3-2 DennisHayes <[email protected]>
  122. * Created changelog
  123. * updated copyrights to 2002/3
  124. * changed namespace from System.Drawing, System.Drawing.Drawing2d to System.Drawing.Drawing2D
  125. * cosmetic improvments
  126. 2002-10-13 DennisHayes <[email protected]>
  127. * Changed namespace from *2d to *2D
  128. * Changed comment header from system.Drawing to System.Drawing.Drawing2D
  129. 2002-9-2 DennisHayes <[email protected]>
  130. * AdjustableArrowCap.cs
  131. * Blend.cs
  132. * ColorBlend.cs
  133. * CombineMode.cs
  134. * CompostingMode.cs
  135. * CompostingQuality.cs
  136. * CoordinateSpace.cs
  137. * CustomLineCap.cs
  138. * DashCap.cs
  139. * DashStyle.cs
  140. * FillMode.cs
  141. * FlushIntention.cs
  142. * GraphicsContainer.cs
  143. * GraphicsPathIterator.cs
  144. * GraphicsState.cs
  145. * HatchBrush.cs
  146. * HatchStyle.cs
  147. * InterpolationMode.cs
  148. * LinearGradientBrush.cs
  149. * LinearGradientMode.cs
  150. * LineCap.cs
  151. * LineJoin.cs
  152. * MatrixOrder.cs
  153. * PathData.cs
  154. * PathGradientBrush.cs
  155. * PathPointType.cs
  156. * PenAligment.cs
  157. * PenType.cs
  158. * PixelOffsetMode.cs
  159. * QualityMode.cs
  160. * RegionData.cs
  161. * SmoothingMode.cs
  162. * WarpMode.cs
  163. * WrapMode.cs
  164. * Added null classes for most/all classes, Many stubs, and some implmentation
  165. 2002-9-2 DennisHayes <[email protected]>
  166. * Matrix.cs
  167. * Added stubs, implmentation
  168. 2002-9-2 DennisHayes <[email protected]>
  169. * GraphicsPath.cs
  170. * added stub needed for system.windows.forms
  171. 2002-01-06 Ravi Pratap <[email protected]>
  172. * ChangeLog : Add.
  173. * Matrix.cs : MonoTODO everywhere.
  174. * TODOAttribute.cs : Add here too.