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

Latest commit

 

History

History
123 lines (98 loc) · 3.05 KB

SDL_ph_wm.c

File metadata and controls

123 lines (98 loc) · 3.05 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
#include <Ph.h>
May 10, 2001
May 10, 2001
25
26
27
#include <photon/PpProto.h>
#include <photon/PhWm.h>
#include <photon/wmapi.h>
Feb 7, 2006
Feb 7, 2006
28
Apr 26, 2001
Apr 26, 2001
29
30
31
32
#include "SDL_version.h"
#include "SDL_timer.h"
#include "SDL_video.h"
#include "SDL_syswm.h"
Feb 16, 2006
Feb 16, 2006
33
34
#include "../SDL_pixels_c.h"
#include "../../events/SDL_events_c.h"
Apr 26, 2001
Apr 26, 2001
35
36
37
#include "SDL_ph_modes_c.h"
#include "SDL_ph_wm_c.h"
May 28, 2006
May 28, 2006
38
39
void
ph_SetIcon (_THIS, SDL_Surface * icon, Uint8 * mask)
Apr 26, 2001
Apr 26, 2001
40
{
Mar 23, 2002
Mar 23, 2002
41
return;
Apr 26, 2001
Apr 26, 2001
42
43
}
May 10, 2001
May 10, 2001
44
/* Set window caption */
May 28, 2006
May 28, 2006
45
46
void
ph_SetCaption (_THIS, const char *title, const char *icon)
Apr 26, 2001
Apr 26, 2001
47
{
May 28, 2006
May 28, 2006
48
SDL_Lock_EventThread ();
Mar 23, 2002
Mar 23, 2002
49
Jan 20, 2003
Jan 20, 2003
50
/* sanity check for set caption call before window init */
May 28, 2006
May 28, 2006
51
52
if (window != NULL) {
PtSetResource (window, Pt_ARG_WINDOW_TITLE, title, 0);
Mar 23, 2002
Mar 23, 2002
53
54
}
May 28, 2006
May 28, 2006
55
SDL_Unlock_EventThread ();
Apr 26, 2001
Apr 26, 2001
56
57
}
Jan 18, 2002
Jan 18, 2002
58
/* Iconify current window */
May 28, 2006
May 28, 2006
59
60
int
ph_IconifyWindow (_THIS)
Apr 26, 2001
Apr 26, 2001
61
{
Mar 23, 2002
Mar 23, 2002
62
PhWindowEvent_t windowevent;
May 10, 2001
May 10, 2001
63
May 28, 2006
May 28, 2006
64
SDL_Lock_EventThread ();
Mar 23, 2002
Mar 23, 2002
65
May 28, 2006
May 28, 2006
66
SDL_memset (&windowevent, 0, sizeof (windowevent));
Mar 23, 2002
Mar 23, 2002
67
68
windowevent.event_f = Ph_WM_HIDE;
windowevent.event_state = Ph_WM_EVSTATE_HIDE;
May 28, 2006
May 28, 2006
69
70
windowevent.rid = PtWidgetRid (window);
PtForwardWindowEvent (&windowevent);
Aug 4, 2003
Aug 4, 2003
71
May 28, 2006
May 28, 2006
72
SDL_Unlock_EventThread ();
Mar 23, 2002
Mar 23, 2002
73
74
return 0;
Apr 26, 2001
Apr 26, 2001
75
76
}
May 28, 2006
May 28, 2006
77
78
SDL_GrabMode
ph_GrabInputNoLock (_THIS, SDL_GrabMode mode)
Apr 26, 2001
Apr 26, 2001
79
{
Jan 20, 2003
Jan 20, 2003
80
81
short abs_x, abs_y;
May 28, 2006
May 28, 2006
82
83
84
85
86
87
88
89
90
91
92
if (mode == SDL_GRAB_OFF) {
PtSetResource (window, Pt_ARG_WINDOW_STATE, Pt_FALSE,
Ph_WM_STATE_ISALTKEY);
} else {
PtSetResource (window, Pt_ARG_WINDOW_STATE, Pt_TRUE,
Ph_WM_STATE_ISALTKEY);
PtGetAbsPosition (window, &abs_x, &abs_y);
PhMoveCursorAbs (PhInputGroup (NULL),
abs_x + SDL_VideoSurface->w / 2,
abs_y + SDL_VideoSurface->h / 2);
Jan 20, 2003
Jan 20, 2003
93
94
}
May 28, 2006
May 28, 2006
95
SDL_Unlock_EventThread ();
Jan 20, 2003
Jan 20, 2003
96
May 28, 2006
May 28, 2006
97
return (mode);
Apr 26, 2001
Apr 26, 2001
98
99
}
May 28, 2006
May 28, 2006
100
101
SDL_GrabMode
ph_GrabInput (_THIS, SDL_GrabMode mode)
Apr 26, 2001
Apr 26, 2001
102
{
May 28, 2006
May 28, 2006
103
104
105
SDL_Lock_EventThread ();
mode = ph_GrabInputNoLock (this, mode);
SDL_Unlock_EventThread ();
Jan 20, 2003
Jan 20, 2003
106
May 28, 2006
May 28, 2006
107
return (mode);
Apr 26, 2001
Apr 26, 2001
108
109
}
Jan 20, 2003
Jan 20, 2003
110
May 28, 2006
May 28, 2006
111
112
int
ph_GetWMInfo (_THIS, SDL_SysWMinfo * info)
Apr 26, 2001
Apr 26, 2001
113
{
May 28, 2006
May 28, 2006
114
if (info->version.major <= SDL_MAJOR_VERSION) {
Mar 23, 2002
Mar 23, 2002
115
return 1;
May 28, 2006
May 28, 2006
116
117
} else {
SDL_SetError ("Application not compiled with SDL %d.%d\n",
Mar 23, 2002
Mar 23, 2002
118
119
120
SDL_MAJOR_VERSION, SDL_MINOR_VERSION);
return -1;
}
Apr 26, 2001
Apr 26, 2001
121
}
May 28, 2006
May 28, 2006
122
123
/* vi: set ts=4 sw=4 expandtab: */