From: Olivier Andrieu Message-ID: <17698.46650.264022.232199 at karryall.dnsalias.org> Date: Tue, 3 Oct 2006 21:12:58 +0200 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit To: j.romildo at gmail.com, caml-list at inria.fr, lablgtk at math.nagoya-u.ac.jp Subject: Re: [Caml-list] Re: missing gtk_button_set_image in lablgtk In-Reply-To: <17698.45953.753908.389772 at karryall.dnsalias.org> References: <20061003133439.GA2593 at malaquias.gwiceb1> <20061003173755.GA28749@malaquias.gwiceb1> <17698.45953.753908.389772@karryall.dnsalias.org> Content-Type: multipart/mixed; boundary="FXg3Bsrd3e" Content-Length: 2444 --FXg3Bsrd3e Content-Type: text/plain; charset=us-ascii Content-Description: message body and .signature Content-Transfer-Encoding: 7bit Olivier Andrieu [Tuesday 3 October 2006] : > Here is a patch, with a bunch of other missing properties of > GtkButton. Oops, here is a real patch. -- Olivier --FXg3Bsrd3e Content-Type: text/plain Content-Disposition: attachment; filename="gtkbutton_missing_properties.patch" Content-Transfer-Encoding: 7bit Index: gtkButton.props =================================================================== RCS file: /net/yquem/devel/caml/repository/bazar-ocaml/lablgtk/src/gtkButton.props,v retrieving revision 1.5 diff -u -r1.5 gtkButton.props --- gtkButton.props 16 Sep 2006 10:33:02 -0000 1.5 +++ gtkButton.props 3 Oct 2006 19:11:02 -0000 @@ -11,10 +11,14 @@ } class Button set wrap wrapsig : Bin { + "focus-on-click" gboolean : Read / Write / NoSet + "image" GtkWidget_opt : Read / Write / NoSet "label" gchararray : Read / Write / Construct "use-stock" gboolean : Read / Write / Construct "use-underline" gboolean : Read / Write / Construct "relief" GtkReliefStyle : Read / Write + "xalign" gfloat : Read / Write / NoSet + "yalign" gfloat : Read / Write / NoSet signal activate / NoWrap signal clicked signal enter Index: gButton.mli =================================================================== RCS file: /net/yquem/devel/caml/repository/bazar-ocaml/lablgtk/src/gButton.mli,v retrieving revision 1.34 diff -u -r1.34 gButton.mli --- gButton.mli 16 Sep 2006 10:33:02 -0000 1.34 +++ gButton.mli 3 Oct 2006 19:11:02 -0000 @@ -25,6 +25,14 @@ method use_underline : bool method grab_default : unit -> unit method event : event_ops + method set_focus_on_click : bool -> unit + method focus_on_click : bool + method image : GObj.widget option (** @since GTK 2.6 *) + method set_image : GObj.widget option -> unit (** @since GTK 2.6 *) + method set_xalign : float -> unit (** @since GTK 2.4 *) + method xalign : float (** @since GTK 2.4 *) + method set_yalign : float -> unit (** @since GTK 2.4 *) + method yalign : float (** @since GTK 2.4 *) end (** @gtkdoc gtk GtkButton *) --FXg3Bsrd3e--