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

Latest commit

 

History

History
136 lines (120 loc) · 3.97 KB

testwm2.c

File metadata and controls

136 lines (120 loc) · 3.97 KB
 
Jul 25, 2013
Jul 25, 2013
2
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
3
4
5
6
7
8
9
10
11
12
13
14
15
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely.
*/
#include <stdlib.h>
#include <stdio.h>
Dec 31, 2012
Dec 31, 2012
16
#include "SDL_test_common.h"
Dec 31, 2012
Dec 31, 2012
18
static SDLTest_CommonState *state;
19
20
21
22
23
/* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
static void
quit(int rc)
{
Dec 31, 2012
Dec 31, 2012
24
SDLTest_CommonQuit(state);
25
26
27
28
29
30
exit(rc);
}
int
main(int argc, char *argv[])
{
Nov 20, 2012
Nov 20, 2012
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
static const char *cursorNames[] = {
"arrow",
"ibeam",
"wait",
"crosshair",
"waitarrow",
"sizeNWSE",
"sizeNESW",
"sizeWE",
"sizeNS",
"sizeALL",
"NO",
"hand",
};
46
47
int i, done;
SDL_Event event;
Nov 20, 2012
Nov 20, 2012
48
49
int system_cursor = -1;
SDL_Cursor *cursor = NULL;
Mar 30, 2013
Mar 30, 2013
51
52
SDL_assert(SDL_arraysize(cursorNames) == SDL_NUM_SYSTEM_CURSORS);
53
/* Initialize test framework */
Dec 31, 2012
Dec 31, 2012
54
state = SDLTest_CommonCreateState(argv, SDL_INIT_VIDEO);
55
56
57
58
59
60
61
if (!state) {
return 1;
}
state->skip_renderer = SDL_TRUE;
for (i = 1; i < argc;) {
int consumed;
Dec 31, 2012
Dec 31, 2012
62
consumed = SDLTest_CommonArg(state, i);
63
64
65
66
if (consumed == 0) {
consumed = -1;
}
if (consumed < 0) {
Dec 31, 2012
Dec 31, 2012
67
fprintf(stderr, "Usage: %s %s\n", argv[0], SDLTest_CommonUsage(state));
68
69
70
71
quit(1);
}
i += consumed;
}
Dec 31, 2012
Dec 31, 2012
72
if (!SDLTest_CommonInit(state)) {
73
74
75
76
77
78
79
80
quit(2);
}
/* Main render loop */
done = 0;
while (!done) {
/* Check for events */
while (SDL_PollEvent(&event)) {
Dec 31, 2012
Dec 31, 2012
81
SDLTest_CommonEvent(state, &event, &done);
82
83
if (event.type == SDL_WINDOWEVENT) {
Dec 31, 2012
Dec 31, 2012
84
85
86
87
88
89
90
91
92
if (event.window.event == SDL_WINDOWEVENT_RESIZED) {
SDL_Window *window = SDL_GetWindowFromID(event.window.windowID);
if (window) {
printf("Window %d resized to %dx%d\n",
event.window.windowID,
event.window.data1,
event.window.data2);
}
}
93
94
95
if (event.window.event == SDL_WINDOWEVENT_MOVED) {
SDL_Window *window = SDL_GetWindowFromID(event.window.windowID);
if (window) {
Dec 31, 2012
Dec 31, 2012
96
printf("Window %d moved to %d,%d (display %s)\n",
97
98
99
event.window.windowID,
event.window.data1,
event.window.data2,
Dec 31, 2012
Dec 31, 2012
100
SDL_GetDisplayName(SDL_GetWindowDisplayIndex(window)));
Nov 20, 2012
Nov 20, 2012
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
if (event.type == SDL_KEYUP) {
SDL_bool updateCursor = SDL_FALSE;
if (event.key.keysym.sym == SDLK_LEFT) {
--system_cursor;
if (system_cursor < 0) {
system_cursor = SDL_NUM_SYSTEM_CURSORS - 1;
}
updateCursor = SDL_TRUE;
} else if (event.key.keysym.sym == SDLK_RIGHT) {
++system_cursor;
if (system_cursor >= SDL_NUM_SYSTEM_CURSORS) {
system_cursor = 0;
}
updateCursor = SDL_TRUE;
}
if (updateCursor) {
SDL_Log("Changing cursor to \"%s\"", cursorNames[system_cursor]);
SDL_FreeCursor(cursor);
cursor = SDL_CreateSystemCursor((SDL_SystemCursor)system_cursor);
SDL_SetCursor(cursor);
}
}
Nov 20, 2012
Nov 20, 2012
129
130
SDL_FreeCursor(cursor);
May 18, 2013
May 18, 2013
132
133
// keep the compiler happy ...
return(0);
134
135
136
}
/* vi: set ts=4 sw=4 expandtab: */