mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-02-28 12:16:45 +00:00
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:
parent
f0c80c2430
commit
f28a0d72b8
14
ChangeLog
14
ChangeLog
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue