SFML community forums

General => SFML projects => Topic started by: Simonge on July 26, 2015, 09:15:01 pm

Title: Qt 5 & SFML 2 integration with events
Post by: Simonge on July 26, 2015, 09:15:01 pm
Hello everyone.

I was working on a level editor, as such I decided to use Qt for native widgets and dialogs.
Unfortunately, SFML-specific events don't work out of the box in Qt 5 (http://www.qtcentre.org/threads/52568-Qt5-native-messages-not-propogated).

I rolled a hacky solution that translates Qt events into SFML events. Left/right control, shift, system and alt buttons are currently undifferentiated as Qt sees them as one button, but everything else seems to work well.

This is based on the Qt + SFML 1.6 tutorial (http://www.sfml-dev.org/tutorials/1.6/graphics-qt.php) and this (http://becomingindiedev.blogspot.co.uk/2013/10/qt-5-and-sfml-20-integration.html) article, I simply got rid of multiple inheritance, added signals instead of forcing the user to inherit from Canvas and added code that translates events.

https://bitbucket.org/Simonge/qsf
Title: Re: Qt 5 & SFML 2 integration with events
Post by: Laurent on July 26, 2015, 10:41:39 pm
Quote
I rolled a hacky solution that translates Qt events into SFML events.
And why don't you just use Qt events directly?
Title: Re: Qt 5 & SFML 2 integration with events
Post by: Simonge on July 26, 2015, 11:39:07 pm
And why don't you just use Qt events directly?

I wanted to have the ability to try out a level inside of the editor. If I were to use Qt events directly, I would have to implement input logic twice as the game itself doesn't use Qt. Basically, I have a "Play" button inside of the editor that allows me to jump in and check things out without having to "run" the game.