ChangeLog 8.7 KB

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