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

Latest commit

 

History

History
193 lines (175 loc) · 5.9 KB

SDL_windowevents.c

File metadata and controls

193 lines (175 loc) · 5.9 KB
 
Apr 8, 2011
Apr 8, 2011
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
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, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
20
21
22
23
24
25
26
*/
#include "SDL_config.h"
/* Window event handling code for SDL */
#include "SDL_events.h"
#include "SDL_events_c.h"
Nov 27, 2008
Nov 27, 2008
27
#include "SDL_mouse_c.h"
28
29
#include "../video/SDL_sysvideo.h"
Dec 16, 2009
Dec 16, 2009
30
31
32
33
34
35
36
static int
RemovePendingSizeEvents(void * userdata, SDL_Event *event)
{
SDL_Event *new_event = (SDL_Event *)userdata;
if (event->type == SDL_WINDOWEVENT &&
Feb 13, 2011
Feb 13, 2011
37
38
(event->window.event == SDL_WINDOWEVENT_RESIZED ||
event->window.event == SDL_WINDOWEVENT_SIZE_CHANGED) &&
Dec 16, 2009
Dec 16, 2009
39
40
41
42
43
44
45
event->window.windowID == new_event->window.windowID) {
/* We're about to post a new size event, drop the old one */
return 0;
}
return 1;
}
Jan 20, 2011
Jan 20, 2011
46
47
48
49
50
51
52
53
54
55
56
57
58
59
static int
RemovePendingMoveEvents(void * userdata, SDL_Event *event)
{
SDL_Event *new_event = (SDL_Event *)userdata;
if (event->type == SDL_WINDOWEVENT &&
event->window.event == SDL_WINDOWEVENT_MOVED &&
event->window.windowID == new_event->window.windowID) {
/* We're about to post a new move event, drop the old one */
return 0;
}
return 1;
}
Jan 21, 2010
Jan 21, 2010
61
SDL_SendWindowEvent(SDL_Window * window, Uint8 windowevent, int data1,
62
63
64
65
66
67
68
69
70
71
72
73
int data2)
{
int posted;
if (!window) {
return 0;
}
switch (windowevent) {
case SDL_WINDOWEVENT_SHOWN:
if (window->flags & SDL_WINDOW_SHOWN) {
return 0;
}
Feb 22, 2011
Feb 22, 2011
74
window->flags &= ~SDL_WINDOW_HIDDEN;
75
76
77
78
79
80
81
82
window->flags |= SDL_WINDOW_SHOWN;
SDL_OnWindowShown(window);
break;
case SDL_WINDOWEVENT_HIDDEN:
if (!(window->flags & SDL_WINDOW_SHOWN)) {
return 0;
}
window->flags &= ~SDL_WINDOW_SHOWN;
Feb 22, 2011
Feb 22, 2011
83
window->flags |= SDL_WINDOW_HIDDEN;
84
85
86
SDL_OnWindowHidden(window);
break;
case SDL_WINDOWEVENT_MOVED:
Feb 11, 2011
Feb 11, 2011
87
88
if (SDL_WINDOWPOS_ISUNDEFINED(data1) ||
SDL_WINDOWPOS_ISUNDEFINED(data2)) {
Feb 26, 2011
Feb 26, 2011
91
92
93
94
if (!(window->flags & SDL_WINDOW_FULLSCREEN)) {
window->windowed.x = data1;
window->windowed.y = data2;
}
95
96
97
if (data1 == window->x && data2 == window->y) {
return 0;
}
Jul 19, 2006
Jul 19, 2006
98
99
window->x = data1;
window->y = data2;
100
101
break;
case SDL_WINDOWEVENT_RESIZED:
Feb 26, 2011
Feb 26, 2011
102
103
104
105
if (!(window->flags & SDL_WINDOW_FULLSCREEN)) {
window->windowed.w = data1;
window->windowed.h = data2;
}
106
107
108
if (data1 == window->w && data2 == window->h) {
return 0;
}
Jul 19, 2006
Jul 19, 2006
109
110
window->w = data1;
window->h = data2;
Feb 3, 2011
Feb 3, 2011
111
SDL_OnWindowResized(window);
112
113
114
115
116
117
break;
case SDL_WINDOWEVENT_MINIMIZED:
if (window->flags & SDL_WINDOW_MINIMIZED) {
return 0;
}
window->flags |= SDL_WINDOW_MINIMIZED;
Dec 1, 2009
Dec 1, 2009
118
SDL_OnWindowMinimized(window);
119
120
121
122
123
124
125
126
127
128
129
130
break;
case SDL_WINDOWEVENT_MAXIMIZED:
if (window->flags & SDL_WINDOW_MAXIMIZED) {
return 0;
}
window->flags |= SDL_WINDOW_MAXIMIZED;
break;
case SDL_WINDOWEVENT_RESTORED:
if (!(window->flags & (SDL_WINDOW_MINIMIZED | SDL_WINDOW_MAXIMIZED))) {
return 0;
}
window->flags &= ~(SDL_WINDOW_MINIMIZED | SDL_WINDOW_MAXIMIZED);
Dec 1, 2009
Dec 1, 2009
131
SDL_OnWindowRestored(window);
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
break;
case SDL_WINDOWEVENT_ENTER:
if (window->flags & SDL_WINDOW_MOUSE_FOCUS) {
return 0;
}
window->flags |= SDL_WINDOW_MOUSE_FOCUS;
break;
case SDL_WINDOWEVENT_LEAVE:
if (!(window->flags & SDL_WINDOW_MOUSE_FOCUS)) {
return 0;
}
window->flags &= ~SDL_WINDOW_MOUSE_FOCUS;
break;
case SDL_WINDOWEVENT_FOCUS_GAINED:
if (window->flags & SDL_WINDOW_INPUT_FOCUS) {
return 0;
}
window->flags |= SDL_WINDOW_INPUT_FOCUS;
SDL_OnWindowFocusGained(window);
break;
case SDL_WINDOWEVENT_FOCUS_LOST:
if (!(window->flags & SDL_WINDOW_INPUT_FOCUS)) {
return 0;
}
window->flags &= ~SDL_WINDOW_INPUT_FOCUS;
SDL_OnWindowFocusLost(window);
break;
}
/* Post the event, if desired */
posted = 0;
Mar 25, 2010
Mar 25, 2010
163
if (SDL_GetEventState(SDL_WINDOWEVENT) == SDL_ENABLE) {
164
165
166
167
168
SDL_Event event;
event.type = SDL_WINDOWEVENT;
event.window.event = windowevent;
event.window.data1 = data1;
event.window.data2 = data2;
Jan 21, 2010
Jan 21, 2010
169
event.window.windowID = window->id;
Dec 16, 2009
Dec 16, 2009
170
171
/* Fixes queue overflow with resize events that aren't processed */
Mar 29, 2011
Mar 29, 2011
172
if (windowevent == SDL_WINDOWEVENT_RESIZED ||
Mar 29, 2011
Mar 29, 2011
173
windowevent == SDL_WINDOWEVENT_SIZE_CHANGED) {
Dec 16, 2009
Dec 16, 2009
174
175
SDL_FilterEvents(RemovePendingSizeEvents, &event);
}
Jan 20, 2011
Jan 20, 2011
176
177
178
if (windowevent == SDL_WINDOWEVENT_MOVED) {
SDL_FilterEvents(RemovePendingMoveEvents, &event);
}
Dec 16, 2009
Dec 16, 2009
179
180
181
posted = (SDL_PushEvent(&event) > 0);
}
Jan 27, 2011
Jan 27, 2011
182
183
184
185
186
187
188
189
if (windowevent == SDL_WINDOWEVENT_CLOSE) {
if ( !window->prev && !window->next ) {
// This is the last window in the list so send the SDL_QUIT event
SDL_SendQuit();
}
}
190
191
192
193
return (posted);
}
/* vi: set ts=4 sw=4 expandtab: */