Re: Newbie needs help: gtk_entry's stopped accepting key stroke entires

2007-05-12 Thread Gabriel Schulhof
Hi! On Wed, 2007-05-09 at 12:41 +0200, Sven Neumann wrote: Your code returns TRUE from the event handler. This stops signal emission and keeps other handlers from being invoked. Check the documentation of GtkWidget::key-press-event (or any other event signal handler). ... but could it be

Re: Newbie needs help: gtk_entry's stopped accepting key stroke entires

2007-05-09 Thread crazyluke
FIXED!! I hope the moderator leaves this on the forum: It was not Google-able ... just in case someone else pulls a bone-head move like I did. This code was working as a key event handler: static int key_pressed3(GtkWidget* w, GdkEventKey* event, gpointer data) { if (event-keyval ==

Re: Newbie needs help: gtk_entry's stopped accepting key stroke entires

2007-05-09 Thread Sven Neumann
Hi, On Tue, 2007-05-08 at 10:46 -0700, crazyluke wrote: This code was working as a key event handler: static int key_pressed3(GtkWidget* w, GdkEventKey* event, gpointer data) { if (event-keyval == 65293) actionOptions(w, data); return true; } Your code returns

Newbie needs help: gtk_entry's stopped accepting key stroke entires

2007-05-08 Thread crazyluke
I developed a GTK+ app about 4 years ago that worked well. It was probably built under GTK ~2.4 or 2.6. I just setup the latest version of Dev-Cpp compiler with GTK 2.10. I recompiled the old source files. Everything works fine except for one MAJOR thing: All of the gtk_entry textbox widgets will