On 16.02.2008, at 09:49, hemadri phani kiran wrote: > hi, > i am a newbie to fltk > i want to know the behavior of hide() function in Fl_Window class
Hide() will remove the window from the screen (or from its parent window). It will not destroy any widgets or children. The opposite command is show(). > i am having a window with some 3 child widgets > now i am hiding that window ,then will those child widgets receive > any > events even though they are not getting displayed. No, they should not receive any events. A few useless events may slip through though. That is a bug that we are fixing this week. ---- http://robowerk.com/ _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

