2004-01-14  Ravindra <rkumar@novell.com>
                                                                                
        * SolidBrush.cs: Made SolidBrush to initialize its color
	from IntPtr.
                                                                                
        * gdipFunctions.cs: Added call to GdipGetSolidFillColor GDI+ API.

2004-01-12 Ben Maurer  <bmaurer@users.sourceforge.net>

	* Color.cs: Keep KnownColors in an array so that we avoid ht lookup.

2004-01-11  Daniel Morgan <danielmorgan@verizon.net>

	* Graphics.cs: fix compile error on Windows builds for out 
	parameter state	in call to GdipSaveGraphics

2004-01-10  Ravindra  <rkumar@novell.com>

	* All Enums: Made serializable.

	* Image.cs: Corrected signature of Dispose(bool) method.

	* Pen.cs, SolidBrush.cs, SystemPens.cs, SystemBrushes.cs: 
	Corrected coding style mistakes of my previous commit.

	* PointConverter.cs, RectangleConverter.cs: Inherit TypeConverter.

	* PointF.cs, RectangleF.cs, SizeF.cs: Made serializable.

	* StringFormat.cs: Inherits MarshalByRefObject.

	* ToolboxBitmapAttribute.cs: Added missing attribute [AttributeUsage].

2004-01-08  Ravindra  <rkumar@novell.com>

	* Pen.cs: Added isModifiable (bool) variable. It is required to
	make Pens created by SystemPens.cs unmodifiable. All property
	setters are modified for this.

	* SolidBrush.cs: Added isModifiable variable (bool). It is
        required to make Brushes created by SystemBrushes.cs unmodifiable.
        All property setters are modified for this.

	* SystemBrushes.cs: Modified all the properties as per the .NET
	specs, so that Brushes are not created every time. Also, missing
	properties are added.

	* SystemPens.cs: Modified all the properties as per the .NET
        specs, so that Brushes are not created every time. Also, missing
        properties are added.

2003-12-12  Miguel de Icaza  <miguel@ximian.com>

	* Rectangle.cs: Patch from Bryan Bulten, fixes Inflate and makes
	it serializable

2004-01-06  Duncan Mak  <duncan@ximian.com>

	* gdipFunctions.cs: Import GraphicsPath functions from GDI+.

2003-12-21  Duncan Mak  <duncan@ximian.com>

	* Graphics.cs (DrawArc): Fixed the method signature and hooked it
	up to the GDI+ implementation.
	(RotateTransform): Uncommented.

	* gdipFunctions.cs (DrawArc, DrawArcI): Import from
	libgdiplus.so.dll.

2003-12-13  Todd Berman  <tberman@sevenl.net>

	* Font.cs: Implementing a couple things for porting purposes
	* SystemBrushes.cs: ^
	* StringFormat.cs: ^^

2003-11-28  Duncan Mak  <duncan@ximian.com>

	* Pen.cs (CompoundArray): Hide this for now.

2003-11-28  Duncan Mak  <duncan@ximian.com>	

	* Brush.cs (CreateBrush): new internal factory method for creating
	specific brushes based on the internal (GDI+ C API) BrushType
	enum.
	(Brush (IntPtr)): new internal constructor.

	* Pen.cs: Removed all the C# fields. We are using GDI+ completely
	now.
	(Pen (IntPtr)): new internal constructor.
	(Pen (Brush, float)): Use GdipCreateBrush2.
	(Clone): Implemented using GdipClonePen.
	(Alignment, Brush, Color, Width): Use GDI+ implementations
	instead.
	(CompoundArray, DashCap, DashOffset, DashPattern, DashStyle):
	Implemented these properties.
	(CustomStartCap, CustomEndCap, StartCap, EndCap, SetLineCap): Stubbed.
	(MultiplyTransform, ResetTransform, RotateTransform):
	(ScaleTransform, TranslateTransform): Implemented these methods.

	* SolidBrush.cs (SolidBrush (IntPtr)): new internal constructor.

	* gdipEnums.cs (BrushType): Added new GDI+ enum.

	* gdipFunctions.cs: Imported new Brush and Pen functions.

2003-11-22  Duncan Mak  <duncan@ximian.com>

	* gdipFunctions.cs
	(GdipResetWorldTransform, GdipSetWorldTransform):
	(GdipGetWorldTransform, GdipScaleWorldTransform): Imported.

	* Graphics.cs: Remove unnecessary TODO, and reformatted the code.
	(transform): Removed this field. Always use the
	matrix associated in the GpGraphics ptr.
	(DrawBeziers): Implemented.
	(DrawLine): Don't need to manually invoke the transform now.
	(MultiplyTransform, ResetTransform): 
	(ScaleTransform, TranslateTransform): Use GDI+ implementation.
	(Transform): Instead of storing a Matrix in managed code, use
	equivalent GDI+ functions.

2003-11-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* SizeConverter.cs: fixed class signature and implemented some methods.

2003-11-17  Duncan Mak  <duncan@ximian.com>

	* gdipFunctions.cs (GdipGetMatrixElements): Fix signature.
	
	* Graphics.cs (MultiplyTransform): Commented out until my Matrix commit.

2003-11-17  Duncan Mak  <duncan@ximian.com>
	
	* Bitmap.cs (LockBits):
	* Graphics.cs (DrawString): Use GpRectF.

	* gdipFunctions.cs: Updated method signatures.	

	* Graphics.cs (MultiplyTransform): Implemented using
	GdipMultiplyWorldTransform from GDI+.

	* gdipStructs.cs (GdipRectF, GdipRect): Renamed to GpRectF and
	GpRect, to be more consistent with the C naming.

2003-11-16  Miguel de Icaza  <miguel@ximian.com>

	* Graphics.cs: Implement the other DrawString overloads .

2003-11-16  Miguel de Icaza  <miguel@ximian.com>

	* gdipStructs.cs (GdipRectF): Added utility constructor

2003-11-15  Duncan Mak  <duncan@ximian.com>

	* gdipFunctions.cs: Imported matrix functions.

2003-11-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Bitmap.cs: Added Attributes
	* ColorTranslator.cs: Added private constructor
	* Font.cs: Added Attributes
	* FontFamily.cs: sealed
	* Icon.cs: Added Attributes
	* IconConverter.cs: Fixed signature
	* Image.cs: Added attributes
	* ImageAnimator.cs: 
	* ImageConverter.cs:
	* ImageFormatConverter.cs:
	* SolidBrush.cs:
	* StringFormat.cs:
	* SystemBrushes.cs:
	* SystemColors.cs:
	* SystemIcons.cs:
	* SystemPens.cs:
	* TextureBrush.cs: Fixed signature
	* Color.cs: Added attributes
	* Point.cs:
	* PointF.cs:
	* Rectangle.cs:
	* Size.cs:
	* SizeF.cs: Added attributes
	* ContentAlignment.cs: Added attribute

2003-11-13  Duncan Mak  <duncan@ximian.com>

	* Pen.cs (LineCap, LineJoin, MiterLimit, Transform): implemented.

	* gdipFunctions.cs
	(GdipSetPenMiterLimit, GdipGetPenMiterLimit):
	(GdipSetPenLineJoin, GdipGetPenLineJoin): 
	(GdipSetPenLineJoin, GdipGetPenTransform): imported.

2003-11-12  Alexandre Pigolkine <pigolkine@gmx.de>
	* Bitmap.cs
	* gdipFunctions.cs		copy image in Bitmap constructor
	
2003-11-06  Duncan Mak  <duncan@ximian.com>
	* Graphics.cs (DrawPie): Use DrawPieI instead of DrawPie and fix
	angle parameters for the integer case.
	(DrawBezier): Hook it up with GdipDrawBezier.
	(DrawEllipse): Fix Width, Height ordering.

2003-11-05  Duncan Mak  <duncan@ximian.com>

	* Graphics.cs (DrawPie): 
	* gdipFunctions.cs (GdipDrawPie): Add hooks to the implementation
	in graphics.c.
	
2003-10-28  Duncan Mak  <duncan@ximian.com>

	* Graphics.cs (DrawEllipse, DrawLine, DrawPolygon):
	(FillEllipse, FillPolygon): implemented.
	(RenderingOrigin): implemented.

	* gdipFunctions.cs: Added new GDI+ equivalents.

2003-10-25  Alexandre Pigolkine <pigolkine@gmx.de>
	* Bitmap.cs
	* Image.cs 			small fixes
	
2003-10-25  Atsushi Enomoto  <ginga@kit.hi-ho.ne.jp>

	* Image.cs : renamed 'pallete' to 'colorPallete' for CLS compliance.

2003-10-24  Miguel de Icaza  <miguel@ximian.com>

	* SystemBrushes.cs: Some more brushe3s.

	* SystemPens.cs: More pens.

	* Pen.cs: Implement IDisposable, ICloneable.

	* Region.cs: Add some more stubs here.

	* StringFormat.cs: Add some more code here.

2003-10-23  Miguel de Icaza  <miguel@ximian.com>

	* Image.cs: Kill the InternalImageInfo, everything is now done in
	terms of Image and BitmapData.

	* Rectangle.cs: Make this one also sequential, change from using
	Point + Size to use x, y, width, height;  So we can use GdiPlus.

	* gdipFunctions.cs (GdipBitmapLockBits): Remove the ref from the
	BitmapData class argument, and instead use the [In,Out]
	attributes, which will do struct marshalling on the fields.   Now
	we can use C#'s BitmapData directly to talk to Gdiplus.

	* gdipStructs.cs: Every internal structure that has to talk to
	Gdi+ is properly prefixed, to minimize the confussion.

	* Bitmap.cs Bitmap (int width, int height, PixelFormat format):
	Compute the stride here where we have the BPP information,
	allocate a buffer of the proper size, and pass this to
	GdipCreateBitmapFromScan0 

	* Image.cs: Implement Dispose pattern.

2003-10-14  Alexandre Pigolkine <pigolkine@gmx.de>
	* Graphics.cs
	* gdipFunctioncs.cs		
	* gdipStructs.cs		DrawString function added

2003-10-12  Alexandre Pigolkine <pigolkine@gmx.de>
	* gdipEnums.cs 
	* gdipFunctions.cs 
	* gdipStructs.cs		added 
						

2003-10-12  Alexandre Pigolkine <pigolkine@gmx.de>
	* Bitmap.cs
	* Brush.cs
	* Font.cs
	* FontFamily.cs
	* Graphics.cs
	* Image.cs
	* Pen.cs
	* SolidBrush.cs
						implementation changed to gdi+

2003-09-08  Duncan Mak  <duncan@ximian.com>

	* Factories.cs (DefaultImplementationNamespace): Change it from
	"XrImpl" to "Cairo".

2003-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Color.cs: fixed FromArgb to handle alpha value correctly. Closes
	bug #47727.

2003-08-08  Duncan Mak  <duncan@ximian.com>

	* Graphics.cs (DrawBezier): Fixed.

2003-08-03  Alexandre Pigolkine <pigolkine@gmx.de>
	* Graphics.cs  delegate Dispose to implementation

2003-08-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* FontConverter.cs: stub it out so that system.web compiles.

2003-07-30 Alexandre Pigolkine <pigolkine@gmx.de>
	* Image.cs	InternalImageInfo class improved

2003-07-23  Miguel de Icaza  <miguel@ximian.com>

	* Factories.cs: If the AppDomain key `Mono.Running.Windows.Forms'
	is set, default to Win32Impl 

2003-07-22 Alexandre Pigolkine <pigolkine@gmx.de>
	* Image.cs	implementation added
	
2003-07-21  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Icon.cs: Stubed out (fix for System.Drawing.Design)

2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* StringFormat.cs: Changes to become CLS-compliant

2003-07-14  Miguel de Icaza  <miguel@ximian.com>

	* Factories.cs: Remove debugging message.

2003-07-01 Alexandre Pigolkine <pigolkine@gmx.de>
	* Color.cs	code generation program modified

2003-06-29 Alexandre Pigolkine
	* Graphics.cs	image drawing

2003-06-28 Alexandre Pigolkine <pigolkine@gmx.de>
	* Color.cs			
	* SystemColors.cs	
		supply KnowColor enum value to save Enum.Parse at runtime

2003-06-26 Alexandre Pigolkine <pigolkine@gmx.de>
	* Graphics.cs		coordinate transformations
	* Image.cs			small fix

2003-06-22 Alexandre Pigolkine <pigolkine@gmx.de>
	* Factories.cs
	* FontFamily.cs		more implementation

2003-06-20 Alexandre Pigolkine <pigolkine@gmx.de>
	* Font.cs
	* FontFamily.cs		more implementation

2003-06-18 Alexandre Pigolkine <pigolkine@gmx.de>
	* Graphics.cs		few more calls to implementation

2003-06-15 Alexandre Pigolkine <pigolkine@gmx.de>
    * Bitmap.cs 		BITMAP declaration removed
	* Graphics.cs		few more calls to implementation
	* Image.cs			InternalImageInfo structure, image read/write functions
			
			
2003-05-26 Alexandre Pigolkine <pigolkine@gmx.de>
	* Factories.cs	analyse environment variable and machine.config to select implementation
	* Image.cs		PixelFormat property added

2003-04-30  Nick Drochak <ndrochak@gol.com>

	* Factories.cs: Change weird characters that broke build on windows.

2003-04-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ColorConverter.cs:
	(ConvertFrom): return a system or named color if there's one that fits
	teh values parsed with Color.FromArgb.

2003-04-26  Alexandre Pigolkine <pigolkine@gmx.de>
	* Bitmap.cs
	* Brush.cs
	* Font.cs
	* Graphics.cs
	* Image.cs
	* Pen.cs
	* SolidBrush.cs
	* SystemBrushes.cs
	* Factories.cs
			delegate function calls to implementation

2003-04-26  Alexandre Pigolkine <pigolkine@gmx.de>
	* Bitmap.cs
	* ChangeLog
	* Image.cs
	* SystemBrushes.cs		switch to Linux style line terminators

2003-03-29 Alan Tam <Tam@SiuLung.com>
	* ToolboxBitmapAttribute
		stubbed more constructors and fixed base class

2003-03-01 Alexandre Pigolkine <pigolkine@gmx.de>
	* SystemBrushes.cs
			added stubs to compile SWF


2003-02-21  Alexandre Pigolkine <pigolkine@gmx.de>
	* Font.cs
	* Graphics.cs
	* Image.cs
	* SystemBrushes.cs
			small changes to be able to run SWF apps

2003-02-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Graphics.cs: stubbed out all the methods.

2003-02-08 Piers Haken <piersh@friskit.com>

	* fixed case of pens.cs and font.cs

2003-02-07 Alexandre Pigolkine <pigolkine@gmx.de>
	* Font.cs Added
	* Graphics.cs
	* StringFormat.cs 
	* SystemBrushes.cs
		stubs added

2002-11-21 Dennis Hayes (dennish@raytek.com)
	* checkin for Matt Stump (mstump@swfo.arizona.edu)
	* Pens.cs
	* Added file

2002-10-19  Rachel Hestilow <hestilow@ximian.com>

	* ColorTranslator.cs (FromHtml): Implement.
	
2002-10-14 Dennis Hayes (dennish@raytek.com)
	* Region.cs
	* changed using namespace from Drawing2d to Drawing2D

 2002-9-15 Asier Llano <asierllano@infonegocio.com>
	
	* Fixes	the enum values in the following enums
	* ContentAlignment.cs:
	* FontStyle.cs:
	* GraphicsUnit.cs:
	* KnownColor.cs:
	* RotateFlipType.cs:
	* StringAligment.cs:
	* StringDigitSubstitute.cs:
	* StringFormatFlags.cs:
	* StringTrimming.cs:
	* StringUnit.cs: 
	* SolidBrush.cs: Easy implementation
	* Brushes.cs:    Implementation based on SolidBrush and Color class.
        * Brush.cs:      Fixes based on the status web).
	* CharacterRange.cs: Implemented the missing Lenth property.

2002-9-14 Dennis Hayes (dennish@raytek.com)
	
	* sample.cs
	* removed personal template that should not have been checked in

2002-09-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ColorConverter.cs: readded MonoTODOs and implemented a couple of
	methods.

2002-9-14  DennisHayes <dennish@raytek.com>

	* FontConverter.cs
	* FontFamily.cs
	* Icon.cs
	* IconConverter.cs
	* ImageAnimator.cs
	* ImageConverter.cs
	* ImageFormatConverter.cs
	* PointConverter.cs
	* RectangleConverter.cs
	* Sample.cs
	* SizeConverter.cs
	* SolidBrush.cs
	* StringFormat.cs
	* SystemBrushes.cs
	* SystemIcons.cs
	* SystemPens.cs
	* TextureBrush.cs
	* ToolboxBitmapAttribute.cs
	* Added null classes for most/all classes, Many stubs, and some implmentation

2002-9-2  DennisHayes <dennish@raytek.com>

	* Bitmap.cs
	* Color.cs
	* ColorConverter.cs
	* Image.cs
	* Pen.cs
	* Added stubs, implmentation

2002-9-2  DennisHayes <dennish@raytek.com>

	* Brushes.cs : stubbed, added colors. Not sure how to implement,
				 but this should at least save someone some typing.
	* CharacterRange.cs :Implmented
	* Region.cs : stub needed for system.windows.forms

2002-07-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ColorTranslator.cs: use Color.Name.

2002-07-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Color.cs: implemented SystemColors and NamedColors properties that
	are used by ColorConverter, removed public constructor, use
	SystemColors, and misc. fixes to make it behave as MS (ToString,
	parsing names, FromKnownColor,...).

	* ColorConverter.cs: use NamedColors and SystemColors from Color when
	trying to get the color from its name.

	* SystemColors.cs: new file.

2002-07-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Color.cs: changed static properties to use FromArgbNamed. Also
	modified the program included in comments that get the values for
	static properties.

	(FromArgbNamed): build named colors.
	(FromKnownColor): fixed.
	(FromName): use a hash to look up colors by name.
	(FillColorNames): create the hash of colors.
	(Equals): compare values and name.
	(ToString): improved.

	* ColorTranslator.cs: implemented ToHtml.

2002-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Color.cs: added TypeConverter attribute.
	
	* ColorConverter.cs: added constructor.

2002-06-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ColorConverter.cs: implemented minimal set of features needed by xsp.

2002-05-03  Mike Kestner <mkestner@speakeasy.net>

	* Bitmap.cs : using System.IO
	* ColorTranslator.cs : Stubbed off build breakers.
	* Image.cs : Stub off IDisposable and ICloneable.
	
2002-04-27  Christian Meyer  <Christian.Meyer@cs.tum.edu>

	* Bitmap.cs: Ximian is the new copyright holder now.
	* Image.cs: ditto

2002-04-05  Christian Meyer  <Christian.Meyer@cs.tum.edu>

	* Uppercased several files.

2002-04-05  Christian Meyer  <Christian.Meyer@cs.tum.edu>

	* color.cs: Fixed a typo in GetSaturation ().

2002-02-26  Christian Meyer  <Christian.Meyer@cs.tum.edu>

	* Bitmap.cs: Added method headers.

2002-02-25  Christian Meyer  <Christian.Meyer@cs.tum.edu>

	* Bitmap.cs: Added, no implementation's done, yet.

2001-12-15  Mike Kestner <mkestner@speakeasy.net>

	* Rectangle.cs : Add a doc comment.
	* RectangleF.cs : New struct implementation.

2001-12-15  Mike Kestner <mkestner@speakeasy.net>

	* Rectangle.cs : New struct implementation.

2001-08-17  Mike Kestner <mkestner@speakeasy.net>

	* PointF.cs, Size.cs, SizeF.cs : New struct implementations.

2001-08-16  Mike Kestner <mkestner@speakeasy.net>

	* Point.cs : New. Implementation of System.Drawing.Point struct.

