> Does programmatically changing the value of a check button (e.g. 
> button->value(1)) trigger its callback? Or should it have to be through a 
> mouse click?
>
> Thanks,
> Oguz

it does not trigger the callback, but you can trigger it by calling 
do_callback();

eg like so:
button->value(1);
button->do_callback();

jan
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to