On Wed, 2001-12-19 at 20:13, Morelli Enrico wrote: > I'm a newbie of PyGtk. My answer is: what are the events to connect to > GtkRadioButton? > I would that when an user select a GtkRadioButton a set_editable Entry > widget from FALSE will be TRUE.
The GtkRadioButton's object hierarchy is:
GtkButton
|__GtkCheckButton
|__GtkRadioButton
>From file gtkbutton.h:
...
struct _GtkButtonClass
{
GtkBinClass parent_class;
void (* pressed) (GtkButton *button);
void (* released) (GtkButton *button);
void (* clicked) (GtkButton *button);
void (* enter) (GtkButton *button);
void (* leave) (GtkButton *button);
};
...
For example, if you have gtk 1.2 and if you have installed the devel
package, you can find signals in file:
/usr/include/gtk-1.2/gtk/gtkbutton.h
msg03365/pgp00000.pgp
Description: PGP signature
