Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
824 lines (733 loc) · 25.9 KB

SDL_video.h

File metadata and controls

824 lines (733 loc) · 25.9 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
*/
Jul 10, 2006
Jul 10, 2006
23
/**
Oct 19, 2009
Oct 19, 2009
24
25
26
* \file SDL_video.h
*
* Header file for SDL video functions.
Jul 10, 2006
Jul 10, 2006
27
*/
Apr 26, 2001
Apr 26, 2001
28
29
30
31
#ifndef _SDL_video_h
#define _SDL_video_h
Feb 10, 2006
Feb 10, 2006
32
#include "SDL_stdinc.h"
Jul 10, 2006
Jul 10, 2006
33
#include "SDL_pixels.h"
Sep 10, 2007
Sep 10, 2007
34
35
#include "SDL_rect.h"
#include "SDL_surface.h"
Apr 26, 2001
Apr 26, 2001
36
37
38
39
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
Jul 10, 2006
Jul 10, 2006
40
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
41
extern "C" {
Jul 10, 2006
Jul 10, 2006
42
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
43
44
#endif
Jul 10, 2006
Jul 10, 2006
45
/**
Oct 19, 2009
Oct 19, 2009
46
47
48
49
50
51
52
* \brief The structure that defines a display mode
*
* \sa SDL_GetNumDisplayModes()
* \sa SDL_GetDisplayMode()
* \sa SDL_GetDesktopDisplayMode()
* \sa SDL_GetCurrentDisplayMode()
* \sa SDL_GetClosestDisplayMode()
Dec 1, 2009
Dec 1, 2009
53
54
* \sa SDL_SetWindowDisplayMode()
* \sa SDL_GetWindowDisplayMode()
Jul 10, 2006
Jul 10, 2006
55
56
57
58
59
60
61
62
63
64
65
*/
typedef struct
{
Uint32 format; /**< pixel format */
int w; /**< width */
int h; /**< height */
int refresh_rate; /**< refresh rate (or zero for unspecified) */
void *driverdata; /**< driver-specific data, initialize to 0 */
} SDL_DisplayMode;
/**
Oct 19, 2009
Oct 19, 2009
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
* \brief The type used to identify a window
*
* \sa SDL_CreateWindow()
* \sa SDL_CreateWindowFrom()
* \sa SDL_DestroyWindow()
* \sa SDL_GetWindowData()
* \sa SDL_GetWindowFlags()
* \sa SDL_GetWindowGrab()
* \sa SDL_GetWindowPosition()
* \sa SDL_GetWindowSize()
* \sa SDL_GetWindowTitle()
* \sa SDL_HideWindow()
* \sa SDL_MaximizeWindow()
* \sa SDL_MinimizeWindow()
* \sa SDL_RaiseWindow()
* \sa SDL_RestoreWindow()
* \sa SDL_SetWindowData()
* \sa SDL_SetWindowFullscreen()
* \sa SDL_SetWindowGrab()
* \sa SDL_SetWindowIcon()
* \sa SDL_SetWindowPosition()
* \sa SDL_SetWindowSize()
* \sa SDL_SetWindowTitle()
* \sa SDL_ShowWindow()
Jul 10, 2006
Jul 10, 2006
90
*/
Jan 21, 2010
Jan 21, 2010
91
typedef struct SDL_Window SDL_Window;
Jul 10, 2006
Jul 10, 2006
92
93
/**
Oct 19, 2009
Oct 19, 2009
94
95
96
* \brief The flags on a window
*
* \sa SDL_GetWindowFlags()
Jul 10, 2006
Jul 10, 2006
97
98
99
100
101
102
103
104
*/
typedef enum
{
SDL_WINDOW_FULLSCREEN = 0x00000001, /**< fullscreen window, implies borderless */
SDL_WINDOW_OPENGL = 0x00000002, /**< window usable with OpenGL context */
SDL_WINDOW_SHOWN = 0x00000004, /**< window is visible */
SDL_WINDOW_BORDERLESS = 0x00000008, /**< no window decoration */
SDL_WINDOW_RESIZABLE = 0x00000010, /**< window can be resized */
Dec 5, 2009
Dec 5, 2009
105
106
SDL_WINDOW_MINIMIZED = 0x00000020, /**< window is minimized */
SDL_WINDOW_MAXIMIZED = 0x00000040, /**< window is maximized */
Jul 10, 2006
Jul 10, 2006
107
108
SDL_WINDOW_INPUT_GRABBED = 0x00000100, /**< window has grabbed input focus */
SDL_WINDOW_INPUT_FOCUS = 0x00000200, /**< window has input focus */
Feb 9, 2009
Feb 9, 2009
109
110
SDL_WINDOW_MOUSE_FOCUS = 0x00000400, /**< window has mouse focus */
SDL_WINDOW_FOREIGN = 0x00000800 /**< window not created by SDL */
Jul 10, 2006
Jul 10, 2006
111
112
113
} SDL_WindowFlags;
/**
Oct 19, 2009
Oct 19, 2009
114
* \brief Used to indicate that you don't care what the window position is.
Jul 10, 2006
Jul 10, 2006
115
116
*/
#define SDL_WINDOWPOS_UNDEFINED 0x7FFFFFF
Oct 19, 2009
Oct 19, 2009
117
Jul 10, 2006
Jul 10, 2006
118
/**
Oct 19, 2009
Oct 19, 2009
119
* \brief Used to indicate that the window position should be centered.
Jul 10, 2006
Jul 10, 2006
120
121
122
123
*/
#define SDL_WINDOWPOS_CENTERED 0x7FFFFFE
/**
Oct 19, 2009
Oct 19, 2009
124
* \brief Event subtype for window events
Jul 10, 2006
Jul 10, 2006
125
126
127
*/
typedef enum
{
Oct 19, 2009
Oct 19, 2009
128
129
130
131
132
133
134
135
136
137
138
139
SDL_WINDOWEVENT_NONE, /**< Never used */
SDL_WINDOWEVENT_SHOWN, /**< Window has been shown */
SDL_WINDOWEVENT_HIDDEN, /**< Window has been hidden */
SDL_WINDOWEVENT_EXPOSED, /**< Window has been exposed and should be
redrawn */
SDL_WINDOWEVENT_MOVED, /**< Window has been moved to data1, data2
*/
SDL_WINDOWEVENT_RESIZED, /**< Window size changed to data1xdata2 */
SDL_WINDOWEVENT_MINIMIZED, /**< Window has been minimized */
SDL_WINDOWEVENT_MAXIMIZED, /**< Window has been maximized */
SDL_WINDOWEVENT_RESTORED, /**< Window has been restored to normal size
and position */
Jan 22, 2010
Jan 22, 2010
140
141
142
143
SDL_WINDOWEVENT_ENTER, /**< Window has gained mouse focus */
SDL_WINDOWEVENT_LEAVE, /**< Window has lost mouse focus */
SDL_WINDOWEVENT_FOCUS_GAINED, /**< Window has gained keyboard focus */
SDL_WINDOWEVENT_FOCUS_LOST, /**< Window has lost keyboard focus */
Oct 19, 2009
Oct 19, 2009
144
145
SDL_WINDOWEVENT_CLOSE /**< The window manager requests that the
window be closed */
Jul 10, 2006
Jul 10, 2006
146
147
148
} SDL_WindowEventID;
/**
Oct 19, 2009
Oct 19, 2009
149
* \brief An opaque handle to an OpenGL context.
Jul 10, 2006
Jul 10, 2006
150
151
152
153
*/
typedef void *SDL_GLContext;
/**
Oct 19, 2009
Oct 19, 2009
154
* \brief OpenGL configuration attributes
Jul 10, 2006
Jul 10, 2006
155
156
157
*/
typedef enum
{
Apr 26, 2001
Apr 26, 2001
158
159
160
161
162
163
164
165
166
167
168
SDL_GL_RED_SIZE,
SDL_GL_GREEN_SIZE,
SDL_GL_BLUE_SIZE,
SDL_GL_ALPHA_SIZE,
SDL_GL_BUFFER_SIZE,
SDL_GL_DOUBLEBUFFER,
SDL_GL_DEPTH_SIZE,
SDL_GL_STENCIL_SIZE,
SDL_GL_ACCUM_RED_SIZE,
SDL_GL_ACCUM_GREEN_SIZE,
SDL_GL_ACCUM_BLUE_SIZE,
Aug 19, 2002
Aug 19, 2002
169
SDL_GL_ACCUM_ALPHA_SIZE,
Jul 22, 2003
Jul 22, 2003
170
SDL_GL_STEREO,
Jul 22, 2003
Jul 22, 2003
171
SDL_GL_MULTISAMPLEBUFFERS,
Apr 27, 2006
Apr 27, 2006
172
SDL_GL_MULTISAMPLESAMPLES,
Sep 2, 2008
Sep 2, 2008
173
SDL_GL_ACCELERATED_VISUAL,
Mar 24, 2009
Mar 24, 2009
174
SDL_GL_RETAINED_BACKING,
May 23, 2009
May 23, 2009
175
176
SDL_GL_CONTEXT_MAJOR_VERSION,
SDL_GL_CONTEXT_MINOR_VERSION
Apr 26, 2001
Apr 26, 2001
177
178
179
180
181
} SDL_GLattr;
/* Function prototypes */
Jul 10, 2006
Jul 10, 2006
182
/**
Oct 19, 2009
Oct 19, 2009
183
184
185
* \brief Get the number of video drivers compiled into SDL
*
* \sa SDL_GetVideoDriver()
Jul 10, 2006
Jul 10, 2006
186
187
188
189
*/
extern DECLSPEC int SDLCALL SDL_GetNumVideoDrivers(void);
/**
Oct 19, 2009
Oct 19, 2009
190
191
192
193
194
195
* \brief Get the name of a built in video driver.
*
* \note The video drivers are presented in the order in which they are
* normally checked during initialization.
*
* \sa SDL_GetNumVideoDrivers()
Jul 10, 2006
Jul 10, 2006
196
197
198
199
*/
extern DECLSPEC const char *SDLCALL SDL_GetVideoDriver(int index);
/**
Oct 19, 2009
Oct 19, 2009
200
201
202
203
204
205
206
207
208
209
210
211
* \brief Initialize the video subsystem, optionally specifying a video driver.
*
* \param driver_name Initialize a specific driver by name, or NULL for the
* default video driver.
*
* \return 0 on success, -1 on error
*
* This function initializes the video subsystem; setting up a connection
* to the window manager, etc, and determines the available display modes
* and pixel formats, but does not initialize a window or graphics mode.
*
* \sa SDL_VideoQuit()
Jul 10, 2006
Jul 10, 2006
212
*/
Jan 28, 2011
Jan 28, 2011
213
extern DECLSPEC int SDLCALL SDL_VideoInit(const char *driver_name);
Jul 10, 2006
Jul 10, 2006
214
215
/**
Oct 19, 2009
Oct 19, 2009
216
217
218
219
220
* \brief Shuts down the video subsystem.
*
* This function closes all windows, and restores the original video mode.
*
* \sa SDL_VideoInit()
Apr 26, 2001
Apr 26, 2001
221
*/
Apr 11, 2002
Apr 11, 2002
222
extern DECLSPEC void SDLCALL SDL_VideoQuit(void);
Apr 26, 2001
Apr 26, 2001
223
Jul 10, 2006
Jul 10, 2006
224
/**
Oct 19, 2009
Oct 19, 2009
225
226
227
228
229
230
231
* \brief Returns the name of the currently initialized video driver.
*
* \return The name of the current video driver or NULL if no driver
* has been initialized
*
* \sa SDL_GetNumVideoDrivers()
* \sa SDL_GetVideoDriver()
Apr 26, 2001
Apr 26, 2001
232
*/
Jul 10, 2006
Jul 10, 2006
233
extern DECLSPEC const char *SDLCALL SDL_GetCurrentVideoDriver(void);
Apr 26, 2001
Apr 26, 2001
234
Jul 10, 2006
Jul 10, 2006
235
/**
Oct 19, 2009
Oct 19, 2009
236
237
* \brief Returns the number of available video displays.
*
Dec 6, 2009
Dec 6, 2009
238
* \sa SDL_GetDisplayBounds()
Oct 19, 2009
Oct 19, 2009
239
* \sa SDL_SelectVideoDisplay()
Apr 26, 2001
Apr 26, 2001
240
*/
Jul 10, 2006
Jul 10, 2006
241
extern DECLSPEC int SDLCALL SDL_GetNumVideoDisplays(void);
Apr 26, 2001
Apr 26, 2001
242
Dec 6, 2009
Dec 6, 2009
243
244
245
246
247
248
249
250
251
252
/**
* \brief Get the desktop area represented by a display, with the primary
* display located at 0,0
*
* \return 0 on success, or -1 if the index is out of range.
*
* \sa SDL_GetNumVideoDisplays()
*/
extern DECLSPEC int SDLCALL SDL_GetDisplayBounds(int index, SDL_Rect * rect);
Jul 10, 2006
Jul 10, 2006
253
/**
Oct 19, 2009
Oct 19, 2009
254
255
256
257
258
259
* \brief Set the index of the currently selected display.
*
* \return 0 on success, or -1 if the index is out of range.
*
* \sa SDL_GetNumVideoDisplays()
* \sa SDL_GetCurrentVideoDisplay()
Apr 26, 2001
Apr 26, 2001
260
*/
Jul 10, 2006
Jul 10, 2006
261
extern DECLSPEC int SDLCALL SDL_SelectVideoDisplay(int index);
Apr 26, 2001
Apr 26, 2001
262
Aug 2, 2006
Aug 2, 2006
263
/**
Oct 19, 2009
Oct 19, 2009
264
265
266
267
268
269
* \brief Get the index of the currently selected display.
*
* \return The index of the currently selected display.
*
* \sa SDL_GetNumVideoDisplays()
* \sa SDL_SelectVideoDisplay()
Aug 2, 2006
Aug 2, 2006
270
271
272
*/
extern DECLSPEC int SDLCALL SDL_GetCurrentVideoDisplay(void);
Jul 10, 2006
Jul 10, 2006
273
/**
Oct 19, 2009
Oct 19, 2009
274
275
276
* \brief Returns the number of available display modes for the current display.
*
* \sa SDL_GetDisplayMode()
Apr 26, 2001
Apr 26, 2001
277
*/
Jul 10, 2006
Jul 10, 2006
278
extern DECLSPEC int SDLCALL SDL_GetNumDisplayModes(void);
Apr 26, 2001
Apr 26, 2001
279
Jul 10, 2006
Jul 10, 2006
280
/**
Oct 19, 2009
Oct 19, 2009
281
282
283
284
285
286
287
288
289
* \brief Fill in information about a specific display mode.
*
* \note The display modes are sorted in this priority:
* \li bits per pixel -> more colors to fewer colors
* \li width -> largest to smallest
* \li height -> largest to smallest
* \li refresh rate -> highest to lowest
*
* \sa SDL_GetNumDisplayModes()
Apr 26, 2001
Apr 26, 2001
290
*/
Aug 5, 2006
Aug 5, 2006
291
292
extern DECLSPEC int SDLCALL SDL_GetDisplayMode(int index,
SDL_DisplayMode * mode);
Apr 26, 2001
Apr 26, 2001
293
Jul 10, 2006
Jul 10, 2006
294
/**
Oct 19, 2009
Oct 19, 2009
295
296
* \brief Fill in information about the desktop display mode for the current
* display.
Jul 10, 2006
Jul 10, 2006
297
*/
Aug 5, 2006
Aug 5, 2006
298
extern DECLSPEC int SDLCALL SDL_GetDesktopDisplayMode(SDL_DisplayMode * mode);
Apr 26, 2001
Apr 26, 2001
299
Jul 10, 2006
Jul 10, 2006
300
/**
Oct 19, 2009
Oct 19, 2009
301
* \brief Fill in information about the current display mode.
Apr 26, 2001
Apr 26, 2001
302
*/
Aug 5, 2006
Aug 5, 2006
303
extern DECLSPEC int SDLCALL SDL_GetCurrentDisplayMode(SDL_DisplayMode * mode);
Apr 26, 2001
Apr 26, 2001
304
Oct 17, 2009
Oct 17, 2009
305
Jul 10, 2006
Jul 10, 2006
306
/**
Oct 19, 2009
Oct 19, 2009
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
* \brief Get the closest match to the requested display mode.
*
* \param mode The desired display mode
* \param closest A pointer to a display mode to be filled in with the closest
* match of the available display modes.
*
* \return The passed in value \c closest, or NULL if no matching video mode
* was available.
*
* The available display modes are scanned, and \c closest is filled in with the
* closest mode matching the requested mode and returned. The mode format and
* refresh_rate default to the desktop mode if they are 0. The modes are
* scanned with size being first priority, format being second priority, and
* finally checking the refresh_rate. If all the available modes are too
* small, then NULL is returned.
*
* \sa SDL_GetNumDisplayModes()
* \sa SDL_GetDisplayMode()
Apr 26, 2001
Apr 26, 2001
325
*/
Jul 10, 2006
Jul 10, 2006
326
327
328
329
330
331
332
extern DECLSPEC SDL_DisplayMode *SDLCALL SDL_GetClosestDisplayMode(const
SDL_DisplayMode
* mode,
SDL_DisplayMode
* closest);
/**
Oct 19, 2009
Oct 19, 2009
333
* \brief Set the display mode used when a fullscreen window is visible
Dec 1, 2009
Dec 1, 2009
334
335
* on the currently selected display. By default the window's
* dimensions and the desktop format and refresh rate are used.
Oct 19, 2009
Oct 19, 2009
336
*
Dec 1, 2009
Dec 1, 2009
337
* \param mode The mode to use, or NULL for the default mode.
Oct 19, 2009
Oct 19, 2009
338
339
340
*
* \return 0 on success, or -1 if setting the display mode failed.
*
Dec 5, 2009
Dec 5, 2009
341
* \sa SDL_GetWindowDisplayMode()
Oct 19, 2009
Oct 19, 2009
342
* \sa SDL_SetWindowFullscreen()
Jul 10, 2006
Jul 10, 2006
343
*/
Jan 21, 2010
Jan 21, 2010
344
extern DECLSPEC int SDLCALL SDL_SetWindowDisplayMode(SDL_Window * window,
Dec 1, 2009
Dec 1, 2009
345
const SDL_DisplayMode
Jul 10, 2006
Jul 10, 2006
346
* mode);
Apr 26, 2001
Apr 26, 2001
347
Jul 10, 2006
Jul 10, 2006
348
/**
Oct 19, 2009
Oct 19, 2009
349
350
* \brief Fill in information about the display mode used when a fullscreen
* window is visible on the currently selected display.
Dec 5, 2009
Dec 5, 2009
351
352
353
*
* \sa SDL_SetWindowDisplayMode()
* \sa SDL_SetWindowFullscreen()
Jul 10, 2006
Jul 10, 2006
354
*/
Jan 21, 2010
Jan 21, 2010
355
extern DECLSPEC int SDLCALL SDL_GetWindowDisplayMode(SDL_Window * window,
Dec 1, 2009
Dec 1, 2009
356
SDL_DisplayMode * mode);
Jul 10, 2006
Jul 10, 2006
357
Feb 2, 2011
Feb 2, 2011
358
359
360
361
362
/**
* \brief Get the pixel format associated with the window.
*/
extern DECLSPEC Uint32 SDLCALL SDL_GetWindowPixelFormat(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
363
/**
Oct 19, 2009
Oct 19, 2009
364
365
366
367
368
369
* \brief Set the gamma correction for each of the color channels on the
* currently selected display.
*
* \return 0 on success, or -1 if setting the gamma isn't supported.
*
* \sa SDL_SetGammaRamp()
Apr 26, 2001
Apr 26, 2001
370
*/
Apr 11, 2002
Apr 11, 2002
371
extern DECLSPEC int SDLCALL SDL_SetGamma(float red, float green, float blue);
Apr 26, 2001
Apr 26, 2001
372
Jul 10, 2006
Jul 10, 2006
373
/**
Oct 19, 2009
Oct 19, 2009
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
* \brief Set the gamma ramp for the currently selected display.
*
* \param red The translation table for the red channel, or NULL.
* \param green The translation table for the green channel, or NULL.
* \param blue The translation table for the blue channel, or NULL.
*
* \return 0 on success, or -1 if gamma ramps are unsupported.
*
* Set the gamma translation table for the red, green, and blue channels
* of the video hardware. Each table is an array of 256 16-bit quantities,
* representing a mapping between the input and output for that channel.
* The input is the index into the array, and the output is the 16-bit
* gamma value at that index, scaled to the output color precision.
*
* \sa SDL_GetGammaRamp()
Apr 26, 2001
Apr 26, 2001
389
*/
Jul 10, 2006
Jul 10, 2006
390
391
392
extern DECLSPEC int SDLCALL SDL_SetGammaRamp(const Uint16 * red,
const Uint16 * green,
const Uint16 * blue);
Apr 26, 2001
Apr 26, 2001
393
Jul 10, 2006
Jul 10, 2006
394
/**
Oct 19, 2009
Oct 19, 2009
395
396
397
398
399
400
401
402
403
404
405
406
* \brief Get the gamma ramp for the currently selected display.
*
* \param red A pointer to a 256 element array of 16-bit quantities to hold
* the translation table for the red channel, or NULL.
* \param green A pointer to a 256 element array of 16-bit quantities to hold
* the translation table for the green channel, or NULL.
* \param blue A pointer to a 256 element array of 16-bit quantities to hold
* the translation table for the blue channel, or NULL.
*
* \return 0 on success, or -1 if gamma ramps are unsupported.
*
* \sa SDL_SetGammaRamp()
Apr 26, 2001
Apr 26, 2001
407
*/
Jul 10, 2006
Jul 10, 2006
408
409
extern DECLSPEC int SDLCALL SDL_GetGammaRamp(Uint16 * red, Uint16 * green,
Uint16 * blue);
Apr 26, 2001
Apr 26, 2001
410
411
Jul 10, 2006
Jul 10, 2006
412
/**
Oct 19, 2009
Oct 19, 2009
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
* \brief Create a window with the specified position, dimensions, and flags.
*
* \param title The title of the window, in UTF-8 encoding.
* \param x The x position of the window, ::SDL_WINDOWPOS_CENTERED, or
* ::SDL_WINDOWPOS_UNDEFINED.
* \param y The y position of the window, ::SDL_WINDOWPOS_CENTERED, or
* ::SDL_WINDOWPOS_UNDEFINED.
* \param w The width of the window.
* \param h The height of the window.
* \param flags The flags for the window, a mask of any of the following:
* ::SDL_WINDOW_FULLSCREEN, ::SDL_WINDOW_OPENGL,
* ::SDL_WINDOW_SHOWN, ::SDL_WINDOW_BORDERLESS,
* ::SDL_WINDOW_RESIZABLE, ::SDL_WINDOW_MAXIMIZED,
* ::SDL_WINDOW_MINIMIZED, ::SDL_WINDOW_INPUT_GRABBED.
*
* \return The id of the window created, or zero if window creation failed.
*
* \sa SDL_DestroyWindow()
Jul 10, 2006
Jul 10, 2006
431
*/
Jan 21, 2010
Jan 21, 2010
432
extern DECLSPEC SDL_Window * SDLCALL SDL_CreateWindow(const char *title,
Jul 10, 2006
Jul 10, 2006
433
434
435
436
int x, int y, int w,
int h, Uint32 flags);
/**
Nov 25, 2009
Nov 25, 2009
437
* \brief Create an SDL window from an existing native window.
Oct 19, 2009
Oct 19, 2009
438
439
440
441
442
443
*
* \param data A pointer to driver-dependent window creation data
*
* \return The id of the window created, or zero if window creation failed.
*
* \sa SDL_DestroyWindow()
Jul 10, 2006
Jul 10, 2006
444
*/
Jan 21, 2010
Jan 21, 2010
445
446
447
extern DECLSPEC SDL_Window * SDLCALL SDL_CreateWindowFrom(const void *data);
/**
Sep 15, 2010
Sep 15, 2010
448
* \brief Get the numeric ID of a window, for logging purposes.
Jan 21, 2010
Jan 21, 2010
449
450
451
452
453
454
455
*/
extern DECLSPEC Uint32 SDLCALL SDL_GetWindowID(SDL_Window * window);
/**
* \brief Get a window from a stored ID, or NULL if it doesn't exist.
*/
extern DECLSPEC SDL_Window * SDLCALL SDL_GetWindowFromID(Uint32 id);
Jul 10, 2006
Jul 10, 2006
456
457
/**
Oct 19, 2009
Oct 19, 2009
458
* \brief Get the window flags.
Jul 10, 2006
Jul 10, 2006
459
*/
Jan 21, 2010
Jan 21, 2010
460
extern DECLSPEC Uint32 SDLCALL SDL_GetWindowFlags(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
461
462
/**
Sep 15, 2010
Sep 15, 2010
463
* \brief Set the title of a window, in UTF-8 format.
Oct 19, 2009
Oct 19, 2009
464
465
*
* \sa SDL_GetWindowTitle()
Jul 10, 2006
Jul 10, 2006
466
*/
Jan 21, 2010
Jan 21, 2010
467
extern DECLSPEC void SDLCALL SDL_SetWindowTitle(SDL_Window * window,
Jul 10, 2006
Jul 10, 2006
468
469
470
const char *title);
/**
Sep 15, 2010
Sep 15, 2010
471
* \brief Get the title of a window, in UTF-8 format.
Oct 19, 2009
Oct 19, 2009
472
473
*
* \sa SDL_SetWindowTitle()
Jul 10, 2006
Jul 10, 2006
474
*/
Jan 21, 2010
Jan 21, 2010
475
extern DECLSPEC const char *SDLCALL SDL_GetWindowTitle(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
476
477
/**
Sep 19, 2010
Sep 19, 2010
478
* \brief Set the icon for a window.
Oct 19, 2009
Oct 19, 2009
479
*
Sep 19, 2010
Sep 19, 2010
480
* \param icon The icon for the window.
Jul 10, 2006
Jul 10, 2006
481
*/
Jan 21, 2010
Jan 21, 2010
482
extern DECLSPEC void SDLCALL SDL_SetWindowIcon(SDL_Window * window,
Jan 4, 2009
Jan 4, 2009
483
SDL_Surface * icon);
Jul 10, 2006
Jul 10, 2006
484
485
/**
Feb 3, 2011
Feb 3, 2011
486
* \brief Associate an arbitrary named pointer with a window.
Oct 19, 2009
Oct 19, 2009
487
*
Feb 3, 2011
Feb 3, 2011
488
489
490
491
492
493
494
495
* \param window The window to associate with the pointer.
* \param name The name of the pointer.
* \param userdata The associated pointer.
*
* \return The previous value associated with 'name'
*
* \note The name is case-sensitive.
*
Oct 19, 2009
Oct 19, 2009
496
* \sa SDL_GetWindowData()
Jul 10, 2006
Jul 10, 2006
497
*/
Feb 3, 2011
Feb 3, 2011
498
499
500
extern DECLSPEC void* SDLCALL SDL_SetWindowData(SDL_Window * window,
const char *name,
void *userdata);
Jul 10, 2006
Jul 10, 2006
501
502
/**
Sep 15, 2010
Sep 15, 2010
503
* \brief Retrieve the data pointer associated with a window.
Oct 19, 2009
Oct 19, 2009
504
*
Feb 3, 2011
Feb 3, 2011
505
506
507
508
509
* \param window The window to query.
* \param name The name of the pointer.
*
* \return The value associated with 'name'
*
Oct 19, 2009
Oct 19, 2009
510
* \sa SDL_SetWindowData()
Jul 10, 2006
Jul 10, 2006
511
*/
Feb 3, 2011
Feb 3, 2011
512
513
extern DECLSPEC void *SDLCALL SDL_GetWindowData(SDL_Window * window,
const char *name);
Jul 10, 2006
Jul 10, 2006
514
515
/**
Sep 15, 2010
Sep 15, 2010
516
* \brief Set the position of a window.
Oct 19, 2009
Oct 19, 2009
517
*
Feb 3, 2011
Feb 3, 2011
518
* \param window The window to reposition.
Oct 19, 2009
Oct 19, 2009
519
520
521
522
523
524
525
526
* \param x The x coordinate of the window, ::SDL_WINDOWPOS_CENTERED, or
::SDL_WINDOWPOS_UNDEFINED.
* \param y The y coordinate of the window, ::SDL_WINDOWPOS_CENTERED, or
::SDL_WINDOWPOS_UNDEFINED.
*
* \note The window coordinate origin is the upper left of the display.
*
* \sa SDL_GetWindowPosition()
Jul 10, 2006
Jul 10, 2006
527
*/
Jan 21, 2010
Jan 21, 2010
528
extern DECLSPEC void SDLCALL SDL_SetWindowPosition(SDL_Window * window,
Jul 10, 2006
Jul 10, 2006
529
530
531
int x, int y);
/**
Sep 15, 2010
Sep 15, 2010
532
* \brief Get the position of a window.
Oct 19, 2009
Oct 19, 2009
533
534
*
* \sa SDL_SetWindowPosition()
Jul 10, 2006
Jul 10, 2006
535
*/
Jan 21, 2010
Jan 21, 2010
536
extern DECLSPEC void SDLCALL SDL_GetWindowPosition(SDL_Window * window,
Jul 10, 2006
Jul 10, 2006
537
538
539
int *x, int *y);
/**
Sep 15, 2010
Sep 15, 2010
540
* \brief Set the size of a window's client area.
Oct 19, 2009
Oct 19, 2009
541
542
543
544
545
*
* \note You can't change the size of a fullscreen window, it automatically
* matches the size of the display mode.
*
* \sa SDL_GetWindowSize()
Jul 10, 2006
Jul 10, 2006
546
*/
Jan 21, 2010
Jan 21, 2010
547
extern DECLSPEC void SDLCALL SDL_SetWindowSize(SDL_Window * window, int w,
Jul 10, 2006
Jul 10, 2006
548
549
550
int h);
/**
Sep 15, 2010
Sep 15, 2010
551
* \brief Get the size of a window's client area.
Oct 19, 2009
Oct 19, 2009
552
553
*
* \sa SDL_SetWindowSize()
Jul 10, 2006
Jul 10, 2006
554
*/
Jan 21, 2010
Jan 21, 2010
555
extern DECLSPEC void SDLCALL SDL_GetWindowSize(SDL_Window * window, int *w,
Jul 10, 2006
Jul 10, 2006
556
557
558
int *h);
/**
Sep 15, 2010
Sep 15, 2010
559
* \brief Show a window.
Oct 19, 2009
Oct 19, 2009
560
561
*
* \sa SDL_HideWindow()
Jul 10, 2006
Jul 10, 2006
562
*/
Jan 21, 2010
Jan 21, 2010
563
extern DECLSPEC void SDLCALL SDL_ShowWindow(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
564
565
/**
Sep 15, 2010
Sep 15, 2010
566
* \brief Hide a window.
Oct 19, 2009
Oct 19, 2009
567
568
*
* \sa SDL_ShowWindow()
Jul 10, 2006
Jul 10, 2006
569
*/
Jan 21, 2010
Jan 21, 2010
570
extern DECLSPEC void SDLCALL SDL_HideWindow(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
571
572
/**
Sep 15, 2010
Sep 15, 2010
573
* \brief Raise a window above other windows and set the input focus.
Jul 10, 2006
Jul 10, 2006
574
*/
Jan 21, 2010
Jan 21, 2010
575
extern DECLSPEC void SDLCALL SDL_RaiseWindow(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
576
577
/**
Sep 15, 2010
Sep 15, 2010
578
* \brief Make a window as large as possible.
Oct 19, 2009
Oct 19, 2009
579
580
*
* \sa SDL_RestoreWindow()
Jul 10, 2006
Jul 10, 2006
581
*/
Jan 21, 2010
Jan 21, 2010
582
extern DECLSPEC void SDLCALL SDL_MaximizeWindow(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
583
584
/**
Sep 15, 2010
Sep 15, 2010
585
* \brief Minimize a window to an iconic representation.
Oct 19, 2009
Oct 19, 2009
586
587
*
* \sa SDL_RestoreWindow()
Jul 10, 2006
Jul 10, 2006
588
*/
Jan 21, 2010
Jan 21, 2010
589
extern DECLSPEC void SDLCALL SDL_MinimizeWindow(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
590
591
/**
Oct 19, 2009
Oct 19, 2009
592
593
594
595
* \brief Restore the size and position of a minimized or maximized window.
*
* \sa SDL_MaximizeWindow()
* \sa SDL_MinimizeWindow()
Jul 10, 2006
Jul 10, 2006
596
*/
Jan 21, 2010
Jan 21, 2010
597
extern DECLSPEC void SDLCALL SDL_RestoreWindow(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
598
599
/**
Sep 15, 2010
Sep 15, 2010
600
* \brief Set a window's fullscreen state.
Oct 19, 2009
Oct 19, 2009
601
602
603
*
* \return 0 on success, or -1 if setting the display mode failed.
*
Dec 5, 2009
Dec 5, 2009
604
605
* \sa SDL_SetWindowDisplayMode()
* \sa SDL_GetWindowDisplayMode()
Jul 10, 2006
Jul 10, 2006
606
*/
Jan 21, 2010
Jan 21, 2010
607
extern DECLSPEC int SDLCALL SDL_SetWindowFullscreen(SDL_Window * window,
Jul 10, 2006
Jul 10, 2006
608
609
int fullscreen);
Feb 3, 2011
Feb 3, 2011
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
/**
* \brief Get an SDL surface associated with the window.
*
* \return A surface in the optimal format for the window, or NULL on error.
*
* \note You may not combine this with 3D or the rendering API on this window.
*
* \sa SDL_UpdateWindowSurface()
* \sa SDL_UpdateWindowSurfaceRects()
*/
extern DECLSPEC SDL_Surface * SDLCALL SDL_GetWindowSurface(SDL_Window * window);
/**
* \brief Copy the window surface to the screen.
*
* \return 0 on success, or -1 on error.
*
* \sa SDL_GetWindowSurface()
* \sa SDL_UpdateWindowSurfaceRects()
*/
extern DECLSPEC int SDLCALL SDL_UpdateWindowSurface(SDL_Window * window);
/**
* \brief Copy a number of rectangles on the window surface to the screen.
*
* \return 0 on success, or -1 on error.
*
* \sa SDL_GetWindowSurface()
* \sa SDL_UpdateWindowSurfaceRect()
*/
extern DECLSPEC int SDLCALL SDL_UpdateWindowSurfaceRects(SDL_Window * window,
int numrects,
SDL_Rect * rects);
Jul 10, 2006
Jul 10, 2006
644
/**
Sep 15, 2010
Sep 15, 2010
645
* \brief Set a window's input grab mode.
Oct 19, 2009
Oct 19, 2009
646
647
648
649
*
* \param mode This is 1 to grab input, and 0 to release input.
*
* \sa SDL_GetWindowGrab()
Jul 10, 2006
Jul 10, 2006
650
*/
Jan 21, 2010
Jan 21, 2010
651
extern DECLSPEC void SDLCALL SDL_SetWindowGrab(SDL_Window * window,
Jul 10, 2006
Jul 10, 2006
652
653
654
int mode);
/**
Sep 15, 2010
Sep 15, 2010
655
* \brief Get a window's input grab mode.
Oct 19, 2009
Oct 19, 2009
656
657
658
659
*
* \return This returns 1 if input is grabbed, and 0 otherwise.
*
* \sa SDL_SetWindowGrab()
Jul 10, 2006
Jul 10, 2006
660
*/
Jan 21, 2010
Jan 21, 2010
661
extern DECLSPEC int SDLCALL SDL_GetWindowGrab(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
662
663
/**
Oct 19, 2009
Oct 19, 2009
664
665
666
* \brief Get driver specific information about a window.
*
* \note Include SDL_syswm.h for the declaration of SDL_SysWMinfo.
Jul 10, 2006
Jul 10, 2006
667
668
*/
struct SDL_SysWMinfo;
Jan 21, 2010
Jan 21, 2010
669
extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowWMInfo(SDL_Window * window,
Jul 10, 2006
Jul 10, 2006
670
671
672
673
struct SDL_SysWMinfo
*info);
/**
Oct 19, 2009
Oct 19, 2009
674
* \brief Destroy a window.
Jul 10, 2006
Jul 10, 2006
675
*/
Jan 21, 2010
Jan 21, 2010
676
extern DECLSPEC void SDLCALL SDL_DestroyWindow(SDL_Window * window);
Jul 10, 2006
Jul 10, 2006
677
Apr 26, 2001
Apr 26, 2001
678
Jan 12, 2009
Jan 12, 2009
679
/**
Aug 30, 2010
Aug 30, 2010
680
* \brief Returns whether the screensaver is currently enabled (default on).
Oct 19, 2009
Oct 19, 2009
681
682
683
*
* \sa SDL_EnableScreenSaver()
* \sa SDL_DisableScreenSaver()
Jan 12, 2009
Jan 12, 2009
684
*/
Jan 12, 2009
Jan 12, 2009
685
extern DECLSPEC SDL_bool SDLCALL SDL_IsScreenSaverEnabled(void);
Jan 12, 2009
Jan 12, 2009
686
687
/**
Oct 19, 2009
Oct 19, 2009
688
689
690
691
* \brief Allow the screen to be blanked by a screensaver
*
* \sa SDL_IsScreenSaverEnabled()
* \sa SDL_DisableScreenSaver()
Jan 12, 2009
Jan 12, 2009
692
*/
Jan 12, 2009
Jan 12, 2009
693
extern DECLSPEC void SDLCALL SDL_EnableScreenSaver(void);
Jan 12, 2009
Jan 12, 2009
694
695
/**
Oct 19, 2009
Oct 19, 2009
696
697
698
699
* \brief Prevent the screen from being blanked by a screensaver
*
* \sa SDL_IsScreenSaverEnabled()
* \sa SDL_EnableScreenSaver()
Jan 12, 2009
Jan 12, 2009
700
*/
Jan 12, 2009
Jan 12, 2009
701
extern DECLSPEC void SDLCALL SDL_DisableScreenSaver(void);
Jan 12, 2009
Jan 12, 2009
702
Apr 26, 2001
Apr 26, 2001
703
Oct 19, 2009
Oct 19, 2009
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
/**
* \name OpenGL support functions
*/
/*@{*/
/**
* \brief Dynamically load an OpenGL library.
*
* \param path The platform dependent OpenGL library name, or NULL to open the
* default OpenGL library.
*
* \return 0 on success, or -1 if the library couldn't be loaded.
*
* This should be done after initializing the video driver, but before
* creating any OpenGL windows. If no OpenGL library is loaded, the default
* library will be loaded upon creation of the first OpenGL window.
*
* \note If you do this, you need to retrieve all of the GL functions used in
* your program from the dynamic library using SDL_GL_GetProcAddress().
*
* \sa SDL_GL_GetProcAddress()
* \sa SDL_GL_UnloadLibrary()
Jul 10, 2006
Jul 10, 2006
726
727
*/
extern DECLSPEC int SDLCALL SDL_GL_LoadLibrary(const char *path);
Apr 26, 2001
Apr 26, 2001
728
Jul 10, 2006
Jul 10, 2006
729
/**
Oct 19, 2009
Oct 19, 2009
730
* \brief Get the address of an OpenGL function.
Jul 10, 2006
Jul 10, 2006
731
732
*/
extern DECLSPEC void *SDLCALL SDL_GL_GetProcAddress(const char *proc);
Apr 26, 2001
Apr 26, 2001
733
Feb 9, 2009
Feb 9, 2009
734
/**
Oct 19, 2009
Oct 19, 2009
735
736
737
* \brief Unload the OpenGL library previously loaded by SDL_GL_LoadLibrary().
*
* \sa SDL_GL_LoadLibrary()
Feb 9, 2009
Feb 9, 2009
738
739
740
*/
extern DECLSPEC void SDLCALL SDL_GL_UnloadLibrary(void);
Jul 22, 2006
Jul 22, 2006
741
/**
Oct 19, 2009
Oct 19, 2009
742
743
* \brief Return true if an OpenGL extension is supported for the current
* context.
Jul 22, 2006
Jul 22, 2006
744
745
746
747
*/
extern DECLSPEC SDL_bool SDLCALL SDL_GL_ExtensionSupported(const char
*extension);
Jul 10, 2006
Jul 10, 2006
748
/**
Oct 19, 2009
Oct 19, 2009
749
* \brief Set an OpenGL window attribute before window creation.
Jul 10, 2006
Jul 10, 2006
750
751
*/
extern DECLSPEC int SDLCALL SDL_GL_SetAttribute(SDL_GLattr attr, int value);
Apr 26, 2001
Apr 26, 2001
752
Jul 10, 2006
Jul 10, 2006
753
/**
Oct 19, 2009
Oct 19, 2009
754
* \brief Get the actual value for an attribute from the current context.
Jul 10, 2006
Jul 10, 2006
755
*/
Jul 25, 2006
Jul 25, 2006
756
extern DECLSPEC int SDLCALL SDL_GL_GetAttribute(SDL_GLattr attr, int *value);
Apr 26, 2001
Apr 26, 2001
757
Jul 10, 2006
Jul 10, 2006
758
/**
Oct 19, 2009
Oct 19, 2009
759
760
761
762
* \brief Create an OpenGL context for use with an OpenGL window, and make it
* current.
*
* \sa SDL_GL_DeleteContext()
Apr 26, 2001
Apr 26, 2001
763
*/
Jan 21, 2010
Jan 21, 2010
764
765
extern DECLSPEC SDL_GLContext SDLCALL SDL_GL_CreateContext(SDL_Window *
window);
Apr 26, 2001
Apr 26, 2001
766
Jul 10, 2006
Jul 10, 2006
767
/**
Oct 19, 2009
Oct 19, 2009
768
769
770
* \brief Set up an OpenGL context for rendering into an OpenGL window.
*
* \note The context must have been created with a compatible window.
Apr 26, 2001
Apr 26, 2001
771
*/
Jan 21, 2010
Jan 21, 2010
772
extern DECLSPEC int SDLCALL SDL_GL_MakeCurrent(SDL_Window * window,
Jul 10, 2006
Jul 10, 2006
773
SDL_GLContext context);
Apr 26, 2001
Apr 26, 2001
774
Jul 10, 2006
Jul 10, 2006
775
/**
Oct 19, 2009
Oct 19, 2009
776
777
778
779
780
781
782
783
* \brief Set the swap interval for the current OpenGL context.
*
* \param interval 0 for immediate updates, 1 for updates synchronized with the
* vertical retrace.
*
* \return 0 on success, or -1 if setting the swap interval is not supported.
*
* \sa SDL_GL_GetSwapInterval()
Apr 26, 2001
Apr 26, 2001
784
*/
Jul 10, 2006
Jul 10, 2006
785
extern DECLSPEC int SDLCALL SDL_GL_SetSwapInterval(int interval);
Apr 26, 2001
Apr 26, 2001
786
Jul 10, 2006
Jul 10, 2006
787
/**
Oct 19, 2009
Oct 19, 2009
788
789
790
791
792
793
794
* \brief Get the swap interval for the current OpenGL context.
*
* \return 0 if there is no vertical retrace synchronization, 1 if the buffer
* swap is synchronized with the vertical retrace, and -1 if getting
* the swap interval is not supported.
*
* \sa SDL_GL_SetSwapInterval()
Apr 26, 2001
Apr 26, 2001
795
*/
Jul 10, 2006
Jul 10, 2006
796
extern DECLSPEC int SDLCALL SDL_GL_GetSwapInterval(void);
Apr 26, 2001
Apr 26, 2001
797
Jul 10, 2006
Jul 10, 2006
798
/**
Sep 15, 2010
Sep 15, 2010
799
* \brief Swap the OpenGL buffers for a window, if double-buffering is
Oct 19, 2009
Oct 19, 2009
800
* supported.
Apr 26, 2001
Apr 26, 2001
801
*/
Jan 21, 2010
Jan 21, 2010
802
extern DECLSPEC void SDLCALL SDL_GL_SwapWindow(SDL_Window * window);
Apr 26, 2001
Apr 26, 2001
803
Jul 10, 2006
Jul 10, 2006
804
/**
Oct 19, 2009
Oct 19, 2009
805
806
807
* \brief Delete an OpenGL context.
*
* \sa SDL_GL_CreateContext()
Apr 26, 2001
Apr 26, 2001
808
*/
Jul 10, 2006
Jul 10, 2006
809
extern DECLSPEC void SDLCALL SDL_GL_DeleteContext(SDL_GLContext context);
Apr 26, 2001
Apr 26, 2001
810
Oct 19, 2009
Oct 19, 2009
811
812
/*@}*//*OpenGL support functions*/
Apr 26, 2001
Apr 26, 2001
813
814
815
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
Jul 10, 2006
Jul 10, 2006
816
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
817
}
Jul 10, 2006
Jul 10, 2006
818
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
819
820
821
822
#endif
#include "close_code.h"
#endif /* _SDL_video_h */
Jul 10, 2006
Jul 10, 2006
823
824
/* vi: set ts=4 sw=4 expandtab: */