mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-01 00:46:56 +00:00
more Gtk.ResponseType overloads for Gtk.Dialog
svn path=/trunk/gtk-sharp/; revision=22031
This commit is contained in:
parent
fdb11c4cc1
commit
c0e4552e54
|
@ -1,3 +1,7 @@
|
||||||
|
2004-01-13 John Luke <jluke@cfl.rr.com>
|
||||||
|
|
||||||
|
* en/Gtk/Dialog.custom: add more Gtk.ResponseType overloads
|
||||||
|
|
||||||
2004-01-10 John Luke <jluke@cfl.rr.com>
|
2004-01-10 John Luke <jluke@cfl.rr.com>
|
||||||
|
|
||||||
* samples/GtkDemo/*.cs: make it compile
|
* samples/GtkDemo/*.cs: make it compile
|
||||||
|
|
|
@ -34,3 +34,13 @@ public void AddActionWidget (Widget child, ResponseType response)
|
||||||
this.AddActionWidget (child, (int) response);
|
this.AddActionWidget (child, (int) response);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void AddButton (string button_text, ResponseType response)
|
||||||
|
{
|
||||||
|
this.AddButton (button_text, (int) response);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Respond (ResponseType response)
|
||||||
|
{
|
||||||
|
this.Respond ((int) response);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue