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

Commit

Permalink
Added testing of messagebox with a parent window
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 14, 2013
1 parent 7dd5442 commit 6ed6a36
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions test/testmessage.c
Expand Up @@ -94,6 +94,7 @@ main(int argc, char *argv[])
return (1);
}

#if 0
success = SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR,
"Simple MessageBox",
"This is a simple error MessageBox",
Expand Down Expand Up @@ -134,9 +135,7 @@ main(int argc, char *argv[])

button_messagebox(NULL);

/* Technically this isn't a supported operation for the API, but it doesn't
* hurt for it to work.
*/
/* Test showing a message box from a background thread */
{
int status = 0;
SDL_Event event;
Expand All @@ -154,6 +153,29 @@ main(int argc, char *argv[])

printf("Message box thread return %i\n", status);
}
#endif

/* Test showing a message box with a parent window */
{
SDL_Event event;
SDL_Window *window = SDL_CreateWindow("Test", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 640, 480, SDL_WINDOW_SHOWN);

success = SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR,
"Simple MessageBox",
"This is a simple error MessageBox with a parent window",
window);
if (success == -1) {
printf("Error Presenting MessageBox: %s\n", SDL_GetError());
quit(1);
}

while (SDL_WaitEvent(&event))
{
if (event.type == SDL_QUIT || event.type == SDL_KEYUP) {
break;
}
}
}

SDL_Quit();
return (0);
Expand Down

0 comments on commit 6ed6a36

Please sign in to comment.