ChangeLog 17 KB

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