> Done; r9146.
> It's a start.
>
> Everyone, feel free to suggest FAQ items.
> Devs, feel free to add to this as you like.
>
> The new doxygen file: documentation/src/faq.dox
>
> There's a link on the FLTK docs front page, at the end
> of the Appendix section.
>
> I started with easy stuff:
>
> Where do I start learning FLTK?
> How do a make a box with text?
> Can I use FLTK to make closed-source commercial applications?
> Hitting the 'Escape' key closes windows - how do I prevent this?
>
> Some low hanging fruit that should be added as well:
>
> How do I suggest code for inclusion in FLTK?
> What do the FLTK version numbers mean?
> How do I make icons for my app?
> How do I use DLLs?
> How do I link to FLTK statically?
> Why don't I see my printf() output in MS Windows apps?
>
> And there's lots of others.
>
> I intend to raid the FLTK articles dbase, and will try to
> pull the entire fltk.general dbase to search for "FAQ"
> and see what articles come up.
>
> Also the 'Comments' to the 1.1.x docs have some good Q's.
> Also, my cheat sheet probably has a lot of FAQ items within it.
Definitiely your cheat-sheet.
Also, if grepping thorough the dbase, might be worth looking for howto
as well as FAQ, as there's some good nuggets in there too I think..
Oh, and one handy trick that's been asked about a few time recently is
how to close all the open windows in your app (assuming it has multiple
windows...)
Something like:
static void cb_close_all(Fl_Widget*, void*) {
Fl_Window *win = Fl::first_window();
while(win) {
Fl_Window *tmp = win;
win = Fl::next_window(win);
tmp->hide();
}
}
Might do the trick...
SELEX Galileo Ltd
Registered Office: Sigma House, Christopher Martin Road, Basildon, Essex SS14
3EL
A company registered in England & Wales. Company no. 02426132
********************************************************************
This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.
********************************************************************
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk