No !
But because resize is a vrtual method you can derive a class from the
widget you want to do some work when it's resized and install your code
there:
class MyResizeThing : public Fl_Group {
public:
...
void resize(int x, int y, int w, int h){
//do something before resize
Fl_Group::resize(x,y,w,h);
//do something after resize
}
};
En 19/12/2010 05:14:34, Percy <[email protected]> escribió:
> Is there a callback or event that is triggered while resizing an
> Fl_Window? I apologise if this is basic, but I can't find anything that
> will do this anywhere.
>
> Thanks.
--
Usando el revolucionario cliente de correo de Opera:
http://www.opera.com/mail/
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk