ChangeLog 17 KB

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