SFML community forums

Help => Window => Topic started by: Timmm on March 09, 2013, 09:56:54 am

Title: hold window in the foreground
Post by: Timmm on March 09, 2013, 09:56:54 am
I have made a programm with 2 windows. One window will always stand in the foreground even if the other window is selected. How can i realize that?
Title: Re: hold window in the foreground
Post by: eXpl0it3r on March 09, 2013, 10:14:55 am
SFML doesn't provide such functionality, so you'll have to use OS specific code.
Keep in mind that SFML isn't a GUI library and if you want dialog boxes and other stuff, you should look at Qt or similar libraries. With SFML I usually suggest to use an in-game GUI such as SFGUI (http://sfgui.sfml-dev.de/).
Title: Re: hold window in the foreground
Post by: Timmm on March 09, 2013, 10:20:04 am
Ok    thanks!