Skip to content

Latest commit

 

History

History
133 lines (110 loc) · 3.1 KB

SDL_ph_wm.c

File metadata and controls

133 lines (110 loc) · 3.1 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Mar 6, 2002
Mar 6, 2002
3
Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
23
24
25
26
27
*/
#ifdef SAVE_RCSID
static char rcsid =
"@(#) $Id$";
#endif
May 10, 2001
May 10, 2001
28
29
#define DISABLE_X11
Apr 26, 2001
Apr 26, 2001
30
31
32
#include <stdlib.h>
#include <string.h>
#include <Ph.h>
May 10, 2001
May 10, 2001
33
34
35
#include <photon/PpProto.h>
#include <photon/PhWm.h>
#include <photon/wmapi.h>
Apr 26, 2001
Apr 26, 2001
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include "SDL_version.h"
#include "SDL_error.h"
#include "SDL_timer.h"
#include "SDL_video.h"
#include "SDL_syswm.h"
#include "SDL_events_c.h"
#include "SDL_pixels_c.h"
#include "SDL_ph_modes_c.h"
#include "SDL_ph_wm_c.h"
/* This is necessary for working properly with Enlightenment, etc. */
#define USE_ICON_WINDOW
void ph_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask)
{
Mar 23, 2002
Mar 23, 2002
51
return;
Apr 26, 2001
Apr 26, 2001
52
53
}
May 10, 2001
May 10, 2001
54
/* Set window caption */
Apr 26, 2001
Apr 26, 2001
55
56
void ph_SetCaption(_THIS, const char *title, const char *icon)
{
Mar 23, 2002
Mar 23, 2002
57
58
59
60
61
62
63
64
65
66
67
68
69
SDL_Lock_EventThread();
/* check for set caption call before window init */
if (window!=NULL)
{
PtSetResource(window, Pt_ARG_WINDOW_TITLE, title, 0);
}
else
{
captionflag=1;
}
SDL_Unlock_EventThread();
Apr 26, 2001
Apr 26, 2001
70
71
}
Jan 18, 2002
Jan 18, 2002
72
/* Iconify current window */
Apr 26, 2001
Apr 26, 2001
73
74
int ph_IconifyWindow(_THIS)
{
Mar 23, 2002
Mar 23, 2002
75
PhWindowEvent_t windowevent;
May 10, 2001
May 10, 2001
76
Mar 23, 2002
Mar 23, 2002
77
78
79
80
81
82
83
84
85
86
SDL_Lock_EventThread();
memset( &windowevent, 0, sizeof (event) );
windowevent.event_f = Ph_WM_HIDE;
windowevent.event_state = Ph_WM_EVSTATE_HIDE;
windowevent.rid = PtWidgetRid( window );
PtForwardWindowEvent( &windowevent );
SDL_Unlock_EventThread();
return 0;
Apr 26, 2001
Apr 26, 2001
87
88
89
90
}
SDL_GrabMode ph_GrabInputNoLock(_THIS, SDL_GrabMode mode)
{
Mar 23, 2002
Mar 23, 2002
91
return(mode);
Apr 26, 2001
Apr 26, 2001
92
93
94
95
}
SDL_GrabMode ph_GrabInput(_THIS, SDL_GrabMode mode)
{
Feb 20, 2002
Feb 20, 2002
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
short abs_x, abs_y;
SDL_Lock_EventThread();
/* mode = ph_GrabInputNoLock(this, mode);*/
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 );
}
SDL_Unlock_EventThread();
return(mode);
Apr 26, 2001
Apr 26, 2001
119
120
121
122
}
int ph_GetWMInfo(_THIS, SDL_SysWMinfo *info)
{
Mar 23, 2002
Mar 23, 2002
123
124
125
126
127
128
129
130
131
132
if (info->version.major <= SDL_MAJOR_VERSION)
{
return 1;
}
else
{
SDL_SetError("Application not compiled with SDL %d.%d\n",
SDL_MAJOR_VERSION, SDL_MINOR_VERSION);
return -1;
}
Apr 26, 2001
Apr 26, 2001
133
}