SDL  2.0
SDL_shape.h File Reference
#include "SDL_stdinc.h"
#include "SDL_pixels.h"
#include "SDL_rect.h"
#include "SDL_surface.h"
#include "SDL_video.h"
#include "begin_code.h"
#include "close_code.h"
+ Include dependency graph for SDL_shape.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

union  SDL_WindowShapeParams
 A union containing parameters for shaped windows. More...
 
struct  SDL_WindowShapeMode
 A struct that tags the SDL_WindowShapeParams union with an enum describing the type of its contents. More...
 

Macros

#define SDL_NONSHAPEABLE_WINDOW   -1
 
#define SDL_INVALID_SHAPE_ARGUMENT   -2
 
#define SDL_WINDOW_LACKS_SHAPE   -3
 
#define SDL_SHAPEMODEALPHA(mode)   (mode == ShapeModeDefault || mode == ShapeModeBinarizeAlpha || mode == ShapeModeReverseBinarizeAlpha)
 

Enumerations

enum  WindowShapeMode {
  ShapeModeDefault ,
  ShapeModeBinarizeAlpha ,
  ShapeModeReverseBinarizeAlpha ,
  ShapeModeColorKey
}
 An enum denoting the specific type of contents present in an SDL_WindowShapeParams union. More...
 

Functions

SDL_WindowSDL_CreateShapedWindow (const char *title, unsigned int x, unsigned int y, unsigned int w, unsigned int h, Uint32 flags)
 Create a window that can be shaped with the specified position, dimensions, and flags. More...
 
SDL_bool SDL_IsShapedWindow (const SDL_Window *window)
 Return whether the given window is a shaped window. More...
 
int SDL_SetWindowShape (SDL_Window *window, SDL_Surface *shape, SDL_WindowShapeMode *shape_mode)
 Set the shape and parameters of a shaped window. More...
 
int SDL_GetShapedWindowMode (SDL_Window *window, SDL_WindowShapeMode *shape_mode)
 Get the shape parameters of a shaped window. More...
 

Detailed Description

Header file for the shaped window API.

Definition in file SDL_shape.h.

Macro Definition Documentation

◆ SDL_INVALID_SHAPE_ARGUMENT

#define SDL_INVALID_SHAPE_ARGUMENT   -2

Definition at line 43 of file SDL_shape.h.

◆ SDL_NONSHAPEABLE_WINDOW

#define SDL_NONSHAPEABLE_WINDOW   -1

Definition at line 42 of file SDL_shape.h.

◆ SDL_SHAPEMODEALPHA

#define SDL_SHAPEMODEALPHA (   mode)    (mode == ShapeModeDefault || mode == ShapeModeBinarizeAlpha || mode == ShapeModeReverseBinarizeAlpha)

Definition at line 91 of file SDL_shape.h.

◆ SDL_WINDOW_LACKS_SHAPE

#define SDL_WINDOW_LACKS_SHAPE   -3

Definition at line 44 of file SDL_shape.h.

Enumeration Type Documentation

◆ WindowShapeMode

An enum denoting the specific type of contents present in an SDL_WindowShapeParams union.

Enumerator
ShapeModeDefault 

The default mode, a binarized alpha cutoff of 1.

ShapeModeBinarizeAlpha 

A binarized alpha cutoff with a given integer value.

ShapeModeReverseBinarizeAlpha 

A binarized alpha cutoff with a given integer value, but with the opposite comparison.

ShapeModeColorKey 

A color key is applied.

Definition at line 80 of file SDL_shape.h.

80  {
81  /** \brief The default mode, a binarized alpha cutoff of 1. */
83  /** \brief A binarized alpha cutoff with a given integer value. */
85  /** \brief A binarized alpha cutoff with a given integer value, but with the opposite comparison. */
87  /** \brief A color key is applied. */
WindowShapeMode
An enum denoting the specific type of contents present in an SDL_WindowShapeParams union.
Definition: SDL_shape.h:80
@ ShapeModeBinarizeAlpha
A binarized alpha cutoff with a given integer value.
Definition: SDL_shape.h:84
@ ShapeModeColorKey
A color key is applied.
Definition: SDL_shape.h:88
@ ShapeModeDefault
The default mode, a binarized alpha cutoff of 1.
Definition: SDL_shape.h:82
@ ShapeModeReverseBinarizeAlpha
A binarized alpha cutoff with a given integer value, but with the opposite comparison.
Definition: SDL_shape.h:86

Function Documentation

◆ SDL_CreateShapedWindow()

SDL_Window* SDL_CreateShapedWindow ( const char *  title,
unsigned int  x,
unsigned int  y,
unsigned int  w,
unsigned int  h,
Uint32  flags 
)

Create a window that can be shaped with the specified position, dimensions, and flags.

Parameters
titleThe title of the window, in UTF-8 encoding.
xThe x position of the window, SDL_WINDOWPOS_CENTERED, or SDL_WINDOWPOS_UNDEFINED.
yThe y position of the window, SDL_WINDOWPOS_CENTERED, or SDL_WINDOWPOS_UNDEFINED.
wThe width of the window.
hThe height of the window.
flagsThe flags for the window, a mask of SDL_WINDOW_BORDERLESS with any of the following: SDL_WINDOW_OPENGL, SDL_WINDOW_INPUT_GRABBED, SDL_WINDOW_HIDDEN, SDL_WINDOW_RESIZABLE, SDL_WINDOW_MAXIMIZED, SDL_WINDOW_MINIMIZED, SDL_WINDOW_BORDERLESS is always set, and SDL_WINDOW_FULLSCREEN is always unset.
Returns
The window created, or NULL if window creation failed.
See also
SDL_DestroyWindow()

Definition at line 32 of file SDL_shape.c.

33 {
35  result = SDL_CreateWindow(title,-1000,-1000,w,h,(flags | SDL_WINDOW_BORDERLESS) & (~SDL_WINDOW_FULLSCREEN) & (~SDL_WINDOW_RESIZABLE) /* & (~SDL_WINDOW_SHOWN) */);
36  if(result != NULL) {
37  if (SDL_GetVideoDevice()->shape_driver.CreateShaper == NULL) {
39  return NULL;
40  }
42  if(result->shaper != NULL) {
43  result->shaper->userx = x;
44  result->shaper->usery = y;
45  result->shaper->mode.mode = ShapeModeDefault;
46  result->shaper->mode.parameters.binarizationCutoff = 1;
47  result->shaper->hasshape = SDL_FALSE;
48  return result;
49  }
50  else {
52  return NULL;
53  }
54  }
55  else
56  return NULL;
57 }
#define SDL_DestroyWindow
#define SDL_CreateWindow
GLint GLint GLint GLint GLint GLint y
Definition: SDL_opengl.h:1574
GLint GLint GLint GLint GLint x
Definition: SDL_opengl.h:1574
GLuint64EXT * result
GLbitfield flags
GLfloat GLfloat GLfloat GLfloat h
GLubyte GLubyte GLubyte GLubyte w
@ SDL_FALSE
Definition: SDL_stdinc.h:169
SDL_VideoDevice * SDL_GetVideoDevice(void)
Definition: SDL_video.c:587
@ SDL_WINDOW_RESIZABLE
Definition: SDL_video.h:104
@ SDL_WINDOW_FULLSCREEN
Definition: SDL_video.h:99
@ SDL_WINDOW_BORDERLESS
Definition: SDL_video.h:103
#define NULL
Definition: begin_code.h:163
SDL_WindowShaper *(* CreateShaper)(SDL_Window *window)
Definition: SDL_sysvideo.h:61
SDL_ShapeDriver shape_driver
Definition: SDL_sysvideo.h:246
The type used to identify a window.
Definition: SDL_sysvideo.h:75

References SDL_ShapeDriver::CreateShaper, NULL, SDL_CreateWindow, SDL_DestroyWindow, SDL_FALSE, SDL_GetVideoDevice(), SDL_WINDOW_BORDERLESS, SDL_WINDOW_FULLSCREEN, SDL_WINDOW_RESIZABLE, SDL_VideoDevice::shape_driver, ShapeModeDefault, and SDL_WindowShaper::userx.

◆ SDL_GetShapedWindowMode()

int SDL_GetShapedWindowMode ( SDL_Window window,
SDL_WindowShapeMode shape_mode 
)

Get the shape parameters of a shaped window.

Parameters
windowThe shaped window whose parameters should be retrieved.
shape_modeAn empty shape-mode structure to fill, or NULL to check whether the window has a shape.
Returns
0 if the window has a shape and, provided shape_mode was not NULL, shape_mode has been filled with the mode data, SDL_NONSHAPEABLE_WINDOW if the SDL_Window given is not a shaped window, or SDL_WINDOW_LACKS_SHAPE if the SDL_Window given is a shapeable window currently lacking a shape.
See also
SDL_WindowShapeMode
SDL_SetWindowShape

Definition at line 289 of file SDL_shape.c.

290 {
291  if(window != NULL && SDL_IsShapedWindow(window)) {
292  if(shape_mode == NULL) {
294  /* The window given has a shape. */
295  return 0;
296  else
297  /* The window given is shapeable but lacks a shape. */
298  return SDL_WINDOW_LACKS_SHAPE;
299  }
300  else {
301  *shape_mode = window->shaper->mode;
302  return 0;
303  }
304  }
305  else
306  /* The window given is not a valid shapeable window. */
308 }
static SDL_bool SDL_WindowHasAShape(SDL_Window *window)
Definition: SDL_shape.c:281
SDL_bool SDL_IsShapedWindow(const SDL_Window *window)
Return whether the given window is a shaped window.
Definition: SDL_shape.c:60
#define SDL_NONSHAPEABLE_WINDOW
Definition: SDL_shape.h:42
#define SDL_WINDOW_LACKS_SHAPE
Definition: SDL_shape.h:44
EGLSurface EGLNativeWindowType * window
Definition: eglext.h:1025
WindowShapeMode mode
The mode of these window-shape parameters.
Definition: SDL_shape.h:103

References SDL_WindowShapeMode::mode, NULL, SDL_IsShapedWindow(), SDL_NONSHAPEABLE_WINDOW, SDL_WINDOW_LACKS_SHAPE, and SDL_WindowHasAShape().

◆ SDL_IsShapedWindow()

SDL_bool SDL_IsShapedWindow ( const SDL_Window window)

Return whether the given window is a shaped window.

Parameters
windowThe window to query for being shaped.
Returns
SDL_TRUE if the window is a window that can be shaped, SDL_FALSE if the window is unshaped or NULL.
See also
SDL_CreateShapedWindow

Definition at line 60 of file SDL_shape.c.

61 {
62  if(window == NULL)
63  return SDL_FALSE;
64  else
65  return (SDL_bool)(window->shaper != NULL);
66 }
SDL_bool
Definition: SDL_stdinc.h:168

References NULL, and SDL_FALSE.

Referenced by SDL_GetShapedWindowMode(), SDL_SetWindowShape(), and SDL_WindowHasAShape().

◆ SDL_SetWindowShape()

int SDL_SetWindowShape ( SDL_Window window,
SDL_Surface shape,
SDL_WindowShapeMode shape_mode 
)

Set the shape and parameters of a shaped window.

Parameters
windowThe shaped window whose parameters should be set.
shapeA surface encoding the desired shape for the window.
shape_modeThe parameters to set for the shaped window.
Returns
0 on success, SDL_INVALID_SHAPE_ARGUMENT on an invalid shape argument, or SDL_NONSHAPEABLE_WINDOW if the SDL_Window given does not reference a valid shaped window.
See also
SDL_WindowShapeMode
SDL_GetShapedWindowMode.

Definition at line 258 of file SDL_shape.c.

259 {
260  int result;
262  /* The window given was not a shapeable window. */
264  if(shape == NULL)
265  /* Invalid shape argument. */
267 
268  if(shape_mode != NULL)
269  window->shaper->mode = *shape_mode;
270  result = SDL_GetVideoDevice()->shape_driver.SetWindowShape(window->shaper,shape,shape_mode);
271  window->shaper->hasshape = SDL_TRUE;
272  if(window->shaper->userx != 0 && window->shaper->usery != 0) {
273  SDL_SetWindowPosition(window,window->shaper->userx,window->shaper->usery);
274  window->shaper->userx = 0;
275  window->shaper->usery = 0;
276  }
277  return result;
278 }
#define SDL_SetWindowPosition
#define SDL_INVALID_SHAPE_ARGUMENT
Definition: SDL_shape.h:43
@ SDL_TRUE
Definition: SDL_stdinc.h:170
int(* SetWindowShape)(SDL_WindowShaper *shaper, SDL_Surface *shape, SDL_WindowShapeMode *shape_mode)
Definition: SDL_sysvideo.h:62

References NULL, SDL_GetVideoDevice(), SDL_INVALID_SHAPE_ARGUMENT, SDL_IsShapedWindow(), SDL_NONSHAPEABLE_WINDOW, SDL_SetWindowPosition, SDL_TRUE, SDL_ShapeDriver::SetWindowShape, and SDL_VideoDevice::shape_driver.