Hi,
I'm customizing drawing boxes using Fl::set_boxtype callback because I use CFLTK (actually PasFLTK binding) so I can't use any inheritance. Fl_Button and Fl_input use the same FL_DOWN_BOX and I would like to draw it differently depending if current drawing widget is Fl_Button or Fl_input. I can define own box type by FL_FREE_BOXTYPE but disadvantage is:
1. I have to set this box for each widget
2. It will not affect FLTK dialogs for example Fl_File_Chooser etc.
Is there any trick to do this globaly?
Regards