Re: EuGTK - Q: how to show a picture before main()
- Posted by Jerry_Story Aug 06, 2010
- 1419 views
jimcbrown said...
Without your full code, it's hard for me to say, but I'd guess where and how you call gtk_main() is an issue here.
The full relevant code is
include GtkEngine.e -- some code here global constant Win = create(GtkWindow) -- some code here constant splash = create(GtkWindow) -- some code here show_all(splash) -- This is supposed to show -before- the data is loaded. getUSDAdata() hide(splash) -- some code here show_all(Win) main() -- But this is where both splash and Win show, if I comment out hide.