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

Commit

Permalink
Use boolean value for input grab mode, like we do for fullscreen mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 28, 2011
1 parent 1ffc529 commit 58788f3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 19 deletions.
8 changes: 4 additions & 4 deletions include/SDL_video.h
Expand Up @@ -588,21 +588,21 @@ extern DECLSPEC int SDLCALL SDL_UpdateWindowSurfaceRects(SDL_Window * window,
/**
* \brief Set a window's input grab mode.
*
* \param mode This is 1 to grab input, and 0 to release input.
* \param grabbed This is SDL_TRUE to grab input, and SDL_FALSE to release input.
*
* \sa SDL_GetWindowGrab()
*/
extern DECLSPEC void SDLCALL SDL_SetWindowGrab(SDL_Window * window,
int mode);
SDL_bool grabbed);

/**
* \brief Get a window's input grab mode.
*
* \return This returns 1 if input is grabbed, and 0 otherwise.
* \return This returns SDL_TRUE if input is grabbed, and SDL_FALSE otherwise.
*
* \sa SDL_SetWindowGrab()
*/
extern DECLSPEC int SDLCALL SDL_GetWindowGrab(SDL_Window * window);
extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowGrab(SDL_Window * window);

/**
* \brief Destroy a window.
Expand Down
27 changes: 12 additions & 15 deletions src/video/SDL_video.c
Expand Up @@ -108,9 +108,6 @@ static SDL_VideoDevice *_this = NULL;
return retval; \
}

/* Various local functions */
static void SDL_UpdateWindowGrab(SDL_Window * window);

/* Support for framebuffer emulation using an accelerated renderer */

#define SDL_WINDOWTEXTUREDATA "_SDL_WindowTextureData"
Expand Down Expand Up @@ -1672,31 +1669,31 @@ SDL_UpdateWindowSurfaceRects(SDL_Window * window, SDL_Rect * rects,
return _this->UpdateWindowFramebuffer(_this, window, rects, numrects);
}

static void
SDL_UpdateWindowGrab(SDL_Window * window)
{
if ((window->flags & SDL_WINDOW_INPUT_FOCUS) && _this->SetWindowGrab) {
_this->SetWindowGrab(_this, window);
}
}

void
SDL_SetWindowGrab(SDL_Window * window, int mode)
SDL_SetWindowGrab(SDL_Window * window, SDL_bool grabbed)
{
CHECK_WINDOW_MAGIC(window, );

if ((!!mode == !!(window->flags & SDL_WINDOW_INPUT_GRABBED))) {
if ((!!grabbed == !!(window->flags & SDL_WINDOW_INPUT_GRABBED))) {
return;
}
if (mode) {
if (grabbed) {
window->flags |= SDL_WINDOW_INPUT_GRABBED;
} else {
window->flags &= ~SDL_WINDOW_INPUT_GRABBED;
}
SDL_UpdateWindowGrab(window);
}

static void
SDL_UpdateWindowGrab(SDL_Window * window)
{
if ((window->flags & SDL_WINDOW_INPUT_FOCUS) && _this->SetWindowGrab) {
_this->SetWindowGrab(_this, window);
}
}

int
SDL_bool
SDL_GetWindowGrab(SDL_Window * window)
{
CHECK_WINDOW_MAGIC(window, 0);
Expand Down

0 comments on commit 58788f3

Please sign in to comment.