|
Hello I have a dialog with n GtkEntries, that have been created dynamically. When an Entry has been edited, the signal activate is connected. g_signal_connect(G_OBJECT(value),"activate",G_CALLBACK(cb_valueEdited),(gpointer)&re_local.userdata);
How can I associate each entry with a variable? If I edit the first Entry it has to change the variable "speed" The second one should change the variable "acceleration" and so on.
For sure I'm not the only one who has to put an edited value into a variable. Can somebody say me how to do it smart?
Thank you! MBoerner
|