[Glade-devel] Druids
Carlos Garnacho
garnacho@tuxerver.net
12 Jun 2003 19:55:42 +0200
El mar, 10-06-2003 a las 15:51, Robert Parkhurst escribi=F3:
> I am trying to create a Druid in Glade for the purposes of creating an
> installation program. When I create it in Glade, it looks the way I
> want it to look. When I execute the program though, it just displays a
> blank window with the three default buttons. I have included pictures
> that show what it looks like in Glade and what it looks like upon
> execution.
did you try to make gtk_widget_show_all () instead of gtk_widget_show()
with the druid created by glade? such as:
GtkWidget *druid =3D glade_xml_get_widget (xml, "druid");
gtk_widget_show_all (druid);
>=20
> Does anyone have any Druid building experience? I may decide down the
> road to brave the trenches and build a druid manually, but right now I
> need RAD abilities, and Glade does do a good job of simplifying the
> coding process. Anyway, if any of you can offer any help that would be
> great!
>=20
>=20
> Thank you,
> robert