ChangeLog 21 KB

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