Navigation Menu

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

Commit

Permalink
Test plan for relative mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgenpt committed Apr 24, 2013
1 parent 85a015b commit 479b642
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions test/relative_mode.markdown
@@ -0,0 +1,56 @@
Relative mode testing
=====================

See test program at the bottom of this file.

Initial tests:

- When in relative mode, the mouse shouldn't be moveable outside of the window.
- When the cursor is outside the window when relative mode is enabled, mouse
clicks should not go to whatever app was under the cursor previously.
- When alt/cmd-tabbing between a relative mode app and another app, clicks when
in the relative mode app should also not go to whatever app was under the
cursor previously.


Code
====

#include <SDL.h>

int PollEvents()
{
SDL_Event event;
while (SDL_PollEvent(&event))
{
switch (event.type)
{
case SDL_QUIT:
return 1;
default:
break;
}
}

return 0;
}

int main(int argc, char *argv[])
{
SDL_Init(SDL_INIT_VIDEO);

SDL_Window *win = SDL_CreateWindow("Test", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 800, 600, 0);
SDL_SetRelativeMouseMode(SDL_TRUE);

while (1)
{
if (PollEvents())
break;
}

SDL_DestroyWindow(win);

SDL_Quit();

return 0;
}

0 comments on commit 479b642

Please sign in to comment.