DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.
[STR New] Link: http://www.fltk.org/str.php?L2097 Version: 1.1.9 Round type (e.g. FL_ROUND_DOWN_BOX,FL_ROUND_UP_BOX,... ) Box doesnt change color with this is the simple example which represent the case #include <FL/Fl.H> #include <FL/Fl_Window.H> #include <FL/Fl_Box.H> int main (int argc, char ** argv) { Fl_Window *window; Fl_Box *box,*box2; window = new Fl_Window (300, 360); box = new Fl_Box (20, 40, 260, 100, "Hello World!"); box2 = new Fl_Box (20, 160, 260, 100, "Hello World 2 !"); box->box (FL_UP_BOX); box2->box (FL_ROUND_DOWN_BOX); box->color(fl_rgb_color(0,255,0)); box2->color(fl_rgb_color(0,255,0)); window->end (); window->show (argc, argv); return(Fl::run()); } Link: http://www.fltk.org/str.php?L2097 Version: 1.1.9 _______________________________________________ fltk-bugs mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-bugs
