> I'm evaluating FLTK, and my initial reaction is that it does > most of things I want while being a lot cleaner than all the > alternatives. One thing which does bother me however is the > fact that in all the applications I've viewed as well as > tutorials the GUI looks like it's from the windows 95 era. Is > it possible to get the widget looks used in the .NET > framework on windows?
Not really - it doesn't actually use any native widgets, so there's no way to just "pick up" the native widget look. However, the way fltk works, it is fairly easy to make your own widget look. There are 3 built in looks - see Fl::scheme() in the docs - the default look (which I think is actually styled after fvwm or something rather than explicitly win95) "plastic" or "gtk+". If none of those suit (and I confess I can't visualize what the .NET look is...) then you can make your own widget styles, or even take over drawing of the widgets entirely. For a few worked examples of the latter, see: http://www.seriss.com/people/erco/fltk/Fl_Gel_Tabs/ http://www.seriss.com/people/erco/fltk/Fl_Matte_Button/ http://www.9edgedown.talktalk.net/gel_buttons.html Don't know if any of that is any help... -- Ian 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

