> OK - better idea... In Fl_win32.c, line 79 we have: > > #if !defined(__GNUC__) > # define USE_TRACK_MOUSE > #endif // !__GNUC__ > > I'm guessing that's your culprit right there. Haven't tried it (don't > have VC2005 to test with) but I guess commenting that out of > your build > might be worth a try. > > Not clear what the USE_TRACK_MOUSE stuff is actually meant to > do, since > the mingw build (that does not use it) seems to function just fine... > Maybe someone else knows?
Aaaand... that explains why the fltk-2 bug reported earlier happens. Fltk-2 always uses TrackMouseEvent(...), since it is supported by more recent versions of gcc, and all winXX platforms since win98. So, to "fix" the fltk-2 bug, edit fltk-2's src/win32/run.cxx and at line 1236, you can un-comment the line; //#define NO_TRACK_MOUSE 1 And magically the change-the-cursor-over-gl-window problem disappears... SELEX Sensors and Airborne Systems Limited 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

