I believe you need to access "widget_of_the_2_window" by

   lookup_widget(2_window, "widget_of_the_2_window");

   where 2_window_ptr is a pointer to 2_window that is 
   passed in the calling arguments.

In other words, you need to create a function that is called 
from the callback (on_<callback_name>_button_clicked) that
passes a pointer to the 2_window.  Something like:

new_function(GtkWidget *2_window_ptr)
 {
   GtkWidget *widget;

   widget = lookup_widget(2_window_ptr, " "widget_of_the_2_window");
}

Hope that helps.....


Cheers.....
Rick Esquibel
Embedded Software/Engineer
5000 E. McDowell Road
Mesa, AZ 85215-9797
(480) 891-8423
[EMAIL PROTECTED]



_______________________________________________
Glade-devel maillist  -  [EMAIL PROTECTED]
http://lists.helixcode.com/mailman/listinfo/glade-devel

Reply via email to