After reading this thread.
I just have a look at gtkmm, Ultimate++, wxWidgets.
gtkmm doesn't satisfy me. cuz_its_coding_style_is_ugly_to_me_as_a_main_lib().
Ultimate++ seems OK. and it has comparisons to its competitor.
Anyway, I don't see how it can be used with MSVC.
wxWidgets seems OK as it can be used with MSVC and ItsCodingStyleIsOK() (In fact, it looks like MFC).
So, I'm just learning wxWidgets.
By the way, I have a look at wxSFMLCanvas and compile it.
Does this code say "rotate sprite when click left or right"?
// Rotate the sprite
if (GetInput().IsMouseButtonDown(sf::Mouse::Left)) mySprite.Rotate( GetFrameTime() * 50);
if (GetInput().IsMouseButtonDown(sf::Mouse::Right)) mySprite.Rotate(-GetFrameTime() * 50);
It cannot rotate when I click it
I grab SFML2 from svn repository rev 1422 :wink: