SFML community forums

Help => Window => Topic started by: maly on June 27, 2014, 10:59:53 am

Title: Unexpected GainedFocus event
Post by: maly on June 27, 2014, 10:59:53 am
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;
}
Title: AW: Unexpected GainedFocus event
Post by: eXpl0it3r on June 27, 2014, 11:12:28 am
Does it just trigger the event or do you actually get focus on the window?
If the window gets the focus, everything works as expected. The window manager decides whether it gives focus to the window up on resizing or repositioning.
Title: Re: Unexpected GainedFocus event
Post by: maly on June 27, 2014, 12:49:14 pm
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);
}
Title: Re: Unexpected GainedFocus event
Post by: eXpl0it3r on June 27, 2014, 01:14:29 pm
It just trigger GainedFocus event when losing focus.
You might want to express yourself better...

Am I understanding you right, that if the window has lost the focus and you call setPosition or setSize the event GainedFocus will get triggered, but the window doesn't get the focus?
Title: Re: Unexpected GainedFocus event
Post by: maly on February 09, 2015, 09:25:43 am
I was reminded of this problem.

I'll explain it as simply as I can.

Expected result
Code: [Select]
click outside the window LostFocus
click inside the window GainedFocus

But result is
Code: [Select]
click outside the window LostFocus and GainedFocus
click inside the window ??? nothing
Title: AW: Unexpected GainedFocus event
Post by: eXpl0it3r on February 09, 2015, 09:32:40 am
Hehe that lag. :D

What version of SFML are you using?
Title: Re: Unexpected GainedFocus event
Post by: maly on February 09, 2015, 10:23:09 am
Today compiled from the master.
Title: Re: Unexpected GainedFocus event
Post by: Mario on February 13, 2015, 09:31:46 am
Never tried resizing while the window is active, but the flags sound reasonable (assuming using them there is viable/allowed, which I haven't checked yet).