ChangeLog 10 KB

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