#include <FL/Fl.H> #include <FL/Fl_Window.H> #include <FL/Fl_Check_Button.H>
int main() {
Fl_Window window( 10, 10, 100, 100, "Window" );
Fl_Check_Button button( 10, 20, 70, 25, "Button" );
button.color( FL_BLACK, FL_RED ); // How black square with red check?
window.end();
window.show();
return Fl::run();
}
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

