> I'm going to take a wild guess that you are on some Windows platform
> (since this sort of window behaviour is common in win32 land) in which
> case you will be needing to set the HWND_TOPMOST (or maybe
> WS_EX_TOPMOST) attribute on your window, which is probably done most
> easily by modifying the attributes of the window using the win32
> function SetWindowPos(...)
> 
> Note that, like most win32 API calls, the parameter list for, and the
> use of, SetWindowPos(...) is pretty opaque to understand...


Without actually trying it, it looks like maybe something like this
could work:

        HWND hw = fl_xid(my_window);
        SetWindowPos(hw, HWND_TOPMOST, 0, 0, 0, 0, (SWP_NOMOVE |
SWP_NOSIZE | SWP_SHOWWINDOW));








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

Reply via email to