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

* gdk/Drawable.custom: Added nice overload for DrawRectangle.

Plus older ChangeLog entries that I had not commited

svn path=/trunk/gtk-sharp/; revision=12052
This commit is contained in:
Miguel de Icaza 2003-02-28 04:54:01 +00:00
parent f0c80c2430
commit f28a0d72b8
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,17 @@
2003-02-27 Miguel de Icaza <miguel@ximian.com>
* gdk/Drawable.custom: Added nice overload for DrawRectangle.
2003-02-19 Miguel de Icaza <miguel@ximian.com>
* gdk/Pixbuf.custom: Add overload arguments that take a
System.Drawing.Color.
Added a Clone() method, to implement the ICloneable interface.
Added constructors for inlined in-data RGB/RGBA buffers and file
images.
2003-02-26 Charles Iliya Krempeaux <charles@reptile.ca>
* gtk/TextBuffer.custom : Added method, named

View File

@ -15,3 +15,7 @@ public System.Drawing.Size Size {
}
}
public void DrawRectangle(Gdk.GC gc, int filled, Gdk.Rectangle area)
{
gdk_draw_rectangle(Handle, gc.Handle, filled, area.x, area.y, area.width, area.height);
}