ChangeLog 15 KB

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