ChangeLog 4.5 KB

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