ChangeLog 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. 2004-03-06 Ravindra <[email protected]>
  2. * PathGradientBrush.cs: Implemented constructors and properties.
  3. 2004-03-04 Duncan Mak <[email protected]>
  4. * GraphicsPath.cs (PathCount): Corrected. The name should be PointCount.
  5. (AddPath): Implemented.
  6. 2004-02-27 Ravindra <[email protected]>
  7. * WrapMode.cs: Corrected enum values. Tile should be zero
  8. and Clamp should be four.
  9. 2004-02-11 Ravindra <[email protected]>
  10. * Matrix.cs: Added status checks using
  11. GDIPlus.CheckStatus(Status) method.
  12. 2004-02-07 Andreas Nahr <[email protected]>
  13. * GraphicsPathIterator.cs: Fixed signature, added TODOs
  14. * Matrix.cs: Removed additional method
  15. 2004-02-06 Ravindra <[email protected]>
  16. * HatchBrush.cs: Using CheckStatus method instead of
  17. GetException.
  18. 2004-02-05 Ravindra <[email protected]>
  19. * HatchBrush.cs: Implemented.
  20. * HatchStyle.cs: Corrected enum values. Changed file format
  21. from DOS to UNIX.
  22. 2004-01-30 Duncan Mak <[email protected]>
  23. * GraphicsPath.cs (AddPie): Corrected arguments sent to
  24. P/Invoke. This fixes the strange NaNs we were getting when we
  25. tried to draw Paths with a Pie figure.
  26. 2004-01-24 Duncan Mak <[email protected]>
  27. * GraphicsPath.cs (AddEllipse): Added.
  28. 2004-01-19 Duncan Mak <[email protected]>
  29. * GraphicsPath.cs: Implemented. Still needs testing, though.
  30. Particular the PathPoints property, I ran into a P/Invoke problem,
  31. I need to first fix that before I can go on with the rest of the testing.
  32. 2004-01-13 Ravindra <[email protected]>
  33. * Matrix.cs: Made the Matrix(IntPtr) constructor internal.
  34. Because default access is private, that makes it unusable
  35. by other classes.
  36. 2004-01-11 Duncan Mak <[email protected]>
  37. * Matrix.cs (Matrix): Removed reference to GpRect/GpRectF.
  38. 2004-01-10 Ravindra <[email protected]>
  39. * All Enums: Made serializable.
  40. * GraphicsPathIterator.cs: Implements IDisposable.
  41. * GraphicsState.cs: Inherits MarshalByRefObject.
  42. 2003-12-25 Duncan Mak <[email protected]>
  43. * Matrix.cs (ToString): Cache the elements inside a local variable
  44. to avoid calling the Elements property repeatedly.
  45. 2003-12-04 Gonzalo Paniagua Javier <[email protected]>
  46. * Blend.cs: fix array sizes in the constructors. Closes bug #51564.
  47. System.Web moves in mysterious ways.
  48. 2003-11-22 Duncan Mak <[email protected]>
  49. * Matrix.cs: Rewrote to use GDI+ implementation, doing all the
  50. math in unmanaged code instead of doing it in C#.
  51. 2003-11-04 Miguel de Icaza <[email protected]>
  52. * GraphicsPathIterator.cs: Do not make this protected.
  53. 2003-11-13 Andreas Nahr <[email protected]>
  54. * QualityMode.cs: Fixed typo
  55. * InterpolationMode.cs: Fixed typo
  56. * RegionData.cs: Fixed signatures, partially implemented
  57. * PathGradientBrush.cs: Fixed signatures
  58. * PathData.cs: Fixed signature, implemented
  59. * LinearGradientBrush.cs: Added missing MonoTODOs, fixed typo
  60. * GraphicsContainer.cs: Added private constructor
  61. * CustomLineCap.cs: Fixed typos, fixed inheritance, removed unneeded member
  62. 2003-11-11 Ben Maurer <[email protected]>
  63. * ColorBlend.cs (Positions): another one.
  64. 2003-11-11 Ben Maurer <[email protected]>
  65. * Blend.cs (Positions): recursion in prop.
  66. 2003-10-24 Miguel de Icaza <[email protected]>
  67. * GraphicsPath.cs: Stub some more.
  68. 2003-10-12 Alexandre Pigolkine <[email protected]>
  69. * GraphicsState.cs internal member added
  70. 2003-06-26 Alexandre Pigolkine <[email protected]>
  71. * GraphicsState.cs internal member added
  72. 2003-04-26 Alexandre Pigolkine <[email protected]>
  73. * LinearGradientBrush.cs some implementation added
  74. 2003-3-15 DennisHayes <[email protected]>
  75. * Stubbed and somewhat implmented
  76. * CustomLineCap.cs
  77. * GraphicsContainer.cs
  78. * GraphicsPath.cs
  79. * GraphicsPathIterator.cs
  80. * GraphicsState.cs
  81. * HatchBrush.cs
  82. * LinearGradientBrush.cs
  83. 2003-3-5 DennisHayes <[email protected]>
  84. * Added values for enums
  85. * Stubbed and somewhat implmented Blend, ColorBlend, CustomLineCap
  86. 2003-3-2 DennisHayes <[email protected]>
  87. * Created changelog
  88. * updated copyrights to 2002/3
  89. * changed namespace from System.Drawing, System.Drawing.Drawing2d to System.Drawing.Drawing2D
  90. * cosmetic improvments
  91. 2002-10-13 DennisHayes <[email protected]>
  92. * Changed namespace from *2d to *2D
  93. * Changed comment header from system.Drawing to System.Drawing.Drawing2D
  94. 2002-9-2 DennisHayes <[email protected]>
  95. * AdjustableArrowCap.cs
  96. * Blend.cs
  97. * ColorBlend.cs
  98. * CombineMode.cs
  99. * CompostingMode.cs
  100. * CompostingQuality.cs
  101. * CoordinateSpace.cs
  102. * CustomLineCap.cs
  103. * DashCap.cs
  104. * DashStyle.cs
  105. * FillMode.cs
  106. * FlushIntention.cs
  107. * GraphicsContainer.cs
  108. * GraphicsPathIterator.cs
  109. * GraphicsState.cs
  110. * HatchBrush.cs
  111. * HatchStyle.cs
  112. * InterpolationMode.cs
  113. * LinearGradientBrush.cs
  114. * LinearGradientMode.cs
  115. * LineCap.cs
  116. * LineJoin.cs
  117. * MatrixOrder.cs
  118. * PathData.cs
  119. * PathGradientBrush.cs
  120. * PathPointType.cs
  121. * PenAligment.cs
  122. * PenType.cs
  123. * PixelOffsetMode.cs
  124. * QualityMode.cs
  125. * RegionData.cs
  126. * SmoothingMode.cs
  127. * WarpMode.cs
  128. * WrapMode.cs
  129. * Added null classes for most/all classes, Many stubs, and some implmentation
  130. 2002-9-2 DennisHayes <[email protected]>
  131. * Matrix.cs
  132. * Added stubs, implmentation
  133. 2002-9-2 DennisHayes <[email protected]>
  134. * GraphicsPath.cs
  135. * added stub needed for system.windows.forms
  136. 2002-01-06 Ravi Pratap <[email protected]>
  137. * ChangeLog : Add.
  138. * Matrix.cs : MonoTODO everywhere.
  139. * TODOAttribute.cs : Add here too.