RE: gtk eventHandler
- From: Vincent Torri <torri math u-strasbg fr>
- To: mailing ralf-project de
- Cc: gtk-list gnome org
- Subject: RE: gtk eventHandler
- Date: Fri, 20 Feb 2004 11:33:03 +0100 (MET)
> >> i need a event handler for a gtkEntry which have the form "OnChange"
> or/
> >> and "OnPressEnter" and a method to call a function which handle the
> >> gtkEntry input!
> >
> >the "activate" signal (when you stroke the enter key) :
> >
> >http://developer.gnome.org/doc/API/2.0/gtk/GtkEntry.html#GtkEntry-activ
> ate
>
> Are there some code examples? Thanks! Learning by looking to program
> code!
void callback_activate (GtkWidget *w, gpointer data)
{
g_print ("The enter key has been pressed\n");
}
void my_function ()
{
GtkWidget *my_entry;
my_entry = gtk_entry_new ();
g_signal_connect (G_OBJECT (my_entry), "activate",
G_CALLBACK (callback_activate), NULL);
}
regards
Vincent TORRI
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]