Window/Window.h
Go to the documentation of this file.
1 
2 //
3 // SFML - Simple and Fast Multimedia Library
4 // Copyright (C) 2007-2013 Laurent Gomila (laurent.gom@gmail.com)
5 //
6 // This software is provided 'as-is', without any express or implied warranty.
7 // In no event will the authors be held liable for any damages arising from the use of this software.
8 //
9 // Permission is granted to anyone to use this software for any purpose,
10 // including commercial applications, and to alter it and redistribute it freely,
11 // subject to the following restrictions:
12 //
13 // 1. The origin of this software must not be misrepresented;
14 // you must not claim that you wrote the original software.
15 // If you use this software in a product, an acknowledgment
16 // in the product documentation would be appreciated but is not required.
17 //
18 // 2. Altered source versions must be plainly marked as such,
19 // and must not be misrepresented as being the original software.
20 //
21 // 3. This notice may not be removed or altered from any source distribution.
22 //
24 
25 #ifndef SFML_WINDOW_H
26 #define SFML_WINDOW_H
27 
29 // Headers
31 #include <SFML/Window/Export.h>
32 #include <SFML/Window/Event.h>
33 #include <SFML/Window/VideoMode.h>
35 #include <SFML/Window/Types.h>
36 #include <SFML/System/Vector2.h>
37 
38 
43 enum
44 {
45  sfNone = 0,
46  sfTitlebar = 1 << 0,
47  sfResize = 1 << 1,
48  sfClose = 1 << 2,
49  sfFullscreen = 1 << 3,
51 };
52 
53 
58 typedef struct
59 {
60  unsigned int depthBits;
61  unsigned int stencilBits;
62  unsigned int antialiasingLevel;
63  unsigned int majorVersion;
64  unsigned int minorVersion;
66 
67 
89 CSFML_WINDOW_API sfWindow* sfWindow_create(sfVideoMode mode, const char* title, sfUint32 style, const sfContextSettings* settings);
90 
113 
130 CSFML_WINDOW_API sfWindow* sfWindow_createFromHandle(sfWindowHandle handle, const sfContextSettings* settings);
131 
139 
153 
167 
182 
199 
218 
228 
241 
254 
263 
271 CSFML_WINDOW_API void sfWindow_setTitle(sfWindow* window, const char* title);
272 
280 CSFML_WINDOW_API void sfWindow_setUnicodeTitle(sfWindow* window, const sfUint32* title);
281 
294 CSFML_WINDOW_API void sfWindow_setIcon(sfWindow* window, unsigned int width, unsigned int height, const sfUint8* pixels);
295 
303 CSFML_WINDOW_API void sfWindow_setVisible(sfWindow* window, sfBool visible);
304 
313 
327 
342 
360 
373 
385 CSFML_WINDOW_API void sfWindow_setFramerateLimit(sfWindow* window, unsigned int limit);
386 
397 CSFML_WINDOW_API void sfWindow_setJoystickThreshold(sfWindow* window, float threshold);
398 
413 CSFML_WINDOW_API sfWindowHandle sfWindow_getSystemHandle(const sfWindow* window);
414 
415 
416 #endif // SFML_WINDOW_H