ChangeLog 8.5 KB

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