I want to hide the Minimize/Maximize/Close buttons as well as disable doing the same thing from the task bar temporarily for a splash screen. Is this possible? If so, how?
Currently, the part of my SplashScreen class is this:
void SplashScreen::Show(sf::RenderWindow& window)
{
sf::Image splash;
if(splash.LoadFromFile("images/PongSplash.png") != true) //Check if it's valid, if not, skip over the splash screen completely.
return;
window.Close();
window.Create(sf::VideoMode(splash.GetWidth(), splash.GetHeight()), "Pong!");
sf::Sprite sprite(splash);
window.Draw(sprite);
window.Display();
//Code to loop and close screen here
}