When I click on other window(LostFocus) setSize and setPosition gives me GainedFocus.
SFML 2.1 on Windows XP.
#include <SFML/Graphics.hpp>
#include <iostream>
int main()
{
sf::Window app(sf::VideoMode(100, 100), "SFML window");
//sf::RenderWindow app(sf::VideoMode(100, 100), "SFML window");
while (app.isOpen())
{
//app.setPosition(app.getPosition());
app.setSize(app.getSize());
sf::Event event;
while (app.pollEvent(event))
{
if (event.type == sf::Event::Closed)
app.close();
else if(event.type == sf::Event::LostFocus)
std::cout << "LostFocus" << std::endl;
else if(event.type == sf::Event::GainedFocus)
std::cout << "GainedFocus" << std::endl;
}
}
return 0;
}
It just trigger GainedFocus event when losing focus.
My solution is add flag SWP_NOACTIVATE but I have no idea, if it's good idea.
void WindowImplWin32::setPosition(const Vector2i& position)
{
SetWindowPos(m_handle, NULL, position.x, position.y, 0, 0, SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
}
void WindowImplWin32::setSize(const Vector2u& size)
{
// SetWindowPos wants the total size of the window (including title bar and borders),
// so we have to compute it
RECT rectangle = {0, 0, static_cast<long>(size.x), static_cast<long>(size.y)};
AdjustWindowRect(&rectangle, GetWindowLong(m_handle, GWL_STYLE), false);
int width = rectangle.right - rectangle.left;
int height = rectangle.bottom - rectangle.top;
SetWindowPos(m_handle, NULL, 0, 0, width, height, SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
}