> > Yes, in fltk2 default color of border box is grey and currently there is no > function to change it. On other hand, you can have your own BORDER_BOX > with desired color deriving FrameBox and override _draw(). > > Here is doc about it: http://www.fltk.org/doc-2.0/html/classFrameBox.html > or you can check how is done in UpBox.cxx or PlasticBox.cxx. > -- > Sanel
Thank you for that, it did exactly what I wanted. For anyone else here it is exactly #include <fltk/Box.h> static FrameBox black_border_box(0,0,0,0,0,"AAAA",0); Box* const BLACK_BORDER_BOX = &black_border_box; Owen _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

