In Test/System.Drawing.Design:
authorJordi Mas i Hernandez <jordi@mono-cvs.ximian.com>
Mon, 5 Dec 2005 18:43:07 +0000 (18:43 -0000)
committerJordi Mas i Hernandez <jordi@mono-cvs.ximian.com>
Mon, 5 Dec 2005 18:43:07 +0000 (18:43 -0000)
commit4421bc764ee35cb557fd7a1178254860428a68a7
treebd79886feade653d02eefb3d26c4cd742f8ad133
parentdd4cc5d40ea990bb30f4078d915a80f9bf4fc044
In Test/System.Drawing.Design:
2005-12-05 Jordi Mas i Hernandez <jordimash@gmail.com>

* TestToolboxItem.cs: New unit test

In Test/System.Drawing:
2005-12-05 Jordi Mas i Hernandez <jordimash@gmail.com>

* TestPoint.cs: Test new methods for .Net 2.0
* TestPointF.cs Test new methods for .Net 2.0
* ColorConverter.cs: Fixes for .Net 2.0
* TestSizeF.cs: Test new methods for .Net 2.0
* TestSize.cs: Test new methods for .Net 2.0

In System.Drawing.Design:
2005-12-05 Jordi Mas i Hernandez <jordimash@gmail.com>

* ToolboxItem.cs: Add new methods and properties for .Net and
  also moved to an internal properties hashtable implementation

* IToolboxItemProvider.cs: New .Net 2.0 interface

In .:
2005-12-05 Jordi Mas i Hernandez <jordimash@gmail.com>

* MetaHeader.cs: Classes need to specify StructLayout attribute
* EncoderParameter.cs: Classes need to specify StructLayout attribute
* ImageAttributes.cs: Classes need to specify StructLayout attribute
* WmfPlaceableFileHeader.cs: Classes need to specify StructLayout attribute
* MetafileHeader.cs: Classes need to specify StructLayout attribute

In System.Drawing:
2005-12-05 Jordi Mas i Hernandez <jordimash@gmail.com>

* gdipFunctions.cs: DllExports need it to implement
  new Graphics.CopyFromScreen .Net 2.0 methods
* IDeviceContext.cs: New .Net 2.0 interface
* Color.cs: Fixes for new .Net 2.0 KnowColors
* PointF.cs: New .Net 2.0 Add/Subtract methods
* gdipStructs.cs: Structs need it for Graphics.CopyFromScreen
* SystemBrushes.cs: New standard SystemBrushes for .Net 2.0
* SizeF.cs: New .Net 2.0 Add/Subtract methods
* FontConverter.cs: New .Net 2.0 fixes
* SystemColors.cs: New standard SystemColors for .Net 2.0
* SizeFConverter.cs: New .Net 2.0 class (based on SizeConverter)
* CharacterRange.cs: : New .Net 2.0 methods
* Size.cs: New .Net 2.0 Add/Subtract methods
* SystemPens.cs: New standard SystemPens for .Net 2.0
* Bitmap.cs: New .Net 2.0 methods
* Region.cs: New .Net 2.0 methods
* Brush.cs: New .Net 2.0 constructor
* Icon.cs: New .Net 2.0 Constructors and methods
* Point.cs: New .Net 2.0 Add/Subtract methods
* BufferedGraphicsManager.cs: New .Net 2.0 class
* Graphics.cs: New methods for .Net 2.0 and fixes
* BufferedGraphics.cs: New .Net 2.0 class
* Font.cs:  New .Net 2.0 properties
* Image.cs: New .Net 2.0 tag property
* KnownColor.cs: New .Net 2.0 know colors
* CopyPixelOperation.cs: New .Net 2.0 enum
* SystemFonts.cs: New .Net 2.0 class
* BufferedGraphicsContext.cs: New .Net 2.0 class

svn path=/trunk/mcs/; revision=53938
49 files changed:
mcs/class/System.Drawing/ChangeLog
mcs/class/System.Drawing/System.Drawing.Design/ChangeLog
mcs/class/System.Drawing/System.Drawing.Design/IToolboxItemProvider.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing.Design/ToolboxItem.cs
mcs/class/System.Drawing/System.Drawing.Imaging/EncoderParameter.cs
mcs/class/System.Drawing/System.Drawing.Imaging/ImageAttributes.cs
mcs/class/System.Drawing/System.Drawing.Imaging/MetaHeader.cs
mcs/class/System.Drawing/System.Drawing.Imaging/MetafileHeader.cs
mcs/class/System.Drawing/System.Drawing.Imaging/WmfPlaceableFileHeader.cs
mcs/class/System.Drawing/System.Drawing.Text/PrivateFontCollection.cs
mcs/class/System.Drawing/System.Drawing.dll.sources
mcs/class/System.Drawing/System.Drawing/Bitmap.cs
mcs/class/System.Drawing/System.Drawing/Brush.cs
mcs/class/System.Drawing/System.Drawing/BufferedGraphics.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/BufferedGraphicsContext.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/BufferedGraphicsManager.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/ChangeLog
mcs/class/System.Drawing/System.Drawing/CharacterRange.cs
mcs/class/System.Drawing/System.Drawing/Color.cs
mcs/class/System.Drawing/System.Drawing/CopyPixelOperation.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/Font.cs
mcs/class/System.Drawing/System.Drawing/FontConverter.cs
mcs/class/System.Drawing/System.Drawing/Graphics.cs
mcs/class/System.Drawing/System.Drawing/IDeviceContext.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/Icon.cs
mcs/class/System.Drawing/System.Drawing/Image.cs
mcs/class/System.Drawing/System.Drawing/KnownColor.cs
mcs/class/System.Drawing/System.Drawing/Point.cs
mcs/class/System.Drawing/System.Drawing/PointF.cs
mcs/class/System.Drawing/System.Drawing/Region.cs
mcs/class/System.Drawing/System.Drawing/Size.cs
mcs/class/System.Drawing/System.Drawing/SizeF.cs
mcs/class/System.Drawing/System.Drawing/SizeFConverter.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/SystemBrushes.cs
mcs/class/System.Drawing/System.Drawing/SystemColors.cs
mcs/class/System.Drawing/System.Drawing/SystemFonts.cs [new file with mode: 0644]
mcs/class/System.Drawing/System.Drawing/SystemPens.cs
mcs/class/System.Drawing/System.Drawing/gdipFunctions.cs
mcs/class/System.Drawing/System.Drawing/gdipStructs.cs
mcs/class/System.Drawing/System.Drawing_test.dll.sources
mcs/class/System.Drawing/Test/System.Drawing.Design/ChangeLog
mcs/class/System.Drawing/Test/System.Drawing.Design/TestToolboxItem.cs [new file with mode: 0644]
mcs/class/System.Drawing/Test/System.Drawing/ChangeLog
mcs/class/System.Drawing/Test/System.Drawing/ColorConverter.cs
mcs/class/System.Drawing/Test/System.Drawing/TestPoint.cs
mcs/class/System.Drawing/Test/System.Drawing/TestPointF.cs
mcs/class/System.Drawing/Test/System.Drawing/TestSize.cs
mcs/class/System.Drawing/Test/System.Drawing/TestSizeF.cs
mcs/class/System.Drawing/Test/System.Drawing/TestSizeFConverter.cs [new file with mode: 0644]