ChangeLog 8.3 KB

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