ChangeLog 12 KB

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