ChangeLog 10 KB

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