DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.
[STR New] Link: http://www.fltk.org/str.php?L1385 Version: 2.0-current Yuri, you asked for comments - here are mine: I'm not at FLTK 2 developer or user, but I see these problems: 1) using BITMAPV5HEADER broke old mingw builds. IMHO it is possible to use BITMAPV4HEADER, this would *maybe* fix this. Using BITMAPHEADER didn't work - you would need to recode the R/G/B mode. 2) building on Linux without lib Xcursor didn't work because USE_XCURSOR is defined anyway (as 0). You should change "#ifdef USE_XCURSOR" to "#if USE_XCURSOR" - this fixed it for me. 3) the #warning doesn't compile on all compilers, it's probably only supported by gcc. It should be guarded by "#if defined(__GNUC__)" - that's what we did in FLTK 1.1. That said, I don't think that it is a good idea to have a dependency on yet another lib. Maybe you should take a look at Matthias' Flmm_Cursor_Shape. IIRC this would also work for Mac, but I don't know if it can be used without too many changes. Matthias, what do you think about this? I can imagine to have the nice cursor editor as another demo program, please see also http://www.fltk.org/str.php?L2192 Would this also be usable to make cursors from images? Link: http://www.fltk.org/str.php?L1385 Version: 2.0-current _______________________________________________ fltk-bugs mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-bugs
