Jane wrote:
> hello there,
> 
> is there some switch to toggle tooltips globally in FLTK 
> 1.1? if not, is there some simple way to archieve the same 
>   (eg without having to iterate to every single widget and 
> disable its tooltip)?
> 
> ty, jane

I believe you want:

        Fl_Tooltip::enable(0|1);

        
http://fltk.org/documentation.php/doc-1.1/Fl_Tooltip.html#Fl_Tooltip.enable

And also, Fl::args() apparently supports the user-controllable
command line options '-tooltips' and '-notooltips', eg:

        -tooltips and -notooltips: Enables or disables tooltips
        using Fl_Tooltip::enable().

        http://fltk.org/documentation.php/doc-1.1/Fl.html#Fl.args
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to