1
Window / Window Styles
« on: March 22, 2011, 08:09:41 pm »
Hello I'm new to SFML, and I was wondering what all the Window Styles do.
I tried looking around this site but I can't seem to find the exact info I'm looking for.
I can easily tell what Fullscreen and Resize do.
But what about Close and Titlebar? And what happens if None is used?
If anyone could tell me or point me in the right direction to find the info (Like a link, not google),
I would be quite appreciative.
I tried looking around this site but I can't seem to find the exact info I'm looking for.
Code: [Select]
enum
{
None = 0,
Titlebar = 1 << 0,
Resize = 1 << 1,
Close = 1 << 2,
Fullscreen = 1 << 3
};
I can easily tell what Fullscreen and Resize do.
But what about Close and Titlebar? And what happens if None is used?
If anyone could tell me or point me in the right direction to find the info (Like a link, not google),
I would be quite appreciative.