Skip to content

Latest commit

 

History

History
98 lines (79 loc) · 2.77 KB

SDL_dropevents.c

File metadata and controls

98 lines (79 loc) · 2.77 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 2, 2016
Jan 2, 2016
3
Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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.
*/
#include "../SDL_internal.h"
/* Drag and drop event handling code for SDL */
#include "SDL_events.h"
#include "SDL_events_c.h"
#include "SDL_dropevents_c.h"
Jan 5, 2016
Jan 5, 2016
29
30
#include "../video/SDL_sysvideo.h" /* for SDL_Window internals. */
Jan 5, 2016
Jan 5, 2016
32
static int
Jan 5, 2016
Jan 5, 2016
33
SDL_SendDrop(SDL_Window *window, const SDL_EventType evtype, const char *data)
Jan 5, 2016
Jan 5, 2016
35
36
static SDL_bool app_is_dropping = SDL_FALSE;
int posted = 0;
37
38
/* Post the event, if desired */
Jan 5, 2016
Jan 5, 2016
39
if (SDL_GetEventState(evtype) == SDL_ENABLE) {
Jan 5, 2016
Jan 5, 2016
40
const SDL_bool need_begin = window ? !window->is_dropping : !app_is_dropping;
Jan 5, 2016
Jan 5, 2016
42
43
44
45
if (need_begin) {
SDL_zero(event);
event.type = SDL_DROPBEGIN;
Jan 7, 2016
Jan 7, 2016
46
47
48
49
50
if (window) {
event.drop.windowID = window->id;
}
Jan 5, 2016
Jan 5, 2016
51
52
53
54
55
56
57
58
59
60
61
posted = (SDL_PushEvent(&event) > 0);
if (!posted) {
return 0;
}
if (window) {
window->is_dropping = SDL_TRUE;
} else {
app_is_dropping = SDL_TRUE;
}
}
Jan 5, 2016
Jan 5, 2016
62
63
SDL_zero(event);
event.type = evtype;
Jan 5, 2016
Jan 5, 2016
64
65
event.drop.file = data ? SDL_strdup(data) : NULL;
event.drop.windowID = window ? window->id : 0;
66
posted = (SDL_PushEvent(&event) > 0);
Jan 5, 2016
Jan 5, 2016
67
68
69
70
71
72
73
74
if (posted && (evtype == SDL_DROPCOMPLETE)) {
if (window) {
window->is_dropping = SDL_FALSE;
} else {
app_is_dropping = SDL_FALSE;
}
}
Jan 5, 2016
Jan 5, 2016
76
77
78
79
return posted;
}
int
Jan 5, 2016
Jan 5, 2016
80
SDL_SendDropFile(SDL_Window *window, const char *file)
Jan 5, 2016
Jan 5, 2016
81
{
Jan 5, 2016
Jan 5, 2016
82
return SDL_SendDrop(window, SDL_DROPFILE, file);
Jan 5, 2016
Jan 5, 2016
83
84
85
}
int
Jan 5, 2016
Jan 5, 2016
86
SDL_SendDropText(SDL_Window *window, const char *text)
Jan 5, 2016
Jan 5, 2016
87
{
Jan 5, 2016
Jan 5, 2016
88
return SDL_SendDrop(window, SDL_DROPTEXT, text);
Jan 5, 2016
Jan 5, 2016
91
92
93
94
95
96
97
int
SDL_SendDropComplete(SDL_Window *window)
{
return SDL_SendDrop(window, SDL_DROPCOMPLETE, NULL);
}
98
/* vi: set ts=4 sw=4 expandtab: */