ChangeLog 14 KB

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