ChangeLog 15 KB

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