[Glade-users] Where is the input callback method in glade?




Read
http://developer.gnome.org/gtk/stable/GtkEditable.html#GtkEditable-insert-text 

I use the following code to restrict input to numerical characters (so that the user can only enter positive 
integer numbers):

...
GtkEntry  *entry = gtk_entry_new();
gtk_signal_connect (G_OBJECT (entry), "insert-text", G_CALLBACK (entry_insert), NULL);
...

void entry_insert (GtkEditable *entry, char *new, gint len, gpointer position, gpointer data)
{
  gboolean  faulty = FALSE;
  for (int i = 0; i < len; i++)
  {
    if (! isdigit (new[i]))
      faulty = TRUE;
  }
  if (faulty)
  {
    g_signal_stop_emission_by_name ((gpointer) entry, "insert-text");
  }
}


Regards

Peter Rottengatter

-----Original Message-----
From: glade-users-bounces at lists.ximian.com [mailto:glade-users-bounces at lists.ximian.com] On Behalf Of 
Ferdinand Ramirez
Sent: 04 October 2011 13:55
To: glade-users at lists.ximian.com
Subject: [Glade-users] Where is the input callback method in glade?

Where is the callback to keyboard input in glade. I want this so that I can respond to each letter that is 
input.

As as example, I was looking at the tutorial at http://www.micahcarrick.com/files/gtk-glade-tutorial/C/main.c 
and was wondering how the callback method for keyboard inputs can be enabled and how I could modify it.

For simplicity, let us say that I want to be able to print out the characters on the terminal as I input them 
in the above program. I then want to update the buffer instead of letting some hidden function in glade do it 
for me. How do I achieve this?

I'm just using the above example since it is simple and neatly written.

Thanks,
-Ferdinand
_______________________________________________
Glade-users maillist  -  Glade-users at lists.ximian.com
http://lists.ximian.com/mailman/listinfo/glade-users
Baker Hughes INTEQ GmbH
Baker-Hughes-Strasse 1, D - 29221 Celle
Tel.: +49 5141 203 0, Fax: +49 5141 203 296
Sitz der Gesellschaft: Celle, Amtsgericht L?neburg HRB 100845
Gesch?ftsf?hrer: Johannes Witte, Tommie Lee Pate, Dr. Hans-Werner Hesse

Diese Nachricht ist ausschlie?lich f?r die Person oder Organisation bestimmt, an die sie adressiert ist. Sie 
kann herstellerspezifische, nur f?r bestimmte Personen bestimmte,  vertrauliche oder andere Informationen 
enthalten, die kraft Gesetzes nicht offen gelegt werden m?ssen.  Wenn Sie nicht der in der Adresse genannte 
Empf?nger sind oder versehentlich in der Adresszeile angesprochen werden, sind Sie nicht berechtigt, diese 
Nachricht oder Teile davon zu lesen, zu drucken, aufzubewahren, zu kopieren oder zu verbreiten.  Sollten Sie 
diese Nachricht irrt?mlich erhalten haben, benachrichtigen Sie bitte den Absender umgehend per Email und 
vernichten Sie s?mtliche Kopien der Nachricht.

DISC-GER-A




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]