Mercurial > mplayer.hg
annotate libvo/x11_common.c @ 31391:6e2c9a628fba
Simplify fribidi check - console output is not necessary.
author | diego |
---|---|
date | Thu, 17 Jun 2010 10:42:45 +0000 |
parents | c3e536cf595b |
children | 749835ce19dc |
rev | line source |
---|---|
28446
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
1 /* |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
2 * This file is part of MPlayer. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
3 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
7 * (at your option) any later version. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
8 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
12 * GNU General Public License for more details. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
13 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28250
diff
changeset
|
17 */ |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
18 |
32 | 19 #include <stdio.h> |
20 #include <stdlib.h> | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
21 #include <math.h> |
6401 | 22 #include <inttypes.h> |
27893 | 23 #include <limits.h> |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
24 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
25 #include "config.h" |
5998 | 26 #include "mp_msg.h" |
22823
98eaf29b5dee
Code cleanup: don't include a .c file in mplayer.c and fix a few
rathann
parents:
21964
diff
changeset
|
27 #include "mp_fifo.h" |
28250 | 28 #include "libavutil/common.h" |
6401 | 29 #include "x11_common.h" |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
30 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
31 #ifdef X11_FULLSCREEN |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
32 |
440
d19a3da6ac13
Pontscho's mixer, select, and hell-a-lot-of-stuff patch ;)
gabucino
parents:
416
diff
changeset
|
33 #include <string.h> |
32 | 34 #include <unistd.h> |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
35 #include <assert.h> |
32 | 36 |
37 #include "video_out.h" | |
10889 | 38 #include "aspect.h" |
12032
8cc4d4344c0f
Don't mess with the window position in xinerama when -geometry changes it.
diego
parents:
12031
diff
changeset
|
39 #include "geometry.h" |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
40 #include "help_mp.h" |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
41 #include "osdep/timer.h" |
32 | 42 |
324 | 43 #include <X11/Xmd.h> |
32 | 44 #include <X11/Xlib.h> |
45 #include <X11/Xutil.h> | |
46 #include <X11/Xatom.h> | |
47 | |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
48 #ifdef CONFIG_XSS |
25482 | 49 #include <X11/extensions/scrnsaver.h> |
50 #endif | |
51 | |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
52 #ifdef CONFIG_XDPMS |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
53 #include <X11/extensions/dpms.h> |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
54 #endif |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
55 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
56 #ifdef CONFIG_XINERAMA |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
57 #include <X11/extensions/Xinerama.h> |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
58 #endif |
1732 | 59 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
60 #ifdef CONFIG_XF86VM |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
61 #include <X11/extensions/xf86vmode.h> |
14636
408bcfa575bf
Separate XF86 video mode extension check from XF86 keysym check as
diego
parents:
14244
diff
changeset
|
62 #endif |
408bcfa575bf
Separate XF86 video mode extension check from XF86 keysym check as
diego
parents:
14244
diff
changeset
|
63 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
64 #ifdef CONFIG_XF86XK |
9822
1e761763566c
Support for "internet" or "multimedia" keyboards in X11.
albeu
parents:
9695
diff
changeset
|
65 #include <X11/XF86keysym.h> |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
66 #endif |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
67 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
68 #ifdef CONFIG_XV |
10359 | 69 #include <X11/extensions/Xv.h> |
70 #include <X11/extensions/Xvlib.h> | |
14742 | 71 |
72 #include "subopt-helper.h" | |
10359 | 73 #endif |
74 | |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
75 #include "input/input.h" |
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
76 #include "input/mouse.h" |
4658 | 77 |
27343 | 78 #ifdef CONFIG_GUI |
23077 | 79 #include "gui/interface.h" |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
80 #include "mplayer.h" |
4798 | 81 #endif |
82 | |
8660
39476cbd1673
I have looked at the fullscreen code and realized that there are
arpi
parents:
8653
diff
changeset
|
83 #define WIN_LAYER_ONBOTTOM 2 |
39476cbd1673
I have looked at the fullscreen code and realized that there are
arpi
parents:
8653
diff
changeset
|
84 #define WIN_LAYER_NORMAL 4 |
39476cbd1673
I have looked at the fullscreen code and realized that there are
arpi
parents:
8653
diff
changeset
|
85 #define WIN_LAYER_ONTOP 6 |
8669
fd398a0b4b3b
This time the patch is fixing much more that breaking :-)
arpi
parents:
8663
diff
changeset
|
86 #define WIN_LAYER_ABOVE_DOCK 10 |
12582 | 87 |
88 int fs_layer = WIN_LAYER_ABOVE_DOCK; | |
89 static int orig_layer = 0; | |
12111
8e31aacc3e81
- win_gravity memorizing and restoring while switching fullscreen mode (by Adam Tla/lka)
rathann
parents:
12096
diff
changeset
|
90 static int old_gravity = NorthWestGravity; |
8866 | 91 |
12582 | 92 int stop_xscreensaver = 0; |
6202 | 93 |
12582 | 94 static int dpms_disabled = 0; |
324 | 95 |
12582 | 96 char *mDisplayName = NULL; |
97 Display *mDisplay = NULL; | |
98 Window mRootWin; | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
99 int mScreen; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
100 int mLocalDisplay; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
101 |
3830 | 102 /* output window id */ |
5955
caac20b1ca79
fix xmga fs, resize to movie size and mouse auto hide + dga
pontscho
parents:
5919
diff
changeset
|
103 int vo_mouse_autohide = 0; |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
104 int vo_wm_type = 0; |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
105 int vo_fs_type = 0; // needs to be accessible for GUI X11 code |
30465
3422423f2e20
Create the OpenGL probe window as a hidden Window on X11.
reimar
parents:
30455
diff
changeset
|
106 static int window_state; |
12125
f4fc74a88e65
full screen flipping synchronization corrections (by Adam Tla/lka)
rathann
parents:
12123
diff
changeset
|
107 static int vo_fs_flip = 0; |
12582 | 108 char **vo_fstype_list; |
384 | 109 |
21938 | 110 /* 1 means that the WM is metacity (broken as hell) */ |
8835
664b0612f950
Fixed metacity + xv behavior (something broke it lately).
filon
parents:
8783
diff
changeset
|
111 int metacity_hack = 0; |
664b0612f950
Fixed metacity + xv behavior (something broke it lately).
filon
parents:
8783
diff
changeset
|
112 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
113 static Atom XA_NET_SUPPORTED; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
114 static Atom XA_NET_WM_STATE; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
115 static Atom XA_NET_WM_STATE_FULLSCREEN; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
116 static Atom XA_NET_WM_STATE_ABOVE; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
117 static Atom XA_NET_WM_STATE_STAYS_ON_TOP; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
118 static Atom XA_NET_WM_STATE_BELOW; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
119 static Atom XA_NET_WM_PID; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
120 static Atom XA_WIN_PROTOCOLS; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
121 static Atom XA_WIN_LAYER; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
122 static Atom XA_WIN_HINTS; |
18149
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
123 static Atom XAWM_PROTOCOLS; |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
124 static Atom XAWM_DELETE_WINDOW; |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
125 |
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
126 #define XA_INIT(x) XA##x = XInternAtom(mDisplay, #x, False) |
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
127 |
7435 | 128 static int vo_old_x = 0; |
129 static int vo_old_y = 0; | |
130 static int vo_old_width = 0; | |
131 static int vo_old_height = 0; | |
132 | |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
133 #ifdef CONFIG_XF86VM |
12582 | 134 XF86VidModeModeInfo **vidmodes = NULL; |
4977
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
135 XF86VidModeModeLine modeline; |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
136 #endif |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
137 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
138 static int vo_x11_get_fs_type(int supported); |
10212
d358fa9a1068
warning fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
alex
parents:
10193
diff
changeset
|
139 |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
140 |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
141 /* |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
142 * Sends the EWMH fullscreen state event. |
21938 | 143 * |
144 * action: could be one of _NET_WM_STATE_REMOVE -- remove state | |
145 * _NET_WM_STATE_ADD -- add state | |
146 * _NET_WM_STATE_TOGGLE -- toggle | |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
147 */ |
12582 | 148 void vo_x11_ewmh_fullscreen(int action) |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
149 { |
12582 | 150 assert(action == _NET_WM_STATE_REMOVE || |
151 action == _NET_WM_STATE_ADD || action == _NET_WM_STATE_TOGGLE); | |
152 | |
153 if (vo_fs_type & vo_wm_FULLSCREEN) | |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
154 { |
12582 | 155 XEvent xev; |
156 | |
21938 | 157 /* init X event structure for _NET_WM_FULLSCREEN client message */ |
12582 | 158 xev.xclient.type = ClientMessage; |
159 xev.xclient.serial = 0; | |
160 xev.xclient.send_event = True; | |
27616
213d9bc30b35
Use already "prefetched" atoms instead of calling XInternAtom each time.
reimar
parents:
27377
diff
changeset
|
161 xev.xclient.message_type = XA_NET_WM_STATE; |
12582 | 162 xev.xclient.window = vo_window; |
163 xev.xclient.format = 32; | |
164 xev.xclient.data.l[0] = action; | |
27616
213d9bc30b35
Use already "prefetched" atoms instead of calling XInternAtom each time.
reimar
parents:
27377
diff
changeset
|
165 xev.xclient.data.l[1] = XA_NET_WM_STATE_FULLSCREEN; |
12582 | 166 xev.xclient.data.l[2] = 0; |
167 xev.xclient.data.l[3] = 0; | |
168 xev.xclient.data.l[4] = 0; | |
169 | |
170 /* finally send that damn thing */ | |
171 if (!XSendEvent(mDisplay, DefaultRootWindow(mDisplay), False, | |
172 SubstructureRedirectMask | SubstructureNotifyMask, | |
173 &xev)) | |
174 { | |
175 mp_msg(MSGT_VO, MSGL_ERR, MSGTR_EwmhFullscreenStateFailed); | |
176 } | |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
177 } |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
178 } |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
179 |
12582 | 180 void vo_hidecursor(Display * disp, Window win) |
384 | 181 { |
12582 | 182 Cursor no_ptr; |
183 Pixmap bm_no; | |
184 XColor black, dummy; | |
185 Colormap colormap; | |
13828
b4ad5f0b550d
Fix erroneus extern declarations, fix wrong signedness of some vars
atmos4
parents:
13787
diff
changeset
|
186 static char bm_no_data[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; |
3954 | 187 |
12582 | 188 if (WinID == 0) |
21938 | 189 return; // do not hide if playing on the root window |
12582 | 190 |
191 colormap = DefaultColormap(disp, DefaultScreen(disp)); | |
14743
465c8617cbe5
We should not crash, only because we couldn't hide the cursor.
al
parents:
14742
diff
changeset
|
192 if ( !XAllocNamedColor(disp, colormap, "black", &black, &dummy) ) |
465c8617cbe5
We should not crash, only because we couldn't hide the cursor.
al
parents:
14742
diff
changeset
|
193 { |
465c8617cbe5
We should not crash, only because we couldn't hide the cursor.
al
parents:
14742
diff
changeset
|
194 return; // color alloc failed, give up |
465c8617cbe5
We should not crash, only because we couldn't hide the cursor.
al
parents:
14742
diff
changeset
|
195 } |
12582 | 196 bm_no = XCreateBitmapFromData(disp, win, bm_no_data, 8, 8); |
197 no_ptr = XCreatePixmapCursor(disp, bm_no, bm_no, &black, &black, 0, 0); | |
198 XDefineCursor(disp, win, no_ptr); | |
199 XFreeCursor(disp, no_ptr); | |
200 if (bm_no != None) | |
201 XFreePixmap(disp, bm_no); | |
13953 | 202 XFreeColors(disp,colormap,&black.pixel,1,0); |
384 | 203 } |
204 | |
12582 | 205 void vo_showcursor(Display * disp, Window win) |
206 { | |
207 if (WinID == 0) | |
208 return; | |
209 XDefineCursor(disp, win, 0); | |
5955
caac20b1ca79
fix xmga fs, resize to movie size and mouse auto hide + dga
pontscho
parents:
5919
diff
changeset
|
210 } |
384 | 211 |
12582 | 212 static int x11_errorhandler(Display * display, XErrorEvent * event) |
4742 | 213 { |
214 #define MSGLEN 60 | |
215 char msg[MSGLEN]; | |
12582 | 216 |
217 XGetErrorText(display, event->error_code, (char *) &msg, MSGLEN); | |
218 | |
219 mp_msg(MSGT_VO, MSGL_ERR, "X11 error: %s\n", msg); | |
220 | |
221 mp_msg(MSGT_VO, MSGL_V, | |
17366 | 222 "Type: %x, display: %p, resourceid: %lx, serial: %lx\n", |
12582 | 223 event->type, event->display, event->resourceid, event->serial); |
224 mp_msg(MSGT_VO, MSGL_V, | |
225 "Error code: %x, request code: %x, minor code: %x\n", | |
226 event->error_code, event->request_code, event->minor_code); | |
227 | |
21808
eaf6ed9cb5ab
Do not abort on X11 errors, most are not at all fatal.
reimar
parents:
21623
diff
changeset
|
228 // abort(); |
23615 | 229 return 0; |
4742 | 230 #undef MSGLEN |
231 } | |
1732 | 232 |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
233 void fstype_help(void) |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
234 { |
12582 | 235 mp_msg(MSGT_VO, MSGL_INFO, MSGTR_AvailableFsType); |
18237
4231482179b6
Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents:
18160
diff
changeset
|
236 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FULL_SCREEN_TYPES\n"); |
12582 | 237 |
238 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "none", | |
239 "don't set fullscreen window layer"); | |
240 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "layer", | |
241 "use _WIN_LAYER hint with default layer"); | |
242 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "layer=<0..15>", | |
243 "use _WIN_LAYER hint with a given layer number"); | |
244 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "netwm", | |
245 "force NETWM style"); | |
246 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "above", | |
247 "use _NETWM_STATE_ABOVE hint if available"); | |
248 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "below", | |
249 "use _NETWM_STATE_BELOW hint if available"); | |
250 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "fullscreen", | |
251 "use _NETWM_STATE_FULLSCREEN hint if availale"); | |
252 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "stays_on_top", | |
253 "use _NETWM_STATE_STAYS_ON_TOP hint if available"); | |
254 mp_msg(MSGT_VO, MSGL_INFO, | |
255 "You can also negate the settings with simply putting '-' in the beginning"); | |
17727
096cb1dfb591
Make -xy help output consistent, output an empty line before and after.
diego
parents:
17566
diff
changeset
|
256 mp_msg(MSGT_VO, MSGL_INFO, "\n"); |
10695
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
257 } |
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
258 |
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
259 static void fstype_dump(int fstype) |
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
260 { |
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
261 if (fstype) |
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
262 { |
12582 | 263 mp_msg(MSGT_VO, MSGL_V, "[x11] Current fstype setting honours"); |
264 if (fstype & vo_wm_LAYER) | |
265 mp_msg(MSGT_VO, MSGL_V, " LAYER"); | |
266 if (fstype & vo_wm_FULLSCREEN) | |
267 mp_msg(MSGT_VO, MSGL_V, " FULLSCREEN"); | |
268 if (fstype & vo_wm_STAYS_ON_TOP) | |
269 mp_msg(MSGT_VO, MSGL_V, " STAYS_ON_TOP"); | |
270 if (fstype & vo_wm_ABOVE) | |
271 mp_msg(MSGT_VO, MSGL_V, " ABOVE"); | |
272 if (fstype & vo_wm_BELOW) | |
273 mp_msg(MSGT_VO, MSGL_V, " BELOW"); | |
274 mp_msg(MSGT_VO, MSGL_V, " X atoms\n"); | |
275 } else | |
276 mp_msg(MSGT_VO, MSGL_V, | |
277 "[x11] Current fstype setting doesn't honour any X atoms\n"); | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
278 } |
12582 | 279 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
280 static int net_wm_support_state_test(Atom atom) |
8653 | 281 { |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
282 #define NET_WM_STATE_TEST(x) { if (atom == XA_NET_WM_STATE_##x) { mp_msg( MSGT_VO,MSGL_V, "[x11] Detected wm supports " #x " state.\n" ); return vo_wm_##x; } } |
12582 | 283 |
284 NET_WM_STATE_TEST(FULLSCREEN); | |
285 NET_WM_STATE_TEST(ABOVE); | |
286 NET_WM_STATE_TEST(STAYS_ON_TOP); | |
287 NET_WM_STATE_TEST(BELOW); | |
288 return 0; | |
8653 | 289 } |
290 | |
12582 | 291 static int x11_get_property(Atom type, Atom ** args, unsigned long *nitems) |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
292 { |
12582 | 293 int format; |
294 unsigned long bytesafter; | |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
295 |
26755
46f0b4d34fa1
cosmetics: Remove useless parentheses from from return statements.
diego
parents:
26436
diff
changeset
|
296 return Success == |
12582 | 297 XGetWindowProperty(mDisplay, mRootWin, type, 0, 16384, False, |
298 AnyPropertyType, &type, &format, nitems, | |
299 &bytesafter, (unsigned char **) args) | |
26755
46f0b4d34fa1
cosmetics: Remove useless parentheses from from return statements.
diego
parents:
26436
diff
changeset
|
300 && *nitems > 0; |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
301 } |
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
302 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
303 static int vo_wm_detect(void) |
6009 | 304 { |
12582 | 305 int i; |
306 int wm = 0; | |
307 unsigned long nitems; | |
308 Atom *args = NULL; | |
309 | |
310 if (WinID >= 0) | |
311 return 0; | |
312 | |
8669
fd398a0b4b3b
This time the patch is fixing much more that breaking :-)
arpi
parents:
8663
diff
changeset
|
313 // -- supports layers |
12582 | 314 if (x11_get_property(XA_WIN_PROTOCOLS, &args, &nitems)) |
315 { | |
316 mp_msg(MSGT_VO, MSGL_V, "[x11] Detected wm supports layers.\n"); | |
317 for (i = 0; i < nitems; i++) | |
318 { | |
319 if (args[i] == XA_WIN_LAYER) | |
320 { | |
321 wm |= vo_wm_LAYER; | |
322 metacity_hack |= 1; | |
323 } else | |
21938 | 324 /* metacity is the only window manager I know which reports |
325 * supporting only the _WIN_LAYER hint in _WIN_PROTOCOLS. | |
326 * (what's more support for it is broken) */ | |
12582 | 327 metacity_hack |= 2; |
328 } | |
329 XFree(args); | |
330 if (wm && (metacity_hack == 1)) | |
331 { | |
21938 | 332 // metacity claims to support layers, but it is not the truth :-) |
12582 | 333 wm ^= vo_wm_LAYER; |
334 mp_msg(MSGT_VO, MSGL_V, | |
335 "[x11] Using workaround for Metacity bugs.\n"); | |
336 } | |
337 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
338 // --- netwm |
12582 | 339 if (x11_get_property(XA_NET_SUPPORTED, &args, &nitems)) |
340 { | |
341 mp_msg(MSGT_VO, MSGL_V, "[x11] Detected wm supports NetWM.\n"); | |
342 for (i = 0; i < nitems; i++) | |
343 wm |= net_wm_support_state_test(args[i]); | |
344 XFree(args); | |
345 } | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
346 |
12582 | 347 if (wm == 0) |
348 mp_msg(MSGT_VO, MSGL_V, "[x11] Unknown wm type...\n"); | |
349 return wm; | |
350 } | |
6009 | 351 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
352 static void init_atoms(void) |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
353 { |
12582 | 354 XA_INIT(_NET_SUPPORTED); |
355 XA_INIT(_NET_WM_STATE); | |
356 XA_INIT(_NET_WM_STATE_FULLSCREEN); | |
357 XA_INIT(_NET_WM_STATE_ABOVE); | |
358 XA_INIT(_NET_WM_STATE_STAYS_ON_TOP); | |
359 XA_INIT(_NET_WM_STATE_BELOW); | |
360 XA_INIT(_NET_WM_PID); | |
361 XA_INIT(_WIN_PROTOCOLS); | |
362 XA_INIT(_WIN_LAYER); | |
363 XA_INIT(_WIN_HINTS); | |
18149
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
364 XA_INIT(WM_PROTOCOLS); |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
365 XA_INIT(WM_DELETE_WINDOW); |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
366 } |
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
367 |
18116 | 368 void update_xinerama_info(void) { |
26436 | 369 xinerama_x = xinerama_y = 0; |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
370 #ifdef CONFIG_XINERAMA |
31061
075a2c6bebb4
Move variable declaration into the block where it is actually used.
reimar
parents:
31058
diff
changeset
|
371 if (xinerama_screen >= -1 && XineramaIsActive(mDisplay)) |
18116 | 372 { |
31061
075a2c6bebb4
Move variable declaration into the block where it is actually used.
reimar
parents:
31058
diff
changeset
|
373 int screen = xinerama_screen; |
18116 | 374 XineramaScreenInfo *screens; |
375 int num_screens; | |
376 | |
377 screens = XineramaQueryScreens(mDisplay, &num_screens); | |
26436 | 378 if (screen >= num_screens) |
379 screen = num_screens - 1; | |
380 if (screen == -1) { | |
381 int x = vo_dx + vo_dwidth / 2; | |
382 int y = vo_dy + vo_dheight / 2; | |
383 for (screen = num_screens - 1; screen > 0; screen--) { | |
384 int left = screens[screen].x_org; | |
385 int right = left + screens[screen].width; | |
386 int top = screens[screen].y_org; | |
387 int bottom = top + screens[screen].height; | |
388 if (left <= x && x <= right && top <= y && y <= bottom) | |
389 break; | |
390 } | |
26407 | 391 } |
18116 | 392 if (screen < 0) |
393 screen = 0; | |
394 vo_screenwidth = screens[screen].width; | |
395 vo_screenheight = screens[screen].height; | |
396 xinerama_x = screens[screen].x_org; | |
397 xinerama_y = screens[screen].y_org; | |
398 | |
399 XFree(screens); | |
400 } | |
18160
03bc3385a845
10l, aspect_save_screenres must be always called in update_xinerama_info.
reimar
parents:
18149
diff
changeset
|
401 #endif |
18116 | 402 aspect_save_screenres(vo_screenwidth, vo_screenheight); |
403 } | |
404 | |
12582 | 405 int vo_init(void) |
32 | 406 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
407 // int mScreen; |
12582 | 408 int depth, bpp; |
409 unsigned int mask; | |
410 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
411 // char * DisplayName = ":0.0"; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
412 // Display * mDisplay; |
12582 | 413 XImage *mXImage = NULL; |
414 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
415 // Window mRootWin; |
12582 | 416 XWindowAttributes attribs; |
417 char *dispName; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
418 |
12972
c8900eba2cc7
now use vo_rootwin var to check for -rootwin switch
nplourde
parents:
12798
diff
changeset
|
419 if (vo_rootwin) |
21938 | 420 WinID = 0; // use root window |
32 | 421 |
12582 | 422 if (vo_depthonscreen) |
13935 | 423 { |
424 saver_off(mDisplay); | |
12582 | 425 return 1; // already called |
13935 | 426 } |
32 | 427 |
12582 | 428 XSetErrorHandler(x11_errorhandler); |
4812 | 429 |
430 #if 0 | |
12582 | 431 if (!mDisplayName) |
432 if (!(mDisplayName = getenv("DISPLAY"))) | |
433 mDisplayName = strdup(":0.0"); | |
4812 | 434 #else |
12582 | 435 dispName = XDisplayName(mDisplayName); |
4812 | 436 #endif |
437 | |
12582 | 438 mp_msg(MSGT_VO, MSGL_V, "X11 opening display: %s\n", dispName); |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
439 |
12582 | 440 mDisplay = XOpenDisplay(dispName); |
441 if (!mDisplay) | |
442 { | |
443 mp_msg(MSGT_VO, MSGL_ERR, | |
444 "vo: couldn't open the X11 display (%s)!\n", dispName); | |
445 return 0; | |
446 } | |
21938 | 447 mScreen = DefaultScreen(mDisplay); // screen ID |
448 mRootWin = RootWindow(mDisplay, mScreen); // root window ID | |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
449 |
12582 | 450 init_atoms(); |
451 | |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
452 #ifdef CONFIG_XF86VM |
12582 | 453 { |
454 int clock; | |
455 | |
456 XF86VidModeGetModeLine(mDisplay, mScreen, &clock, &modeline); | |
457 if (!vo_screenwidth) | |
458 vo_screenwidth = modeline.hdisplay; | |
459 if (!vo_screenheight) | |
460 vo_screenheight = modeline.vdisplay; | |
461 } | |
4977
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
462 #endif |
12582 | 463 { |
464 if (!vo_screenwidth) | |
465 vo_screenwidth = DisplayWidth(mDisplay, mScreen); | |
466 if (!vo_screenheight) | |
467 vo_screenheight = DisplayHeight(mDisplay, mScreen); | |
468 } | |
469 // get color depth (from root window, or the best visual): | |
470 XGetWindowAttributes(mDisplay, mRootWin, &attribs); | |
471 depth = attribs.depth; | |
1732 | 472 |
12582 | 473 if (depth != 15 && depth != 16 && depth != 24 && depth != 32) |
474 { | |
475 Visual *visual; | |
476 | |
477 depth = vo_find_depth_from_visuals(mDisplay, mScreen, &visual); | |
478 if (depth != -1) | |
479 mXImage = XCreateImage(mDisplay, visual, depth, ZPixmap, | |
480 0, NULL, 1, 1, 8, 1); | |
481 } else | |
482 mXImage = | |
483 XGetImage(mDisplay, mRootWin, 0, 0, 1, 1, AllPlanes, ZPixmap); | |
1732 | 484 |
12582 | 485 vo_depthonscreen = depth; // display depth on screen |
1732 | 486 |
12582 | 487 // get bits/pixel from XImage structure: |
488 if (mXImage == NULL) | |
489 { | |
490 mask = 0; | |
491 } else | |
492 { | |
493 /* | |
494 * for the depth==24 case, the XImage structures might use | |
495 * 24 or 32 bits of data per pixel. The global variable | |
496 * vo_depthonscreen stores the amount of data per pixel in the | |
497 * XImage structure! | |
498 * | |
499 * Maybe we should rename vo_depthonscreen to (or add) vo_bpp? | |
500 */ | |
501 bpp = mXImage->bits_per_pixel; | |
502 if ((vo_depthonscreen + 7) / 8 != (bpp + 7) / 8) | |
503 vo_depthonscreen = bpp; // by A'rpi | |
504 mask = | |
505 mXImage->red_mask | mXImage->green_mask | mXImage->blue_mask; | |
506 mp_msg(MSGT_VO, MSGL_V, | |
507 "vo: X11 color mask: %X (R:%lX G:%lX B:%lX)\n", mask, | |
508 mXImage->red_mask, mXImage->green_mask, mXImage->blue_mask); | |
509 XDestroyImage(mXImage); | |
510 } | |
511 if (((vo_depthonscreen + 7) / 8) == 2) | |
512 { | |
513 if (mask == 0x7FFF) | |
514 vo_depthonscreen = 15; | |
515 else if (mask == 0xFFFF) | |
516 vo_depthonscreen = 16; | |
517 } | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
518 // XCloseDisplay( mDisplay ); |
1447
e82fbd67ae60
better local display connection patch by Adam Tla/lka atlka@pg.gda.pl
arpi
parents:
1415
diff
changeset
|
519 /* slightly improved local display detection AST */ |
12582 | 520 if (strncmp(dispName, "unix:", 5) == 0) |
521 dispName += 4; | |
522 else if (strncmp(dispName, "localhost:", 10) == 0) | |
523 dispName += 9; | |
524 if (*dispName == ':' && atoi(dispName + 1) < 10) | |
525 mLocalDisplay = 1; | |
526 else | |
527 mLocalDisplay = 0; | |
16301 | 528 mp_msg(MSGT_VO, MSGL_V, |
12582 | 529 "vo: X11 running at %dx%d with depth %d and %d bpp (\"%s\" => %s display)\n", |
530 vo_screenwidth, vo_screenheight, depth, vo_depthonscreen, | |
531 dispName, mLocalDisplay ? "local" : "remote"); | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5981
diff
changeset
|
532 |
12582 | 533 vo_wm_type = vo_wm_detect(); |
534 | |
535 vo_fs_type = vo_x11_get_fs_type(vo_wm_type); | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5981
diff
changeset
|
536 |
12582 | 537 fstype_dump(vo_fs_type); |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
538 |
12582 | 539 saver_off(mDisplay); |
540 return 1; | |
32 | 541 } |
542 | |
12582 | 543 void vo_uninit(void) |
6013
7f6e02a16ac4
some bugfix, x[11|mga|v] ( fullscreen with more files )
pontscho
parents:
6009
diff
changeset
|
544 { |
12582 | 545 if (!mDisplay) |
546 { | |
547 mp_msg(MSGT_VO, MSGL_V, | |
25962 | 548 "vo: x11 uninit called but X11 not initialized..\n"); |
12582 | 549 return; |
550 } | |
6077 | 551 // if( !vo_depthonscreen ) return; |
12582 | 552 mp_msg(MSGT_VO, MSGL_V, "vo: uninit ...\n"); |
553 XSetErrorHandler(NULL); | |
554 XCloseDisplay(mDisplay); | |
555 vo_depthonscreen = 0; | |
556 mDisplay = NULL; | |
6013
7f6e02a16ac4
some bugfix, x[11|mga|v] ( fullscreen with more files )
pontscho
parents:
6009
diff
changeset
|
557 } |
4436 | 558 |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
559 #include "osdep/keycodes.h" |
32 | 560 #include "wskeys.h" |
561 | |
9822
1e761763566c
Support for "internet" or "multimedia" keyboards in X11.
albeu
parents:
9695
diff
changeset
|
562 #ifdef XF86XK_AudioPause |
31017 | 563 static const struct mp_keymap keysym_map[] = { |
28137
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
564 {XF86XK_MenuKB, KEY_MENU}, |
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
565 {XF86XK_AudioPlay, KEY_PLAY}, {XF86XK_AudioPause, KEY_PAUSE}, {XF86XK_AudioStop, KEY_STOP}, |
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
566 {XF86XK_AudioPrev, KEY_PREV}, {XF86XK_AudioNext, KEY_NEXT}, |
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
567 {XF86XK_AudioMute, KEY_MUTE}, {XF86XK_AudioLowerVolume, KEY_VOLUME_DOWN}, {XF86XK_AudioRaiseVolume, KEY_VOLUME_UP}, |
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
568 {0, 0} |
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
569 }; |
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
570 |
18950 | 571 static void vo_x11_putkey_ext(int keysym) |
12582 | 572 { |
28137
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
573 int mpkey = lookup_keymap_table(keysym_map, keysym); |
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
574 if (mpkey) |
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
575 mplayer_put_key(mpkey); |
9822
1e761763566c
Support for "internet" or "multimedia" keyboards in X11.
albeu
parents:
9695
diff
changeset
|
576 } |
1e761763566c
Support for "internet" or "multimedia" keyboards in X11.
albeu
parents:
9695
diff
changeset
|
577 #endif |
1e761763566c
Support for "internet" or "multimedia" keyboards in X11.
albeu
parents:
9695
diff
changeset
|
578 |
31017 | 579 static const struct mp_keymap keymap[] = { |
28135 | 580 // special keys |
581 {wsEscape, KEY_ESC}, {wsBackSpace, KEY_BS}, {wsTab, KEY_TAB}, {wsEnter, KEY_ENTER}, | |
582 | |
583 // cursor keys | |
584 {wsLeft, KEY_LEFT}, {wsRight, KEY_RIGHT}, {wsUp, KEY_UP}, {wsDown, KEY_DOWN}, | |
585 | |
586 // navigation block | |
587 {wsInsert, KEY_INSERT}, {wsDelete, KEY_DELETE}, {wsHome, KEY_HOME}, {wsEnd, KEY_END}, | |
588 {wsPageUp, KEY_PAGE_UP}, {wsPageDown, KEY_PAGE_DOWN}, | |
589 | |
590 // F-keys | |
591 {wsF1, KEY_F+1}, {wsF2, KEY_F+2}, {wsF3, KEY_F+3}, {wsF4, KEY_F+4}, | |
592 {wsF5, KEY_F+5}, {wsF6, KEY_F+6}, {wsF7, KEY_F+7}, {wsF8, KEY_F+8}, | |
593 {wsF9, KEY_F+9}, {wsF10, KEY_F+10}, {wsF11, KEY_F+11}, {wsF12, KEY_F+12}, | |
594 | |
595 // numpad independent of numlock | |
596 {wsGrayMinus, '-'}, {wsGrayPlus, '+'}, {wsGrayMul, '*'}, {wsGrayDiv, '/'}, | |
597 {wsGrayEnter, KEY_KPENTER}, | |
598 | |
599 // numpad with numlock | |
600 {wsGray0, KEY_KP0}, {wsGray1, KEY_KP1}, {wsGray2, KEY_KP2}, | |
601 {wsGray3, KEY_KP3}, {wsGray4, KEY_KP4}, {wsGray5, KEY_KP5}, | |
602 {wsGray6, KEY_KP6}, {wsGray7, KEY_KP7}, {wsGray8, KEY_KP8}, | |
603 {wsGray9, KEY_KP9}, {wsGrayDecimal, KEY_KPDEC}, | |
604 | |
605 // numpad without numlock | |
606 {wsGrayInsert, KEY_KPINS}, {wsGrayEnd, KEY_KP1}, {wsGrayDown, KEY_KP2}, | |
607 {wsGrayPgDn, KEY_KP3}, {wsGrayLeft, KEY_KP4}, {wsGray5Dup, KEY_KP5}, | |
608 {wsGrayRight, KEY_KP6}, {wsGrayHome, KEY_KP7}, {wsGrayUp, KEY_KP8}, | |
609 {wsGrayPgUp, KEY_KP9}, {wsGrayDelete, KEY_KPDEL}, | |
610 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
611 {0, 0} |
28135 | 612 }; |
613 | |
12582 | 614 void vo_x11_putkey(int key) |
615 { | |
28133
272238675b78
Simplify handling of X11 key events that are just passed through.
reimar
parents:
28063
diff
changeset
|
616 static const char *passthrough_keys = " -+*/<>`~!@#$%^&()_{}:;\"\',.?\\|=[]"; |
28135 | 617 int mpkey = 0; |
28133
272238675b78
Simplify handling of X11 key events that are just passed through.
reimar
parents:
28063
diff
changeset
|
618 if ((key >= 'a' && key <= 'z') || |
272238675b78
Simplify handling of X11 key events that are just passed through.
reimar
parents:
28063
diff
changeset
|
619 (key >= 'A' && key <= 'Z') || |
272238675b78
Simplify handling of X11 key events that are just passed through.
reimar
parents:
28063
diff
changeset
|
620 (key >= '0' && key <= '9') || |
272238675b78
Simplify handling of X11 key events that are just passed through.
reimar
parents:
28063
diff
changeset
|
621 (key > 0 && key < 256 && strchr(passthrough_keys, key))) |
28135 | 622 mpkey = key; |
28133
272238675b78
Simplify handling of X11 key events that are just passed through.
reimar
parents:
28063
diff
changeset
|
623 |
28137
28bf0d126da2
Add and use a special lookup function to do table-based translation to MPlayer keycodes.
reimar
parents:
28135
diff
changeset
|
624 if (!mpkey) |
28140
49dadf7bd73a
100l, forgot an assignment, broke special keys handling for X11-based vos.
reimar
parents:
28137
diff
changeset
|
625 mpkey = lookup_keymap_table(keymap, key); |
369 | 626 |
28135 | 627 if (mpkey) |
628 mplayer_put_key(mpkey); | |
32 | 629 } |
630 | |
631 | |
632 // ----- Motif header: ------- | |
633 | |
1236 | 634 #define MWM_HINTS_FUNCTIONS (1L << 0) |
635 #define MWM_HINTS_DECORATIONS (1L << 1) | |
636 #define MWM_HINTS_INPUT_MODE (1L << 2) | |
637 #define MWM_HINTS_STATUS (1L << 3) | |
638 | |
639 #define MWM_FUNC_ALL (1L << 0) | |
640 #define MWM_FUNC_RESIZE (1L << 1) | |
641 #define MWM_FUNC_MOVE (1L << 2) | |
642 #define MWM_FUNC_MINIMIZE (1L << 3) | |
643 #define MWM_FUNC_MAXIMIZE (1L << 4) | |
644 #define MWM_FUNC_CLOSE (1L << 5) | |
645 | |
646 #define MWM_DECOR_ALL (1L << 0) | |
647 #define MWM_DECOR_BORDER (1L << 1) | |
648 #define MWM_DECOR_RESIZEH (1L << 2) | |
649 #define MWM_DECOR_TITLE (1L << 3) | |
650 #define MWM_DECOR_MENU (1L << 4) | |
651 #define MWM_DECOR_MINIMIZE (1L << 5) | |
652 #define MWM_DECOR_MAXIMIZE (1L << 6) | |
653 | |
654 #define MWM_INPUT_MODELESS 0 | |
655 #define MWM_INPUT_PRIMARY_APPLICATION_MODAL 1 | |
656 #define MWM_INPUT_SYSTEM_MODAL 2 | |
657 #define MWM_INPUT_FULL_APPLICATION_MODAL 3 | |
658 #define MWM_INPUT_APPLICATION_MODAL MWM_INPUT_PRIMARY_APPLICATION_MODAL | |
659 | |
660 #define MWM_TEAROFF_WINDOW (1L<<0) | |
32 | 661 |
662 typedef struct | |
663 { | |
12582 | 664 long flags; |
665 long functions; | |
666 long decorations; | |
667 long input_mode; | |
668 long state; | |
32 | 669 } MotifWmHints; |
670 | |
12582 | 671 static MotifWmHints vo_MotifWmHints; |
672 static Atom vo_MotifHints = None; | |
32 | 673 |
12582 | 674 void vo_x11_decoration(Display * vo_Display, Window w, int d) |
32 | 675 { |
12582 | 676 static unsigned int olddecor = MWM_DECOR_ALL; |
677 static unsigned int oldfuncs = | |
678 MWM_FUNC_MOVE | MWM_FUNC_CLOSE | MWM_FUNC_MINIMIZE | | |
679 MWM_FUNC_MAXIMIZE | MWM_FUNC_RESIZE; | |
680 Atom mtype; | |
681 int mformat; | |
682 unsigned long mn, mb; | |
683 | |
684 if (!WinID) | |
685 return; | |
5955
caac20b1ca79
fix xmga fs, resize to movie size and mouse auto hide + dga
pontscho
parents:
5919
diff
changeset
|
686 |
12582 | 687 if (vo_fsmode & 8) |
688 { | |
689 XSetTransientForHint(vo_Display, w, | |
690 RootWindow(vo_Display, mScreen)); | |
691 } | |
692 | |
693 vo_MotifHints = XInternAtom(vo_Display, "_MOTIF_WM_HINTS", 0); | |
694 if (vo_MotifHints != None) | |
695 { | |
696 if (!d) | |
697 { | |
698 MotifWmHints *mhints = NULL; | |
1415 | 699 |
12582 | 700 XGetWindowProperty(vo_Display, w, vo_MotifHints, 0, 20, False, |
701 vo_MotifHints, &mtype, &mformat, &mn, | |
702 &mb, (unsigned char **) &mhints); | |
703 if (mhints) | |
704 { | |
705 if (mhints->flags & MWM_HINTS_DECORATIONS) | |
706 olddecor = mhints->decorations; | |
707 if (mhints->flags & MWM_HINTS_FUNCTIONS) | |
708 oldfuncs = mhints->functions; | |
709 XFree(mhints); | |
710 } | |
711 } | |
12096 | 712 |
12582 | 713 memset(&vo_MotifWmHints, 0, sizeof(MotifWmHints)); |
714 vo_MotifWmHints.flags = | |
715 MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS; | |
716 if (d) | |
717 { | |
718 vo_MotifWmHints.functions = oldfuncs; | |
719 d = olddecor; | |
720 } | |
4993 | 721 #if 0 |
12582 | 722 vo_MotifWmHints.decorations = |
723 d | ((vo_fsmode & 2) ? 0 : MWM_DECOR_MENU); | |
4993 | 724 #else |
12582 | 725 vo_MotifWmHints.decorations = |
726 d | ((vo_fsmode & 2) ? MWM_DECOR_MENU : 0); | |
4993 | 727 #endif |
12582 | 728 XChangeProperty(vo_Display, w, vo_MotifHints, vo_MotifHints, 32, |
729 PropModeReplace, | |
730 (unsigned char *) &vo_MotifWmHints, | |
731 (vo_fsmode & 4) ? 4 : 5); | |
732 } | |
32 | 733 } |
734 | |
30083
8375205ecdcc
vo_x11_classhint name argument should be const, since we pass string constants there.
reimar
parents:
29862
diff
changeset
|
735 void vo_x11_classhint(Display * display, Window window, const char *name) |
12582 | 736 { |
737 XClassHint wmClass; | |
738 pid_t pid = getpid(); | |
739 | |
29862
fbb1f57a313e
Added -name, -title and -use-filename-title options and implementation in X11 vos
ptt
parents:
29776
diff
changeset
|
740 wmClass.res_name = vo_winname ? vo_winname : name; |
12582 | 741 wmClass.res_class = "MPlayer"; |
742 XSetClassHint(display, window, &wmClass); | |
743 XChangeProperty(display, window, XA_NET_WM_PID, XA_CARDINAL, 32, | |
744 PropModeReplace, (unsigned char *) &pid, 1); | |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
745 } |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
746 |
12582 | 747 Window vo_window = None; |
31356
c3e536cf595b
Consistently use "None" instead of "NULL" for X resources.
reimar
parents:
31328
diff
changeset
|
748 GC vo_gc = None; |
c3e536cf595b
Consistently use "None" instead of "NULL" for X resources.
reimar
parents:
31328
diff
changeset
|
749 GC f_gc = None; |
4993 | 750 XSizeHints vo_hint; |
4795 | 751 |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
17366
diff
changeset
|
752 void vo_x11_uninit(void) |
4437 | 753 { |
7111 | 754 saver_on(mDisplay); |
12582 | 755 if (vo_window != None) |
756 vo_showcursor(mDisplay, vo_window); | |
4742 | 757 |
31356
c3e536cf595b
Consistently use "None" instead of "NULL" for X resources.
reimar
parents:
31328
diff
changeset
|
758 if (f_gc != None) |
12582 | 759 { |
760 XFreeGC(mDisplay, f_gc); | |
31356
c3e536cf595b
Consistently use "None" instead of "NULL" for X resources.
reimar
parents:
31328
diff
changeset
|
761 f_gc = None; |
12582 | 762 } |
4437 | 763 { |
31356
c3e536cf595b
Consistently use "None" instead of "NULL" for X resources.
reimar
parents:
31328
diff
changeset
|
764 if (vo_gc != None) |
12582 | 765 { |
766 XSetBackground(mDisplay, vo_gc, 0); | |
767 XFreeGC(mDisplay, vo_gc); | |
31356
c3e536cf595b
Consistently use "None" instead of "NULL" for X resources.
reimar
parents:
31328
diff
changeset
|
768 vo_gc = None; |
12582 | 769 } |
770 if (vo_window != None) | |
771 { | |
772 XClearWindow(mDisplay, vo_window); | |
773 if (WinID < 0) | |
774 { | |
775 XEvent xev; | |
776 | |
777 XUnmapWindow(mDisplay, vo_window); | |
30718
4993c3f12cc0
Enable StructureNotifyMask before waiting for a DestroyNotify event.
reimar
parents:
30556
diff
changeset
|
778 XSelectInput(mDisplay, vo_window, StructureNotifyMask); |
12582 | 779 XDestroyWindow(mDisplay, vo_window); |
780 do | |
781 { | |
782 XNextEvent(mDisplay, &xev); | |
783 } | |
784 while (xev.type != DestroyNotify | |
785 || xev.xdestroywindow.event != vo_window); | |
786 } | |
787 vo_window = None; | |
788 } | |
789 vo_fs = 0; | |
790 vo_old_width = vo_old_height = 0; | |
4437 | 791 } |
792 } | |
793 | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
794 static unsigned int mouse_timer; |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
795 static int mouse_waiting_hide; |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
796 |
12582 | 797 int vo_x11_check_events(Display * mydisplay) |
798 { | |
799 int ret = 0; | |
800 XEvent Event; | |
801 char buf[100]; | |
802 KeySym keySym; | |
803 static XComposeStatus stat; | |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
804 |
32 | 805 // unsigned long vo_KeyTable[512]; |
806 | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
807 if ((vo_mouse_autohide) && mouse_waiting_hide && |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
808 (GetTimerMS() - mouse_timer >= 1000)) { |
12582 | 809 vo_hidecursor(mydisplay, vo_window); |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
810 mouse_waiting_hide = 0; |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
811 } |
6095 | 812 |
12582 | 813 while (XPending(mydisplay)) |
814 { | |
815 XNextEvent(mydisplay, &Event); | |
27343 | 816 #ifdef CONFIG_GUI |
12582 | 817 if (use_gui) |
818 { | |
819 guiGetEvent(0, (char *) &Event); | |
820 if (vo_window != Event.xany.window) | |
821 continue; | |
822 } | |
823 #endif | |
6095 | 824 // printf("\rEvent.type=%X \n",Event.type); |
12582 | 825 switch (Event.type) |
826 { | |
827 case Expose: | |
828 ret |= VO_EVENT_EXPOSE; | |
829 break; | |
830 case ConfigureNotify: | |
831 // if (!vo_fs && (Event.xconfigure.width == vo_screenwidth || Event.xconfigure.height == vo_screenheight)) break; | |
832 // if (vo_fs && Event.xconfigure.width != vo_screenwidth && Event.xconfigure.height != vo_screenheight) break; | |
833 if (vo_window == None) | |
834 break; | |
28506
fe72d4f7ac25
Only set VO_EVENT_RESIZE if size actually changed, not if e.g. the window was
reimar
parents:
28446
diff
changeset
|
835 { |
fe72d4f7ac25
Only set VO_EVENT_RESIZE if size actually changed, not if e.g. the window was
reimar
parents:
28446
diff
changeset
|
836 int old_w = vo_dwidth, old_h = vo_dheight; |
29332
183e5a970176
fix missing event on move that breaks xmga window movement
attila
parents:
29263
diff
changeset
|
837 int old_x = vo_dx, old_y = vo_dy; |
28506
fe72d4f7ac25
Only set VO_EVENT_RESIZE if size actually changed, not if e.g. the window was
reimar
parents:
28446
diff
changeset
|
838 vo_x11_update_geometry(); |
29332
183e5a970176
fix missing event on move that breaks xmga window movement
attila
parents:
29263
diff
changeset
|
839 if (vo_dwidth != old_w || vo_dheight != old_h || vo_dx != old_x || vo_dy != old_y) |
28506
fe72d4f7ac25
Only set VO_EVENT_RESIZE if size actually changed, not if e.g. the window was
reimar
parents:
28446
diff
changeset
|
840 ret |= VO_EVENT_RESIZE; |
fe72d4f7ac25
Only set VO_EVENT_RESIZE if size actually changed, not if e.g. the window was
reimar
parents:
28446
diff
changeset
|
841 } |
12582 | 842 break; |
843 case KeyPress: | |
844 { | |
845 int key; | |
846 | |
27343 | 847 #ifdef CONFIG_GUI |
14001 | 848 if ( use_gui ) { break; } |
849 #endif | |
850 | |
12582 | 851 XLookupString(&Event.xkey, buf, sizeof(buf), &keySym, |
852 &stat); | |
853 #ifdef XF86XK_AudioPause | |
854 vo_x11_putkey_ext(keySym); | |
855 #endif | |
856 key = | |
857 ((keySym & 0xff00) != | |
858 0 ? ((keySym & 0x00ff) + 256) : (keySym)); | |
859 vo_x11_putkey(key); | |
860 ret |= VO_EVENT_KEYPRESS; | |
861 } | |
862 break; | |
863 case MotionNotify: | |
31049
b40e41324173
Avoid duplicating mouse-movement command-generation code.
reimar
parents:
31047
diff
changeset
|
864 vo_mouse_movement(Event.xmotion.x, Event.xmotion.y); |
19850
4919b3ce8d5e
report to mplayer with a slave command the coordinates of the pointer reported by x11; rescale coordinates to [0,1]x[0,1] range - patch by Jonas Jermann and me
nicodvb
parents:
18950
diff
changeset
|
865 |
12582 | 866 if (vo_mouse_autohide) |
867 { | |
868 vo_showcursor(mydisplay, vo_window); | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
869 mouse_waiting_hide = 1; |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
870 mouse_timer = GetTimerMS(); |
12582 | 871 } |
872 break; | |
873 case ButtonPress: | |
874 if (vo_mouse_autohide) | |
875 { | |
876 vo_showcursor(mydisplay, vo_window); | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
877 mouse_waiting_hide = 1; |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
878 mouse_timer = GetTimerMS(); |
12582 | 879 } |
27343 | 880 #ifdef CONFIG_GUI |
21938 | 881 // Ignore mouse button 1-3 under GUI. |
12582 | 882 if (use_gui && (Event.xbutton.button >= 1) |
883 && (Event.xbutton.button <= 3)) | |
884 break; | |
885 #endif | |
886 mplayer_put_key((MOUSE_BTN0 + Event.xbutton.button - | |
887 1) | MP_KEY_DOWN); | |
888 break; | |
889 case ButtonRelease: | |
890 if (vo_mouse_autohide) | |
891 { | |
892 vo_showcursor(mydisplay, vo_window); | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
893 mouse_waiting_hide = 1; |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
894 mouse_timer = GetTimerMS(); |
12582 | 895 } |
27343 | 896 #ifdef CONFIG_GUI |
21938 | 897 // Ignore mouse button 1-3 under GUI. |
12582 | 898 if (use_gui && (Event.xbutton.button >= 1) |
899 && (Event.xbutton.button <= 3)) | |
900 break; | |
901 #endif | |
902 mplayer_put_key(MOUSE_BTN0 + Event.xbutton.button - 1); | |
903 break; | |
904 case PropertyNotify: | |
905 { | |
906 char *name = | |
907 XGetAtomName(mydisplay, Event.xproperty.atom); | |
908 | |
909 if (!name) | |
910 break; | |
911 | |
6046 | 912 // fprintf(stderr,"[ws] PropertyNotify ( 0x%x ) %s ( 0x%x )\n",vo_window,name,Event.xproperty.atom ); |
12582 | 913 |
914 XFree(name); | |
915 } | |
916 break; | |
917 case MapNotify: | |
918 vo_hint.win_gravity = old_gravity; | |
919 XSetWMNormalHints(mDisplay, vo_window, &vo_hint); | |
920 vo_fs_flip = 0; | |
921 break; | |
31122 | 922 case DestroyNotify: |
923 mp_msg(MSGT_VO, MSGL_WARN, "Our window was destroyed, exiting\n"); | |
924 mplayer_put_key(KEY_CLOSE_WIN); | |
925 break; | |
18149
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
926 case ClientMessage: |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
927 if (Event.xclient.message_type == XAWM_PROTOCOLS && |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
928 Event.xclient.data.l[0] == XAWM_DELETE_WINDOW) |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
929 mplayer_put_key(KEY_CLOSE_WIN); |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
930 break; |
12582 | 931 } |
932 } | |
933 return ret; | |
32 | 934 } |
935 | |
13843 | 936 /** |
937 * \brief sets the size and position of the non-fullscreen window. | |
938 */ | |
939 void vo_x11_nofs_sizepos(int x, int y, int width, int height) | |
940 { | |
24312
716b7751e7ad
Make sure aspect hint is adjusted on aspect change
reimar
parents:
24311
diff
changeset
|
941 vo_x11_sizehint(x, y, width, height, 0); |
13843 | 942 if (vo_fs) { |
943 vo_old_x = x; | |
944 vo_old_y = y; | |
945 vo_old_width = width; | |
946 vo_old_height = height; | |
947 } | |
948 else | |
13871 | 949 { |
950 vo_dwidth = width; | |
951 vo_dheight = height; | |
13843 | 952 XMoveResizeWindow(mDisplay, vo_window, x, y, width, height); |
13871 | 953 } |
13843 | 954 } |
955 | |
12582 | 956 void vo_x11_sizehint(int x, int y, int width, int height, int max) |
4993 | 957 { |
24311
0ff0253c8e00
Cosmetics: set vo_hint.flags at more consistent places (directly before
reimar
parents:
23875
diff
changeset
|
958 vo_hint.flags = 0; |
12582 | 959 if (vo_keepaspect) |
960 { | |
961 vo_hint.flags |= PAspect; | |
962 vo_hint.min_aspect.x = width; | |
963 vo_hint.min_aspect.y = height; | |
964 vo_hint.max_aspect.x = width; | |
965 vo_hint.max_aspect.y = height; | |
966 } | |
8692
604f0cde816c
X11 window aspect patch by Arnaud Boulan <boulan@iie.cnam.fr>
attila
parents:
8676
diff
changeset
|
967 |
24311
0ff0253c8e00
Cosmetics: set vo_hint.flags at more consistent places (directly before
reimar
parents:
23875
diff
changeset
|
968 vo_hint.flags |= PPosition | PSize; |
12582 | 969 vo_hint.x = x; |
970 vo_hint.y = y; | |
971 vo_hint.width = width; | |
972 vo_hint.height = height; | |
973 if (max) | |
974 { | |
24311
0ff0253c8e00
Cosmetics: set vo_hint.flags at more consistent places (directly before
reimar
parents:
23875
diff
changeset
|
975 vo_hint.flags |= PMaxSize; |
12582 | 976 vo_hint.max_width = width; |
977 vo_hint.max_height = height; | |
978 } else | |
979 { | |
980 vo_hint.max_width = 0; | |
981 vo_hint.max_height = 0; | |
982 } | |
11995 | 983 |
21938 | 984 // Set minimum height/width to 4 to avoid off-by-one errors |
985 // and because mga_vid requires a minimal size of 4 pixels. | |
24311
0ff0253c8e00
Cosmetics: set vo_hint.flags at more consistent places (directly before
reimar
parents:
23875
diff
changeset
|
986 vo_hint.flags |= PMinSize; |
12582 | 987 vo_hint.min_width = vo_hint.min_height = 4; |
11995 | 988 |
28063
a318969a4f45
Set the base size window manager hint, otherwise some subtract the minimum
reimar
parents:
27927
diff
changeset
|
989 // Set the base size. A window manager might display the window |
a318969a4f45
Set the base size window manager hint, otherwise some subtract the minimum
reimar
parents:
27927
diff
changeset
|
990 // size to the user relative to this. |
a318969a4f45
Set the base size window manager hint, otherwise some subtract the minimum
reimar
parents:
27927
diff
changeset
|
991 // Setting these to width/height might be nice, but e.g. fluxbox can't handle it. |
a318969a4f45
Set the base size window manager hint, otherwise some subtract the minimum
reimar
parents:
27927
diff
changeset
|
992 vo_hint.flags |= PBaseSize; |
a318969a4f45
Set the base size window manager hint, otherwise some subtract the minimum
reimar
parents:
27927
diff
changeset
|
993 vo_hint.base_width = 0 /*width*/; |
a318969a4f45
Set the base size window manager hint, otherwise some subtract the minimum
reimar
parents:
27927
diff
changeset
|
994 vo_hint.base_height = 0 /*height*/; |
a318969a4f45
Set the base size window manager hint, otherwise some subtract the minimum
reimar
parents:
27927
diff
changeset
|
995 |
24311
0ff0253c8e00
Cosmetics: set vo_hint.flags at more consistent places (directly before
reimar
parents:
23875
diff
changeset
|
996 vo_hint.flags |= PWinGravity; |
12582 | 997 vo_hint.win_gravity = StaticGravity; |
998 XSetWMNormalHints(mDisplay, vo_window, &vo_hint); | |
4993 | 999 } |
1000 | |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
1001 static int vo_x11_get_gnome_layer(Display * mDisplay, Window win) |
8866 | 1002 { |
12582 | 1003 Atom type; |
1004 int format; | |
1005 unsigned long nitems; | |
1006 unsigned long bytesafter; | |
1007 unsigned short *args = NULL; | |
8866 | 1008 |
12582 | 1009 if (XGetWindowProperty(mDisplay, win, XA_WIN_LAYER, 0, 16384, |
1010 False, AnyPropertyType, &type, &format, &nitems, | |
1011 &bytesafter, | |
1012 (unsigned char **) &args) == Success | |
1013 && nitems > 0 && args) | |
1014 { | |
1015 mp_msg(MSGT_VO, MSGL_V, "[x11] original window layer is %d.\n", | |
1016 *args); | |
1017 return *args; | |
1018 } | |
1019 return WIN_LAYER_NORMAL; | |
8866 | 1020 } |
1021 | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1022 // |
12582 | 1023 Window vo_x11_create_smooth_window(Display * mDisplay, Window mRoot, |
1024 Visual * vis, int x, int y, | |
1025 unsigned int width, unsigned int height, | |
1026 int depth, Colormap col_map) | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1027 { |
27815
f92271dc5f17
Remove X11 backing store: this is now a useless flag.
ben
parents:
27713
diff
changeset
|
1028 unsigned long xswamask = CWBorderPixel; |
12582 | 1029 XSetWindowAttributes xswa; |
1030 Window ret_win; | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1031 |
12582 | 1032 if (col_map != CopyFromParent) |
1033 { | |
1034 xswa.colormap = col_map; | |
1035 xswamask |= CWColormap; | |
1036 } | |
1037 xswa.background_pixel = 0; | |
1038 xswa.border_pixel = 0; | |
27815
f92271dc5f17
Remove X11 backing store: this is now a useless flag.
ben
parents:
27713
diff
changeset
|
1039 xswa.backing_store = NotUseful; |
12582 | 1040 xswa.bit_gravity = StaticGravity; |
1041 | |
1042 ret_win = | |
1043 XCreateWindow(mDisplay, mRootWin, x, y, width, height, 0, depth, | |
1044 CopyFromParent, vis, xswamask, &xswa); | |
18149
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
1045 XSetWMProtocols(mDisplay, ret_win, &XAWM_DELETE_WINDOW, 1); |
31356
c3e536cf595b
Consistently use "None" instead of "NULL" for X resources.
reimar
parents:
31328
diff
changeset
|
1046 if (f_gc == None) |
12582 | 1047 f_gc = XCreateGC(mDisplay, ret_win, 0, 0); |
1048 XSetForeground(mDisplay, f_gc, 0); | |
1049 | |
1050 return ret_win; | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1051 } |
12582 | 1052 |
23655
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1053 /** |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1054 * \brief create and setup a window suitable for display |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1055 * \param vis Visual to use for creating the window |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1056 * \param x x position of window |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1057 * \param y y position of window |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1058 * \param width width of window |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1059 * \param height height of window |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1060 * \param flags flags for window creation. |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1061 * Only VOFLAG_FULLSCREEN is supported so far. |
23823
513293585949
document "default" behaviour if CopyFromParent is passed as colormap
attila
parents:
23660
diff
changeset
|
1062 * \param col_map Colourmap for window or CopyFromParent if a specific colormap isn't needed |
23655
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1063 * \param classname name to use for the classhint |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1064 * \param title title for the window |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1065 * |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1066 * This also does the grunt-work like setting Window Manager hints etc. |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1067 * If vo_window is already set it just moves and resizes it. |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1068 */ |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1069 void vo_x11_create_vo_window(XVisualInfo *vis, int x, int y, |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1070 unsigned int width, unsigned int height, int flags, |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1071 Colormap col_map, |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1072 const char *classname, const char *title) |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1073 { |
27927
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1074 XGCValues xgcv; |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1075 if (WinID >= 0) { |
29514
23a59bb3baf4
First attempts at supporting -fs with -wid, -vo gl on X11 only so far
reimar
parents:
29332
diff
changeset
|
1076 vo_fs = flags & VOFLAG_FULLSCREEN; |
27927
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1077 vo_window = WinID ? (Window)WinID : mRootWin; |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1078 if (col_map != CopyFromParent) { |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1079 unsigned long xswamask = CWColormap; |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1080 XSetWindowAttributes xswa; |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1081 xswa.colormap = col_map; |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1082 XChangeWindowAttributes(mDisplay, vo_window, xswamask, &xswa); |
29572
4890363e713a
Do not do a unmap/map cycle on Windows given with -wid, with some window
reimar
parents:
29514
diff
changeset
|
1083 XInstallColormap(mDisplay, col_map); |
27927
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1084 } |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1085 if (WinID) vo_x11_update_geometry(); |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1086 vo_x11_selectinput_witherr(mDisplay, vo_window, |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1087 StructureNotifyMask | KeyPressMask | PointerMotionMask | |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1088 ButtonPressMask | ButtonReleaseMask | ExposureMask); |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1089 goto final; |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1090 } |
23655
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1091 if (vo_window == None) { |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1092 vo_fs = 0; |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1093 vo_dwidth = width; |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1094 vo_dheight = height; |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1095 vo_window = vo_x11_create_smooth_window(mDisplay, mRootWin, vis->visual, |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1096 x, y, width, height, vis->depth, col_map); |
30465
3422423f2e20
Create the OpenGL probe window as a hidden Window on X11.
reimar
parents:
30455
diff
changeset
|
1097 window_state = VOFLAG_HIDDEN; |
3422423f2e20
Create the OpenGL probe window as a hidden Window on X11.
reimar
parents:
30455
diff
changeset
|
1098 } |
3422423f2e20
Create the OpenGL probe window as a hidden Window on X11.
reimar
parents:
30455
diff
changeset
|
1099 if (flags & VOFLAG_HIDDEN) |
3422423f2e20
Create the OpenGL probe window as a hidden Window on X11.
reimar
parents:
30455
diff
changeset
|
1100 goto final; |
3422423f2e20
Create the OpenGL probe window as a hidden Window on X11.
reimar
parents:
30455
diff
changeset
|
1101 if (window_state & VOFLAG_HIDDEN) { |
3422423f2e20
Create the OpenGL probe window as a hidden Window on X11.
reimar
parents:
30455
diff
changeset
|
1102 XSizeHints hint; |
3422423f2e20
Create the OpenGL probe window as a hidden Window on X11.
reimar
parents:
30455
diff
changeset
|
1103 XEvent xev; |
30472
ddce1a6f3c59
Fix hang with -fixed-vo due to VOFLAG_HIDDEN never being removed from window_state.
reimar
parents:
30465
diff
changeset
|
1104 window_state &= ~VOFLAG_HIDDEN; |
23655
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1105 vo_x11_classhint(mDisplay, vo_window, classname); |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1106 XStoreName(mDisplay, vo_window, title); |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1107 vo_hidecursor(mDisplay, vo_window); |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1108 XSelectInput(mDisplay, vo_window, StructureNotifyMask); |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1109 hint.x = x; hint.y = y; |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1110 hint.width = width; hint.height = height; |
31223
4031008a248c
Change code to let Window Manager chose window location by default.
reimar
parents:
31122
diff
changeset
|
1111 hint.flags = PSize; |
4031008a248c
Change code to let Window Manager chose window location by default.
reimar
parents:
31122
diff
changeset
|
1112 if (geometry_xy_changed) |
4031008a248c
Change code to let Window Manager chose window location by default.
reimar
parents:
31122
diff
changeset
|
1113 hint.flags |= PPosition; |
23655
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1114 XSetStandardProperties(mDisplay, vo_window, title, title, None, NULL, 0, &hint); |
27304 | 1115 if (!vo_border) vo_x11_decoration(mDisplay, vo_window, 0); |
23655
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1116 // map window |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1117 XMapWindow(mDisplay, vo_window); |
30455
cfebff6a5ef9
Use vo_x11_clearwindow instead of XClearWindow, both for consistency and also
reimar
parents:
30451
diff
changeset
|
1118 vo_x11_clearwindow(mDisplay, vo_window); |
23655
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1119 // wait for map |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1120 do { |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1121 XNextEvent(mDisplay, &xev); |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1122 } while (xev.type != MapNotify || xev.xmap.event != vo_window); |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1123 XSelectInput(mDisplay, vo_window, NoEventMask); |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1124 XSync(mDisplay, False); |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1125 vo_x11_selectinput_witherr(mDisplay, vo_window, |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1126 StructureNotifyMask | KeyPressMask | PointerMotionMask | |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1127 ButtonPressMask | ButtonReleaseMask | ExposureMask); |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1128 } |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1129 if (vo_ontop) vo_x11_setlayer(mDisplay, vo_window, vo_ontop); |
31223
4031008a248c
Change code to let Window Manager chose window location by default.
reimar
parents:
31122
diff
changeset
|
1130 if (!geometry_xy_changed) |
4031008a248c
Change code to let Window Manager chose window location by default.
reimar
parents:
31122
diff
changeset
|
1131 vo_x11_update_geometry(); |
23655
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1132 vo_x11_nofs_sizepos(vo_dx, vo_dy, width, height); |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1133 if (!!vo_fs != !!(flags & VOFLAG_FULLSCREEN)) |
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1134 vo_x11_fullscreen(); |
28771
bd24ac0d9fd8
Make sure vo_x11_create_vo_window sets vo_dwidth and vo_dheight right
reimar
parents:
28512
diff
changeset
|
1135 else if (vo_fs) { |
bd24ac0d9fd8
Make sure vo_x11_create_vo_window sets vo_dwidth and vo_dheight right
reimar
parents:
28512
diff
changeset
|
1136 // if we are already in fullscreen do not switch back and forth, just |
bd24ac0d9fd8
Make sure vo_x11_create_vo_window sets vo_dwidth and vo_dheight right
reimar
parents:
28512
diff
changeset
|
1137 // set the size values right. |
bd24ac0d9fd8
Make sure vo_x11_create_vo_window sets vo_dwidth and vo_dheight right
reimar
parents:
28512
diff
changeset
|
1138 vo_dwidth = vo_screenwidth; |
bd24ac0d9fd8
Make sure vo_x11_create_vo_window sets vo_dwidth and vo_dheight right
reimar
parents:
28512
diff
changeset
|
1139 vo_dheight = vo_screenheight; |
bd24ac0d9fd8
Make sure vo_x11_create_vo_window sets vo_dwidth and vo_dheight right
reimar
parents:
28512
diff
changeset
|
1140 } |
27927
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1141 final: |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1142 if (vo_gc != None) |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1143 XFreeGC(mDisplay, vo_gc); |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1144 vo_gc = XCreateGC(mDisplay, vo_window, GCForeground, &xgcv); |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1145 XSync(mDisplay, False); |
6f199f065e15
Factor common code like -wid handling, vo_gc creation etc. out into
reimar
parents:
27893
diff
changeset
|
1146 vo_mouse_autohide = 1; |
23655
00aa61cde84a
Make X11 window creation and (with -fixed-vo) management simpler and more
reimar
parents:
23615
diff
changeset
|
1147 } |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1148 |
12582 | 1149 void vo_x11_clearwindow_part(Display * mDisplay, Window vo_window, |
1150 int img_width, int img_height, int use_fs) | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1151 { |
12582 | 1152 int u_dheight, u_dwidth, left_ov, left_ov2; |
10765
c8fb7e2690a3
10000l. Never ever use such foolish GCC 3.x extensionscvs diff -u x11_common.c x11_common.h |more
alex
parents:
10757
diff
changeset
|
1153 |
31356
c3e536cf595b
Consistently use "None" instead of "NULL" for X resources.
reimar
parents:
31328
diff
changeset
|
1154 if (f_gc == None) |
12582 | 1155 return; |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1156 |
12582 | 1157 u_dheight = use_fs ? vo_screenheight : vo_dheight; |
1158 u_dwidth = use_fs ? vo_screenwidth : vo_dwidth; | |
1159 if ((u_dheight <= img_height) && (u_dwidth <= img_width)) | |
1160 return; | |
10765
c8fb7e2690a3
10000l. Never ever use such foolish GCC 3.x extensionscvs diff -u x11_common.c x11_common.h |more
alex
parents:
10757
diff
changeset
|
1161 |
12582 | 1162 left_ov = (u_dheight - img_height) / 2; |
1163 left_ov2 = (u_dwidth - img_width) / 2; | |
1164 | |
1165 XFillRectangle(mDisplay, vo_window, f_gc, 0, 0, u_dwidth, left_ov); | |
1166 XFillRectangle(mDisplay, vo_window, f_gc, 0, u_dheight - left_ov - 1, | |
1167 u_dwidth, left_ov + 1); | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1168 |
12582 | 1169 if (u_dwidth > img_width) |
1170 { | |
1171 XFillRectangle(mDisplay, vo_window, f_gc, 0, left_ov, left_ov2, | |
1172 img_height); | |
1173 XFillRectangle(mDisplay, vo_window, f_gc, u_dwidth - left_ov2 - 1, | |
23660
3ab096c77b9e
Fix vo_x11_clearwindow_part: x position is one less to avoid not clearing
reimar
parents:
23655
diff
changeset
|
1174 left_ov, left_ov2 + 1, img_height); |
12582 | 1175 } |
1176 | |
1177 XFlush(mDisplay); | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1178 } |
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1179 |
12582 | 1180 void vo_x11_clearwindow(Display * mDisplay, Window vo_window) |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1181 { |
31356
c3e536cf595b
Consistently use "None" instead of "NULL" for X resources.
reimar
parents:
31328
diff
changeset
|
1182 if (f_gc == None) |
12582 | 1183 return; |
1184 XFillRectangle(mDisplay, vo_window, f_gc, 0, 0, vo_screenwidth, | |
1185 vo_screenheight); | |
1186 // | |
1187 XFlush(mDisplay); | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1188 } |
12582 | 1189 |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1190 |
12582 | 1191 void vo_x11_setlayer(Display * mDisplay, Window vo_window, int layer) |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5981
diff
changeset
|
1192 { |
12582 | 1193 if (WinID >= 0) |
1194 return; | |
8864 | 1195 |
12582 | 1196 if (vo_fs_type & vo_wm_LAYER) |
1197 { | |
1198 XClientMessageEvent xev; | |
1199 | |
1200 if (!orig_layer) | |
1201 orig_layer = vo_x11_get_gnome_layer(mDisplay, vo_window); | |
8866 | 1202 |
12582 | 1203 memset(&xev, 0, sizeof(xev)); |
1204 xev.type = ClientMessage; | |
1205 xev.display = mDisplay; | |
1206 xev.window = vo_window; | |
1207 xev.message_type = XA_WIN_LAYER; | |
1208 xev.format = 32; | |
1209 xev.data.l[0] = layer ? fs_layer : orig_layer; // if not fullscreen, stay on default layer | |
1210 xev.data.l[1] = CurrentTime; | |
1211 mp_msg(MSGT_VO, MSGL_V, | |
17366 | 1212 "[x11] Layered style stay on top (layer %ld).\n", |
12582 | 1213 xev.data.l[0]); |
1214 XSendEvent(mDisplay, mRootWin, False, SubstructureNotifyMask, | |
1215 (XEvent *) & xev); | |
1216 } else if (vo_fs_type & vo_wm_NETWM) | |
1217 { | |
1218 XClientMessageEvent xev; | |
1219 char *state; | |
8645 | 1220 |
12582 | 1221 memset(&xev, 0, sizeof(xev)); |
1222 xev.type = ClientMessage; | |
1223 xev.message_type = XA_NET_WM_STATE; | |
1224 xev.display = mDisplay; | |
1225 xev.window = vo_window; | |
1226 xev.format = 32; | |
1227 xev.data.l[0] = layer; | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1228 |
12582 | 1229 if (vo_fs_type & vo_wm_STAYS_ON_TOP) |
1230 xev.data.l[1] = XA_NET_WM_STATE_STAYS_ON_TOP; | |
1231 else if (vo_fs_type & vo_wm_ABOVE) | |
1232 xev.data.l[1] = XA_NET_WM_STATE_ABOVE; | |
1233 else if (vo_fs_type & vo_wm_FULLSCREEN) | |
1234 xev.data.l[1] = XA_NET_WM_STATE_FULLSCREEN; | |
1235 else if (vo_fs_type & vo_wm_BELOW) | |
21938 | 1236 // This is not fallback. We can safely assume that the situation |
1237 // where only NETWM_STATE_BELOW is supported doesn't exist. | |
12582 | 1238 xev.data.l[1] = XA_NET_WM_STATE_BELOW; |
1239 | |
1240 XSendEvent(mDisplay, mRootWin, False, SubstructureRedirectMask, | |
1241 (XEvent *) & xev); | |
1242 state = XGetAtomName(mDisplay, xev.data.l[1]); | |
1243 mp_msg(MSGT_VO, MSGL_V, | |
1244 "[x11] NET style stay on top (layer %d). Using state %s.\n", | |
1245 layer, state); | |
1246 XFree(state); | |
1247 } | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5981
diff
changeset
|
1248 } |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5981
diff
changeset
|
1249 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
1250 static int vo_x11_get_fs_type(int supported) |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1251 { |
12582 | 1252 int i; |
1253 int type = supported; | |
1254 | |
1255 if (vo_fstype_list) | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1256 { |
12582 | 1257 for (i = 0; vo_fstype_list[i]; i++) |
1258 { | |
1259 int neg = 0; | |
1260 char *arg = vo_fstype_list[i]; | |
1261 | |
1262 if (vo_fstype_list[i][0] == '-') | |
1263 { | |
1264 neg = 1; | |
1265 arg = vo_fstype_list[i] + 1; | |
1266 } | |
1267 | |
1268 if (!strncmp(arg, "layer", 5)) | |
1269 { | |
1270 if (!neg && (arg[5] == '=')) | |
1271 { | |
1272 char *endptr = NULL; | |
1273 int layer = strtol(vo_fstype_list[i] + 6, &endptr, 10); | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1274 |
12582 | 1275 if (endptr && *endptr == '\0' && layer >= 0 |
1276 && layer <= 15) | |
1277 fs_layer = layer; | |
1278 } | |
1279 if (neg) | |
1280 type &= ~vo_wm_LAYER; | |
1281 else | |
1282 type |= vo_wm_LAYER; | |
1283 } else if (!strcmp(arg, "above")) | |
1284 { | |
1285 if (neg) | |
1286 type &= ~vo_wm_ABOVE; | |
1287 else | |
1288 type |= vo_wm_ABOVE; | |
1289 } else if (!strcmp(arg, "fullscreen")) | |
1290 { | |
1291 if (neg) | |
1292 type &= ~vo_wm_FULLSCREEN; | |
1293 else | |
1294 type |= vo_wm_FULLSCREEN; | |
1295 } else if (!strcmp(arg, "stays_on_top")) | |
1296 { | |
1297 if (neg) | |
1298 type &= ~vo_wm_STAYS_ON_TOP; | |
1299 else | |
1300 type |= vo_wm_STAYS_ON_TOP; | |
1301 } else if (!strcmp(arg, "below")) | |
1302 { | |
1303 if (neg) | |
1304 type &= ~vo_wm_BELOW; | |
1305 else | |
1306 type |= vo_wm_BELOW; | |
1307 } else if (!strcmp(arg, "netwm")) | |
1308 { | |
1309 if (neg) | |
1310 type &= ~vo_wm_NETWM; | |
1311 else | |
1312 type |= vo_wm_NETWM; | |
1313 } else if (!strcmp(arg, "none")) | |
29763
752432ff3360
Slightly change behavior of "none" if fstype specification.
corey
parents:
29753
diff
changeset
|
1314 type = 0; // clear; keep parsing |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1315 } |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1316 } |
5919 | 1317 |
12582 | 1318 return type; |
4981 | 1319 } |
1320 | |
27885
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1321 /** |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1322 * \brief update vo_dx, vo_dy, vo_dwidth and vo_dheight with current values of vo_window |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1323 * \return returns current color depth of vo_window |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1324 */ |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1325 int vo_x11_update_geometry(void) { |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1326 unsigned depth, w, h; |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1327 int dummy_int; |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1328 Window dummy_win; |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1329 XGetGeometry(mDisplay, vo_window, &dummy_win, &dummy_int, &dummy_int, |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1330 &w, &h, &dummy_int, &depth); |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1331 if (w <= INT_MAX && h <= INT_MAX) { vo_dwidth = w; vo_dheight = h; } |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1332 XTranslateCoordinates(mDisplay, vo_window, mRootWin, 0, 0, &vo_dx, &vo_dy, |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1333 &dummy_win); |
29862
fbb1f57a313e
Added -name, -title and -use-filename-title options and implementation in X11 vos
ptt
parents:
29776
diff
changeset
|
1334 if (vo_wintitle) |
fbb1f57a313e
Added -name, -title and -use-filename-title options and implementation in X11 vos
ptt
parents:
29776
diff
changeset
|
1335 XStoreName(mDisplay, vo_window, vo_wintitle); |
fbb1f57a313e
Added -name, -title and -use-filename-title options and implementation in X11 vos
ptt
parents:
29776
diff
changeset
|
1336 |
27885
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1337 return depth <= INT_MAX ? depth : 0; |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1338 } |
9829cfa41d6d
Replace some of the different inconsistent XGetGeometry uses by a
reimar
parents:
27815
diff
changeset
|
1339 |
12582 | 1340 void vo_x11_fullscreen(void) |
11542 | 1341 { |
12582 | 1342 int x, y, w, h; |
29753
75f54a9e4160
Move some variable initializations to the beginning of vo_x11_fullscreen().
diego
parents:
29572
diff
changeset
|
1343 x = vo_old_x; |
75f54a9e4160
Move some variable initializations to the beginning of vo_x11_fullscreen().
diego
parents:
29572
diff
changeset
|
1344 y = vo_old_y; |
75f54a9e4160
Move some variable initializations to the beginning of vo_x11_fullscreen().
diego
parents:
29572
diff
changeset
|
1345 w = vo_old_width; |
75f54a9e4160
Move some variable initializations to the beginning of vo_x11_fullscreen().
diego
parents:
29572
diff
changeset
|
1346 h = vo_old_height; |
12582 | 1347 |
29514
23a59bb3baf4
First attempts at supporting -fs with -wid, -vo gl on X11 only so far
reimar
parents:
29332
diff
changeset
|
1348 if (WinID >= 0) { |
23a59bb3baf4
First attempts at supporting -fs with -wid, -vo gl on X11 only so far
reimar
parents:
29332
diff
changeset
|
1349 vo_fs = !vo_fs; |
23a59bb3baf4
First attempts at supporting -fs with -wid, -vo gl on X11 only so far
reimar
parents:
29332
diff
changeset
|
1350 return; |
23a59bb3baf4
First attempts at supporting -fs with -wid, -vo gl on X11 only so far
reimar
parents:
29332
diff
changeset
|
1351 } |
23a59bb3baf4
First attempts at supporting -fs with -wid, -vo gl on X11 only so far
reimar
parents:
29332
diff
changeset
|
1352 if (vo_fs_flip) |
12582 | 1353 return; |
1354 | |
1355 if (vo_fs) | |
1356 { | |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1357 vo_x11_ewmh_fullscreen(_NET_WM_STATE_REMOVE); // removes fullscreen state if wm supports EWMH |
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1358 vo_fs = VO_FALSE; |
12582 | 1359 } else |
1360 { | |
1361 // win->fs | |
1362 vo_x11_ewmh_fullscreen(_NET_WM_STATE_ADD); // sends fullscreen state to be added if wm supports EWMH | |
1363 | |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1364 vo_fs = VO_TRUE; |
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1365 if ( ! (vo_fs_type & vo_wm_FULLSCREEN) ) // not needed with EWMH fs |
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1366 { |
12798
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1367 vo_old_x = vo_dx; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1368 vo_old_y = vo_dy; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1369 vo_old_width = vo_dwidth; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1370 vo_old_height = vo_dheight; |
23875
df05ff41590e
make sure update_xinerama_info is always called even when using the
reimar
parents:
23823
diff
changeset
|
1371 } |
18116 | 1372 update_xinerama_info(); |
1373 x = xinerama_x; | |
1374 y = xinerama_y; | |
12798
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1375 w = vo_screenwidth; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1376 h = vo_screenheight; |
12582 | 1377 } |
1378 { | |
1379 long dummy; | |
1380 | |
1381 XGetWMNormalHints(mDisplay, vo_window, &vo_hint, &dummy); | |
1382 if (!(vo_hint.flags & PWinGravity)) | |
1383 old_gravity = NorthWestGravity; | |
1384 else | |
1385 old_gravity = vo_hint.win_gravity; | |
1386 } | |
1387 if (vo_wm_type == 0 && !(vo_fsmode & 16)) | |
1388 { | |
1389 XUnmapWindow(mDisplay, vo_window); // required for MWM | |
1390 XWithdrawWindow(mDisplay, vo_window, mScreen); | |
1391 vo_fs_flip = 1; | |
1392 } | |
1393 | |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1394 if ( ! (vo_fs_type & vo_wm_FULLSCREEN) ) // not needed with EWMH fs |
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1395 { |
27303
690ba711bda8
Make vo_x11_fullscreen not break vo_border (proper support still needs vo changes)
reimar
parents:
27029
diff
changeset
|
1396 vo_x11_decoration(mDisplay, vo_window, vo_border && !vo_fs); |
12798
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1397 vo_x11_sizehint(x, y, w, h, 0); |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1398 vo_x11_setlayer(mDisplay, vo_window, vo_fs); |
12582 | 1399 |
1400 | |
12798
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1401 XMoveResizeWindow(mDisplay, vo_window, x, y, w, h); |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1402 } |
21938 | 1403 /* some WMs lose ontop after fullscreen */ |
14244
9b03ad0254ae
Fix ontop for some WMs that lose ontop state after fullscreen event.
al
parents:
14207
diff
changeset
|
1404 if ((!(vo_fs)) & vo_ontop) |
9b03ad0254ae
Fix ontop for some WMs that lose ontop state after fullscreen event.
al
parents:
14207
diff
changeset
|
1405 vo_x11_setlayer(mDisplay, vo_window, vo_ontop); |
9b03ad0254ae
Fix ontop for some WMs that lose ontop state after fullscreen event.
al
parents:
14207
diff
changeset
|
1406 |
12582 | 1407 XMapRaised(mDisplay, vo_window); |
18715
30d7ddf08889
Fix window position when changing videos while in fullscreen and for
reimar
parents:
18508
diff
changeset
|
1408 if ( ! (vo_fs_type & vo_wm_FULLSCREEN) ) // some WMs change window pos on map |
30d7ddf08889
Fix window position when changing videos while in fullscreen and for
reimar
parents:
18508
diff
changeset
|
1409 XMoveResizeWindow(mDisplay, vo_window, x, y, w, h); |
12582 | 1410 XRaiseWindow(mDisplay, vo_window); |
1411 XFlush(mDisplay); | |
1412 } | |
1413 | |
1414 void vo_x11_ontop(void) | |
1415 { | |
1416 vo_ontop = (!(vo_ontop)); | |
1417 | |
1418 vo_x11_setlayer(mDisplay, vo_window, vo_ontop); | |
11542 | 1419 } |
1420 | |
27306
7a650839fc10
Enable runtime border/window decorations-toggling for Linux gl and gl2 vos.
reimar
parents:
27304
diff
changeset
|
1421 void vo_x11_border(void) |
7a650839fc10
Enable runtime border/window decorations-toggling for Linux gl and gl2 vos.
reimar
parents:
27304
diff
changeset
|
1422 { |
7a650839fc10
Enable runtime border/window decorations-toggling for Linux gl and gl2 vos.
reimar
parents:
27304
diff
changeset
|
1423 vo_border = !vo_border; |
7a650839fc10
Enable runtime border/window decorations-toggling for Linux gl and gl2 vos.
reimar
parents:
27304
diff
changeset
|
1424 vo_x11_decoration(mDisplay, vo_window, vo_border && !vo_fs); |
7a650839fc10
Enable runtime border/window decorations-toggling for Linux gl and gl2 vos.
reimar
parents:
27304
diff
changeset
|
1425 } |
7a650839fc10
Enable runtime border/window decorations-toggling for Linux gl and gl2 vos.
reimar
parents:
27304
diff
changeset
|
1426 |
9695 | 1427 /* |
1428 * XScreensaver stuff | |
1429 */ | |
1430 | |
25608
3ada48a71450
Use a screensaver_off variable to save current state and avoid
reimar
parents:
25482
diff
changeset
|
1431 static int screensaver_off; |
12031
0c2b8b731d42
Use system clock for xscreensaver pings (Tobias Diedrich).
diego
parents:
11995
diff
changeset
|
1432 static unsigned int time_last; |
9695 | 1433 |
12031
0c2b8b731d42
Use system clock for xscreensaver pings (Tobias Diedrich).
diego
parents:
11995
diff
changeset
|
1434 void xscreensaver_heartbeat(void) |
9695 | 1435 { |
12031
0c2b8b731d42
Use system clock for xscreensaver pings (Tobias Diedrich).
diego
parents:
11995
diff
changeset
|
1436 unsigned int time = GetTimerMS(); |
9695 | 1437 |
25609
dc64735e7391
Remove most of the messy screensaver code in favour of only XResetScreenSaver
reimar
parents:
25608
diff
changeset
|
1438 if (mDisplay && screensaver_off && (time - time_last) > 30000) |
12582 | 1439 { |
1440 time_last = time; | |
9695 | 1441 |
25609
dc64735e7391
Remove most of the messy screensaver code in favour of only XResetScreenSaver
reimar
parents:
25608
diff
changeset
|
1442 XResetScreenSaver(mDisplay); |
9695 | 1443 } |
1444 } | |
1445 | |
25466 | 1446 static int xss_suspend(Bool suspend) |
1447 { | |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
1448 #ifndef CONFIG_XSS |
25466 | 1449 return 0; |
1450 #else | |
1451 int event, error, major, minor; | |
1452 if (XScreenSaverQueryExtension(mDisplay, &event, &error) != True || | |
1453 XScreenSaverQueryVersion(mDisplay, &major, &minor) != True) | |
1454 return 0; | |
27029
e8c49e69f46f
Add parentheses to expression to avoid the warning:
diego
parents:
26755
diff
changeset
|
1455 if (major < 1 || (major == 1 && minor < 1)) |
25466 | 1456 return 0; |
1457 XScreenSaverSuspend(mDisplay, suspend); | |
1458 return 1; | |
1459 #endif | |
1460 } | |
1461 | |
9695 | 1462 /* |
1463 * End of XScreensaver stuff | |
1464 */ | |
1465 | |
12582 | 1466 void saver_on(Display * mDisplay) |
1467 { | |
324 | 1468 |
25608
3ada48a71450
Use a screensaver_off variable to save current state and avoid
reimar
parents:
25482
diff
changeset
|
1469 if (!screensaver_off) |
3ada48a71450
Use a screensaver_off variable to save current state and avoid
reimar
parents:
25482
diff
changeset
|
1470 return; |
3ada48a71450
Use a screensaver_off variable to save current state and avoid
reimar
parents:
25482
diff
changeset
|
1471 screensaver_off = 0; |
25466 | 1472 if (xss_suspend(False)) |
1473 return; | |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
1474 #ifdef CONFIG_XDPMS |
324 | 1475 if (dpms_disabled) |
1476 { | |
25447 | 1477 int nothing; |
12582 | 1478 if (DPMSQueryExtension(mDisplay, ¬hing, ¬hing)) |
1479 { | |
1480 if (!DPMSEnable(mDisplay)) | |
1481 { // restoring power saving settings | |
1482 mp_msg(MSGT_VO, MSGL_WARN, "DPMS not available?\n"); | |
1483 } else | |
1484 { | |
741 | 1485 // DPMS does not seem to be enabled unless we call DPMSInfo |
12582 | 1486 BOOL onoff; |
1487 CARD16 state; | |
1488 | |
1489 DPMSForceLevel(mDisplay, DPMSModeOn); | |
1490 DPMSInfo(mDisplay, &state, &onoff); | |
1491 if (onoff) | |
1492 { | |
13946 | 1493 mp_msg(MSGT_VO, MSGL_V, |
12582 | 1494 "Successfully enabled DPMS\n"); |
1495 } else | |
1496 { | |
1497 mp_msg(MSGT_VO, MSGL_WARN, "Could not enable DPMS\n"); | |
741 | 1498 } |
1499 } | |
12582 | 1500 } |
1501 dpms_disabled = 0; | |
324 | 1502 } |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
1503 #endif |
324 | 1504 } |
1505 | |
12582 | 1506 void saver_off(Display * mDisplay) |
1507 { | |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
1508 int nothing; |
324 | 1509 |
25608
3ada48a71450
Use a screensaver_off variable to save current state and avoid
reimar
parents:
25482
diff
changeset
|
1510 if (screensaver_off) |
3ada48a71450
Use a screensaver_off variable to save current state and avoid
reimar
parents:
25482
diff
changeset
|
1511 return; |
3ada48a71450
Use a screensaver_off variable to save current state and avoid
reimar
parents:
25482
diff
changeset
|
1512 screensaver_off = 1; |
25466 | 1513 if (xss_suspend(True)) |
1514 return; | |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
1515 #ifdef CONFIG_XDPMS |
324 | 1516 if (DPMSQueryExtension(mDisplay, ¬hing, ¬hing)) |
1517 { | |
12582 | 1518 BOOL onoff; |
1519 CARD16 state; | |
1520 | |
1521 DPMSInfo(mDisplay, &state, &onoff); | |
1522 if (onoff) | |
1523 { | |
1524 Status stat; | |
1525 | |
13946 | 1526 mp_msg(MSGT_VO, MSGL_V, "Disabling DPMS\n"); |
12582 | 1527 dpms_disabled = 1; |
1528 stat = DPMSDisable(mDisplay); // monitor powersave off | |
1529 mp_msg(MSGT_VO, MSGL_V, "DPMSDisable stat: %d\n", stat); | |
1530 } | |
324 | 1531 } |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
1532 #endif |
326 | 1533 } |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
1534 |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1535 static XErrorHandler old_handler = NULL; |
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1536 static int selectinput_err = 0; |
12582 | 1537 static int x11_selectinput_errorhandler(Display * display, |
1538 XErrorEvent * event) | |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1539 { |
12582 | 1540 if (event->error_code == BadAccess) |
1541 { | |
1542 selectinput_err = 1; | |
1543 mp_msg(MSGT_VO, MSGL_ERR, | |
1544 "X11 error: BadAccess during XSelectInput Call\n"); | |
1545 mp_msg(MSGT_VO, MSGL_ERR, | |
1546 "X11 error: The 'ButtonPressMask' mask of specified window has probably already used by another appication (see man XSelectInput)\n"); | |
21938 | 1547 /* If you think MPlayer should shutdown with this error, |
1548 * comment out the following line */ | |
12582 | 1549 return 0; |
1550 } | |
1551 if (old_handler != NULL) | |
1552 old_handler(display, event); | |
1553 else | |
1554 x11_errorhandler(display, event); | |
1555 return 0; | |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1556 } |
3990 | 1557 |
12582 | 1558 void vo_x11_selectinput_witherr(Display * display, Window w, |
1559 long event_mask) | |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1560 { |
12582 | 1561 XSync(display, False); |
1562 old_handler = XSetErrorHandler(x11_selectinput_errorhandler); | |
1563 selectinput_err = 0; | |
1564 if (vo_nomouse_input) | |
1565 { | |
1566 XSelectInput(display, w, | |
1567 event_mask & | |
1568 (~(ButtonPressMask | ButtonReleaseMask))); | |
1569 } else | |
1570 { | |
1571 XSelectInput(display, w, event_mask); | |
1572 } | |
1573 XSync(display, False); | |
1574 XSetErrorHandler(old_handler); | |
1575 if (selectinput_err) | |
1576 { | |
1577 mp_msg(MSGT_VO, MSGL_ERR, | |
1578 "X11 error: MPlayer discards mouse control (reconfiguring)\n"); | |
1579 XSelectInput(display, w, | |
1580 event_mask & | |
1581 (~ | |
1582 (ButtonPressMask | ButtonReleaseMask | | |
1583 PointerMotionMask))); | |
1584 } | |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1585 } |
3990 | 1586 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
1587 #ifdef CONFIG_XF86VM |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1588 void vo_vm_switch(void) |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1589 { |
13828
b4ad5f0b550d
Fix erroneus extern declarations, fix wrong signedness of some vars
atmos4
parents:
13787
diff
changeset
|
1590 int vm_event, vm_error; |
b4ad5f0b550d
Fix erroneus extern declarations, fix wrong signedness of some vars
atmos4
parents:
13787
diff
changeset
|
1591 int vm_ver, vm_rev; |
12582 | 1592 int i, j, have_vm = 0; |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1593 int X = vo_dwidth, Y = vo_dheight; |
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1594 int modeline_width, modeline_height; |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1595 |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1596 int modecount; |
12582 | 1597 |
1598 if (XF86VidModeQueryExtension(mDisplay, &vm_event, &vm_error)) | |
1599 { | |
1600 XF86VidModeQueryVersion(mDisplay, &vm_ver, &vm_rev); | |
18508 | 1601 mp_msg(MSGT_VO, MSGL_V, "XF86VidMode extension v%i.%i\n", vm_ver, |
12582 | 1602 vm_rev); |
1603 have_vm = 1; | |
27887
47385b5c0613
Set modeline_width/height to sane values in vo_vm_switch even when
reimar
parents:
27885
diff
changeset
|
1604 } else { |
12582 | 1605 mp_msg(MSGT_VO, MSGL_WARN, |
18508 | 1606 "XF86VidMode extension not available.\n"); |
27887
47385b5c0613
Set modeline_width/height to sane values in vo_vm_switch even when
reimar
parents:
27885
diff
changeset
|
1607 } |
12582 | 1608 |
1609 if (have_vm) | |
1610 { | |
1611 if (vidmodes == NULL) | |
1612 XF86VidModeGetAllModeLines(mDisplay, mScreen, &modecount, | |
1613 &vidmodes); | |
1614 j = 0; | |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1615 modeline_width = vidmodes[0]->hdisplay; |
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1616 modeline_height = vidmodes[0]->vdisplay; |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1617 |
12582 | 1618 for (i = 1; i < modecount; i++) |
1619 if ((vidmodes[i]->hdisplay >= X) | |
1620 && (vidmodes[i]->vdisplay >= Y)) | |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1621 if ((vidmodes[i]->hdisplay <= modeline_width) |
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1622 && (vidmodes[i]->vdisplay <= modeline_height)) |
12582 | 1623 { |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1624 modeline_width = vidmodes[i]->hdisplay; |
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1625 modeline_height = vidmodes[i]->vdisplay; |
12582 | 1626 j = i; |
1627 } | |
1628 | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16301
diff
changeset
|
1629 mp_msg(MSGT_VO, MSGL_INFO, MSGTR_SelectedVideoMode, |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1630 modeline_width, modeline_height, X, Y); |
12582 | 1631 XF86VidModeLockModeSwitch(mDisplay, mScreen, 0); |
1632 XF86VidModeSwitchToMode(mDisplay, mScreen, vidmodes[j]); | |
1633 XF86VidModeSwitchToMode(mDisplay, mScreen, vidmodes[j]); | |
27889
08a5ccceb21a
Set modified window position and monitor aspect in vo_vm_switch instead of in
reimar
parents:
27887
diff
changeset
|
1634 |
08a5ccceb21a
Set modified window position and monitor aspect in vo_vm_switch instead of in
reimar
parents:
27887
diff
changeset
|
1635 // FIXME: all this is more of a hack than proper solution |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1636 X = (vo_screenwidth - modeline_width) / 2; |
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1637 Y = (vo_screenheight - modeline_height) / 2; |
12582 | 1638 XF86VidModeSetViewPort(mDisplay, mScreen, X, Y); |
27889
08a5ccceb21a
Set modified window position and monitor aspect in vo_vm_switch instead of in
reimar
parents:
27887
diff
changeset
|
1639 vo_dx = X; |
08a5ccceb21a
Set modified window position and monitor aspect in vo_vm_switch instead of in
reimar
parents:
27887
diff
changeset
|
1640 vo_dy = Y; |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1641 vo_dwidth = modeline_width; |
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1642 vo_dheight = modeline_height; |
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1643 aspect_save_screenres(modeline_width, modeline_height); |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1644 } |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1645 } |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1646 |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1647 void vo_vm_close(void) |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1648 { |
12582 | 1649 if (vidmodes != NULL) |
1650 { | |
1651 int i, modecount; | |
5019 | 1652 |
12582 | 1653 free(vidmodes); |
1654 vidmodes = NULL; | |
1655 XF86VidModeGetAllModeLines(mDisplay, mScreen, &modecount, | |
1656 &vidmodes); | |
1657 for (i = 0; i < modecount; i++) | |
1658 if ((vidmodes[i]->hdisplay == vo_screenwidth) | |
1659 && (vidmodes[i]->vdisplay == vo_screenheight)) | |
1660 { | |
1661 mp_msg(MSGT_VO, MSGL_INFO, | |
1662 "Returning to original mode %dx%d\n", | |
1663 vo_screenwidth, vo_screenheight); | |
1664 break; | |
1665 } | |
5019 | 1666 |
27890
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1667 XF86VidModeSwitchToMode(mDisplay, mScreen, vidmodes[i]); |
a4e2700e9381
Simplify vo_vm_switch and vo_vm_close, everyone was using the (almost) same
reimar
parents:
27889
diff
changeset
|
1668 XF86VidModeSwitchToMode(mDisplay, mScreen, vidmodes[i]); |
12582 | 1669 free(vidmodes); |
1670 vidmodes = NULL; | |
1671 } | |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1672 } |
3990 | 1673 #endif |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1674 |
12582 | 1675 #endif /* X11_FULLSCREEN */ |
7256
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1676 |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1677 |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1678 /* |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1679 * Scan the available visuals on this Display/Screen. Try to find |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1680 * the 'best' available TrueColor visual that has a decent color |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1681 * depth (at least 15bit). If there are multiple visuals with depth |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1682 * >= 15bit, we prefer visuals with a smaller color depth. |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1683 */ |
12582 | 1684 int vo_find_depth_from_visuals(Display * dpy, int screen, |
1685 Visual ** visual_return) | |
7256
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1686 { |
12582 | 1687 XVisualInfo visual_tmpl; |
1688 XVisualInfo *visuals; | |
1689 int nvisuals, i; | |
1690 int bestvisual = -1; | |
1691 int bestvisual_depth = -1; | |
7256
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1692 |
12582 | 1693 visual_tmpl.screen = screen; |
1694 visual_tmpl.class = TrueColor; | |
1695 visuals = XGetVisualInfo(dpy, | |
1696 VisualScreenMask | VisualClassMask, | |
1697 &visual_tmpl, &nvisuals); | |
1698 if (visuals != NULL) | |
1699 { | |
1700 for (i = 0; i < nvisuals; i++) | |
1701 { | |
1702 mp_msg(MSGT_VO, MSGL_V, | |
17366 | 1703 "vo: X11 truecolor visual %#lx, depth %d, R:%lX G:%lX B:%lX\n", |
12582 | 1704 visuals[i].visualid, visuals[i].depth, |
1705 visuals[i].red_mask, visuals[i].green_mask, | |
1706 visuals[i].blue_mask); | |
1707 /* | |
21938 | 1708 * Save the visual index and its depth, if this is the first |
12582 | 1709 * truecolor visul, or a visual that is 'preferred' over the |
21938 | 1710 * previous 'best' visual. |
12582 | 1711 */ |
1712 if (bestvisual_depth == -1 | |
1713 || (visuals[i].depth >= 15 | |
1714 && (visuals[i].depth < bestvisual_depth | |
1715 || bestvisual_depth < 15))) | |
1716 { | |
1717 bestvisual = i; | |
1718 bestvisual_depth = visuals[i].depth; | |
1719 } | |
1720 } | |
1721 | |
1722 if (bestvisual != -1 && visual_return != NULL) | |
1723 *visual_return = visuals[bestvisual].visual; | |
1724 | |
1725 XFree(visuals); | |
7256
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1726 } |
12582 | 1727 return bestvisual_depth; |
7256
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1728 } |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1729 |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1730 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1731 static Colormap cmap = None; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1732 static XColor cols[256]; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1733 static int cm_size, red_mask, green_mask, blue_mask; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1734 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1735 |
12582 | 1736 Colormap vo_x11_create_colormap(XVisualInfo * vinfo) |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1737 { |
12582 | 1738 unsigned k, r, g, b, ru, gu, bu, m, rv, gv, bv, rvu, gvu, bvu; |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1739 |
12582 | 1740 if (vinfo->class != DirectColor) |
1741 return XCreateColormap(mDisplay, mRootWin, vinfo->visual, | |
1742 AllocNone); | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1743 |
12582 | 1744 /* can this function get called twice or more? */ |
1745 if (cmap) | |
1746 return cmap; | |
1747 cm_size = vinfo->colormap_size; | |
1748 red_mask = vinfo->red_mask; | |
1749 green_mask = vinfo->green_mask; | |
1750 blue_mask = vinfo->blue_mask; | |
1751 ru = (red_mask & (red_mask - 1)) ^ red_mask; | |
1752 gu = (green_mask & (green_mask - 1)) ^ green_mask; | |
1753 bu = (blue_mask & (blue_mask - 1)) ^ blue_mask; | |
1754 rvu = 65536ull * ru / (red_mask + ru); | |
1755 gvu = 65536ull * gu / (green_mask + gu); | |
1756 bvu = 65536ull * bu / (blue_mask + bu); | |
1757 r = g = b = 0; | |
1758 rv = gv = bv = 0; | |
1759 m = DoRed | DoGreen | DoBlue; | |
1760 for (k = 0; k < cm_size; k++) | |
1761 { | |
1762 int t; | |
1763 | |
1764 cols[k].pixel = r | g | b; | |
1765 cols[k].red = rv; | |
1766 cols[k].green = gv; | |
1767 cols[k].blue = bv; | |
1768 cols[k].flags = m; | |
1769 t = (r + ru) & red_mask; | |
1770 if (t < r) | |
1771 m &= ~DoRed; | |
1772 r = t; | |
1773 t = (g + gu) & green_mask; | |
1774 if (t < g) | |
1775 m &= ~DoGreen; | |
1776 g = t; | |
1777 t = (b + bu) & blue_mask; | |
1778 if (t < b) | |
1779 m &= ~DoBlue; | |
1780 b = t; | |
1781 rv += rvu; | |
1782 gv += gvu; | |
1783 bv += bvu; | |
1784 } | |
1785 cmap = XCreateColormap(mDisplay, mRootWin, vinfo->visual, AllocAll); | |
1786 XStoreColors(mDisplay, cmap, cols, cm_size); | |
1787 return cmap; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1788 } |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1789 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1790 /* |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1791 * Via colormaps/gamma ramps we can do gamma, brightness, contrast, |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1792 * hue and red/green/blue intensity, but we cannot do saturation. |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1793 * Currently only gamma, brightness and contrast are implemented. |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1794 * Is there sufficient interest for hue and/or red/green/blue intensity? |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1795 */ |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1796 /* these values have range [-100,100] and are initially 0 */ |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1797 static int vo_gamma = 0; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1798 static int vo_brightness = 0; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1799 static int vo_contrast = 0; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1800 |
25674
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1801 static int transform_color(float val, |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1802 float brightness, float contrast, float gamma) { |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1803 float s = pow(val, gamma); |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1804 s = (s - 0.5) * contrast + 0.5; |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1805 s += brightness; |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1806 if (s < 0) |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1807 s = 0; |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1808 if (s > 1) |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1809 s = 1; |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1810 return (unsigned short) (s * 65535); |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1811 } |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1812 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1813 uint32_t vo_x11_set_equalizer(char *name, int value) |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1814 { |
12582 | 1815 float gamma, brightness, contrast; |
1816 float rf, gf, bf; | |
1817 int k; | |
1818 | |
1819 /* | |
1820 * IMPLEMENTME: consider using XF86VidModeSetGammaRamp in the case | |
1821 * of TrueColor-ed window but be careful: | |
21938 | 1822 * Unlike the colormaps, which are private for the X client |
12582 | 1823 * who created them and thus automatically destroyed on client |
1824 * disconnect, this gamma ramp is a system-wide (X-server-wide) | |
21938 | 1825 * setting and _must_ be restored before the process exits. |
1826 * Unforunately when the process crashes (or gets killed | |
12582 | 1827 * for some reason) it is impossible to restore the setting, |
1828 * and such behaviour could be rather annoying for the users. | |
1829 */ | |
1830 if (cmap == None) | |
1831 return VO_NOTAVAIL; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1832 |
12582 | 1833 if (!strcasecmp(name, "brightness")) |
1834 vo_brightness = value; | |
1835 else if (!strcasecmp(name, "contrast")) | |
1836 vo_contrast = value; | |
1837 else if (!strcasecmp(name, "gamma")) | |
1838 vo_gamma = value; | |
1839 else | |
1840 return VO_NOTIMPL; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1841 |
12582 | 1842 brightness = 0.01 * vo_brightness; |
1843 contrast = tan(0.0095 * (vo_contrast + 100) * M_PI / 4); | |
1844 gamma = pow(2, -0.02 * vo_gamma); | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1845 |
12582 | 1846 rf = (float) ((red_mask & (red_mask - 1)) ^ red_mask) / red_mask; |
1847 gf = (float) ((green_mask & (green_mask - 1)) ^ green_mask) / | |
1848 green_mask; | |
1849 bf = (float) ((blue_mask & (blue_mask - 1)) ^ blue_mask) / blue_mask; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1850 |
12582 | 1851 /* now recalculate the colormap using the newly set value */ |
1852 for (k = 0; k < cm_size; k++) | |
1853 { | |
25674
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1854 cols[k].red = transform_color(rf * k, brightness, contrast, gamma); |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1855 cols[k].green = transform_color(gf * k, brightness, contrast, gamma); |
b13f792efe7b
Use a transform_color function to reduce code duplication
reimar
parents:
25626
diff
changeset
|
1856 cols[k].blue = transform_color(bf * k, brightness, contrast, gamma); |
12582 | 1857 } |
1858 | |
1859 XStoreColors(mDisplay, cmap, cols, cm_size); | |
1860 XFlush(mDisplay); | |
1861 return VO_TRUE; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1862 } |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1863 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1864 uint32_t vo_x11_get_equalizer(char *name, int *value) |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1865 { |
12582 | 1866 if (cmap == None) |
1867 return VO_NOTAVAIL; | |
1868 if (!strcasecmp(name, "brightness")) | |
1869 *value = vo_brightness; | |
1870 else if (!strcasecmp(name, "contrast")) | |
1871 *value = vo_contrast; | |
1872 else if (!strcasecmp(name, "gamma")) | |
1873 *value = vo_gamma; | |
1874 else | |
1875 return VO_NOTIMPL; | |
1876 return VO_TRUE; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1877 } |
12582 | 1878 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27343
diff
changeset
|
1879 #ifdef CONFIG_XV |
10359 | 1880 int vo_xv_set_eq(uint32_t xv_port, char *name, int value) |
1881 { | |
1882 XvAttribute *attributes; | |
12582 | 1883 int i, howmany, xv_atom; |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1884 |
10359 | 1885 mp_dbg(MSGT_VO, MSGL_V, "xv_set_eq called! (%s, %d)\n", name, value); |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1886 |
10359 | 1887 /* get available attributes */ |
1888 attributes = XvQueryPortAttributes(mDisplay, xv_port, &howmany); | |
1889 for (i = 0; i < howmany && attributes; i++) | |
12582 | 1890 if (attributes[i].flags & XvSettable) |
1891 { | |
1892 xv_atom = XInternAtom(mDisplay, attributes[i].name, True); | |
10359 | 1893 /* since we have SET_DEFAULTS first in our list, we can check if it's available |
1894 then trigger it if it's ok so that the other values are at default upon query */ | |
12582 | 1895 if (xv_atom != None) |
1896 { | |
1897 int hue = 0, port_value, port_min, port_max; | |
10359 | 1898 |
12582 | 1899 if (!strcmp(attributes[i].name, "XV_BRIGHTNESS") && |
1900 (!strcasecmp(name, "brightness"))) | |
1901 port_value = value; | |
1902 else if (!strcmp(attributes[i].name, "XV_CONTRAST") && | |
1903 (!strcasecmp(name, "contrast"))) | |
1904 port_value = value; | |
1905 else if (!strcmp(attributes[i].name, "XV_SATURATION") && | |
1906 (!strcasecmp(name, "saturation"))) | |
1907 port_value = value; | |
1908 else if (!strcmp(attributes[i].name, "XV_HUE") && | |
1909 (!strcasecmp(name, "hue"))) | |
1910 { | |
1911 port_value = value; | |
1912 hue = 1; | |
1913 } else | |
10359 | 1914 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */ |
12582 | 1915 if (!strcmp(attributes[i].name, "XV_RED_INTENSITY") && |
1916 (!strcasecmp(name, "red_intensity"))) | |
1917 port_value = value; | |
1918 else if (!strcmp(attributes[i].name, "XV_GREEN_INTENSITY") | |
1919 && (!strcasecmp(name, "green_intensity"))) | |
1920 port_value = value; | |
1921 else if (!strcmp(attributes[i].name, "XV_BLUE_INTENSITY") | |
1922 && (!strcasecmp(name, "blue_intensity"))) | |
1923 port_value = value; | |
1924 else | |
1925 continue; | |
1926 | |
1927 port_min = attributes[i].min_value; | |
1928 port_max = attributes[i].max_value; | |
10359 | 1929 |
12582 | 1930 /* nvidia hue workaround */ |
1931 if (hue && port_min == 0 && port_max == 360) | |
1932 { | |
1933 port_value = | |
1934 (port_value >= | |
1935 0) ? (port_value - 100) : (port_value + 100); | |
10359 | 1936 } |
12582 | 1937 // -100 -> min |
1938 // 0 -> (max+min)/2 | |
1939 // +100 -> max | |
1940 port_value = | |
1941 (port_value + 100) * (port_max - port_min) / 200 + | |
1942 port_min; | |
1943 XvSetPortAttribute(mDisplay, xv_port, xv_atom, port_value); | |
26755
46f0b4d34fa1
cosmetics: Remove useless parentheses from from return statements.
diego
parents:
26436
diff
changeset
|
1944 return VO_TRUE; |
12582 | 1945 } |
1946 } | |
26755
46f0b4d34fa1
cosmetics: Remove useless parentheses from from return statements.
diego
parents:
26436
diff
changeset
|
1947 return VO_FALSE; |
10359 | 1948 } |
1949 | |
1950 int vo_xv_get_eq(uint32_t xv_port, char *name, int *value) | |
1951 { | |
12582 | 1952 |
10359 | 1953 XvAttribute *attributes; |
12582 | 1954 int i, howmany, xv_atom; |
10359 | 1955 |
1956 /* get available attributes */ | |
1957 attributes = XvQueryPortAttributes(mDisplay, xv_port, &howmany); | |
1958 for (i = 0; i < howmany && attributes; i++) | |
12582 | 1959 if (attributes[i].flags & XvGettable) |
1960 { | |
1961 xv_atom = XInternAtom(mDisplay, attributes[i].name, True); | |
10359 | 1962 /* since we have SET_DEFAULTS first in our list, we can check if it's available |
1963 then trigger it if it's ok so that the other values are at default upon query */ | |
12582 | 1964 if (xv_atom != None) |
1965 { | |
1966 int val, port_value = 0, port_min, port_max; | |
10359 | 1967 |
12582 | 1968 XvGetPortAttribute(mDisplay, xv_port, xv_atom, |
1969 &port_value); | |
1970 | |
1971 port_min = attributes[i].min_value; | |
1972 port_max = attributes[i].max_value; | |
1973 val = | |
1974 (port_value - port_min) * 200 / (port_max - port_min) - | |
1975 100; | |
10359 | 1976 |
12582 | 1977 if (!strcmp(attributes[i].name, "XV_BRIGHTNESS") && |
1978 (!strcasecmp(name, "brightness"))) | |
1979 *value = val; | |
1980 else if (!strcmp(attributes[i].name, "XV_CONTRAST") && | |
1981 (!strcasecmp(name, "contrast"))) | |
1982 *value = val; | |
1983 else if (!strcmp(attributes[i].name, "XV_SATURATION") && | |
1984 (!strcasecmp(name, "saturation"))) | |
1985 *value = val; | |
1986 else if (!strcmp(attributes[i].name, "XV_HUE") && | |
1987 (!strcasecmp(name, "hue"))) | |
1988 { | |
1989 /* nasty nvidia detect */ | |
1990 if (port_min == 0 && port_max == 360) | |
1991 *value = (val >= 0) ? (val - 100) : (val + 100); | |
1992 else | |
1993 *value = val; | |
1994 } else | |
10359 | 1995 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */ |
12582 | 1996 if (!strcmp(attributes[i].name, "XV_RED_INTENSITY") && |
1997 (!strcasecmp(name, "red_intensity"))) | |
1998 *value = val; | |
1999 else if (!strcmp(attributes[i].name, "XV_GREEN_INTENSITY") | |
2000 && (!strcasecmp(name, "green_intensity"))) | |
2001 *value = val; | |
2002 else if (!strcmp(attributes[i].name, "XV_BLUE_INTENSITY") | |
2003 && (!strcasecmp(name, "blue_intensity"))) | |
2004 *value = val; | |
2005 else | |
2006 continue; | |
10359 | 2007 |
12582 | 2008 mp_dbg(MSGT_VO, MSGL_V, "xv_get_eq called! (%s, %d)\n", |
2009 name, *value); | |
26755
46f0b4d34fa1
cosmetics: Remove useless parentheses from from return statements.
diego
parents:
26436
diff
changeset
|
2010 return VO_TRUE; |
12582 | 2011 } |
2012 } | |
26755
46f0b4d34fa1
cosmetics: Remove useless parentheses from from return statements.
diego
parents:
26436
diff
changeset
|
2013 return VO_FALSE; |
10359 | 2014 } |
2015 | |
14742 | 2016 /** \brief contains flags changing the execution of the colorkeying code */ |
2017 xv_ck_info_t xv_ck_info = { CK_METHOD_MANUALFILL, CK_SRC_CUR }; | |
2018 unsigned long xv_colorkey; ///< The color used for manual colorkeying. | |
2019 unsigned int xv_port; ///< The selected Xv port. | |
2020 | |
2021 /** | |
2022 * \brief Interns the requested atom if it is available. | |
2023 * | |
2024 * \param atom_name String containing the name of the requested atom. | |
2025 * | |
2026 * \return Returns the atom if available, else None is returned. | |
2027 * | |
2028 */ | |
2029 static Atom xv_intern_atom_if_exists( char const * atom_name ) | |
2030 { | |
2031 XvAttribute * attributes; | |
2032 int attrib_count,i; | |
2033 Atom xv_atom = None; | |
2034 | |
2035 attributes = XvQueryPortAttributes( mDisplay, xv_port, &attrib_count ); | |
2036 if( attributes!=NULL ) | |
2037 { | |
2038 for ( i = 0; i < attrib_count; ++i ) | |
2039 { | |
2040 if ( strcmp(attributes[i].name, atom_name ) == 0 ) | |
2041 { | |
2042 xv_atom = XInternAtom( mDisplay, atom_name, False ); | |
2043 break; // found what we want, break out | |
2044 } | |
2045 } | |
2046 XFree( attributes ); | |
2047 } | |
2048 | |
2049 return xv_atom; | |
2050 } | |
15826
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2051 |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2052 /** |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2053 * \brief Try to enable vsync for xv. |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2054 * \return Returns -1 if not available, 0 on failure and 1 on success. |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2055 */ |
22886 | 2056 int vo_xv_enable_vsync(void) |
15826
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2057 { |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2058 Atom xv_atom = xv_intern_atom_if_exists("XV_SYNC_TO_VBLANK"); |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2059 if (xv_atom == None) |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2060 return -1; |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2061 return XvSetPortAttribute(mDisplay, xv_port, xv_atom, 1) == Success; |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2062 } |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2063 |
14742 | 2064 /** |
16958 | 2065 * \brief Get maximum supported source image dimensions. |
2066 * | |
2067 * This function does not set the variables pointed to by | |
21938 | 2068 * width and height if the information could not be retrieved, |
2069 * so the caller is reponsible for properly initializing them. | |
16958 | 2070 * |
2071 * \param width [out] The maximum width gets stored here. | |
2072 * \param height [out] The maximum height gets stored here. | |
2073 * | |
2074 */ | |
2075 void vo_xv_get_max_img_dim( uint32_t * width, uint32_t * height ) | |
2076 { | |
2077 XvEncodingInfo * encodings; | |
2078 //unsigned long num_encodings, idx; to int or too long?! | |
2079 unsigned int num_encodings, idx; | |
2080 | |
2081 XvQueryEncodings( mDisplay, xv_port, &num_encodings, &encodings); | |
2082 | |
2083 if ( encodings ) | |
2084 { | |
2085 for ( idx = 0; idx < num_encodings; ++idx ) | |
2086 { | |
2087 if ( strcmp( encodings[idx].name, "XV_IMAGE" ) == 0 ) | |
2088 { | |
2089 *width = encodings[idx].width; | |
2090 *height = encodings[idx].height; | |
2091 break; | |
2092 } | |
2093 } | |
2094 } | |
2095 | |
2096 mp_msg( MSGT_VO, MSGL_V, | |
2097 "[xv common] Maximum source image dimensions: %ux%u\n", | |
2098 *width, *height ); | |
2099 | |
2100 XvFreeEncodingInfo( encodings ); | |
2101 } | |
2102 | |
2103 /** | |
14742 | 2104 * \brief Print information about the colorkey method and source. |
2105 * | |
2106 * \param ck_handling Integer value containing the information about | |
2107 * colorkey handling (see x11_common.h). | |
2108 * | |
2109 * Outputs the content of |ck_handling| as a readable message. | |
2110 * | |
2111 */ | |
30556
358ac046eccc
libvo: Mark functions not used outside of their files as static.
diego
parents:
30516
diff
changeset
|
2112 static void vo_xv_print_ck_info(void) |
14742 | 2113 { |
2114 mp_msg( MSGT_VO, MSGL_V, "[xv common] " ); | |
2115 | |
2116 switch ( xv_ck_info.method ) | |
2117 { | |
2118 case CK_METHOD_NONE: | |
2119 mp_msg( MSGT_VO, MSGL_V, "Drawing no colorkey.\n" ); return; | |
2120 case CK_METHOD_AUTOPAINT: | |
2121 mp_msg( MSGT_VO, MSGL_V, "Colorkey is drawn by Xv." ); break; | |
2122 case CK_METHOD_MANUALFILL: | |
2123 mp_msg( MSGT_VO, MSGL_V, "Drawing colorkey manually." ); break; | |
2124 case CK_METHOD_BACKGROUND: | |
2125 mp_msg( MSGT_VO, MSGL_V, "Colorkey is drawn as window background." ); break; | |
2126 } | |
2127 | |
2128 mp_msg( MSGT_VO, MSGL_V, "\n[xv common] " ); | |
2129 | |
2130 switch ( xv_ck_info.source ) | |
2131 { | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
2132 case CK_SRC_CUR: |
17366 | 2133 mp_msg( MSGT_VO, MSGL_V, "Using colorkey from Xv (0x%06lx).\n", |
14742 | 2134 xv_colorkey ); |
2135 break; | |
2136 case CK_SRC_USE: | |
2137 if ( xv_ck_info.method == CK_METHOD_AUTOPAINT ) | |
2138 { | |
2139 mp_msg( MSGT_VO, MSGL_V, | |
17366 | 2140 "Ignoring colorkey from MPlayer (0x%06lx).\n", |
14742 | 2141 xv_colorkey ); |
2142 } | |
2143 else | |
2144 { | |
2145 mp_msg( MSGT_VO, MSGL_V, | |
17366 | 2146 "Using colorkey from MPlayer (0x%06lx)." |
14742 | 2147 " Use -colorkey to change.\n", |
2148 xv_colorkey ); | |
2149 } | |
2150 break; | |
2151 case CK_SRC_SET: | |
2152 mp_msg( MSGT_VO, MSGL_V, | |
17366 | 2153 "Setting and using colorkey from MPlayer (0x%06lx)." |
14742 | 2154 " Use -colorkey to change.\n", |
2155 xv_colorkey ); | |
2156 break; | |
2157 } | |
2158 } | |
2159 /** | |
2160 * \brief Init colorkey depending on the settings in xv_ck_info. | |
2161 * | |
2162 * \return Returns 0 on failure and 1 on success. | |
2163 * | |
2164 * Sets the colorkey variable according to the CK_SRC_* and CK_METHOD_* | |
2165 * flags in xv_ck_info. | |
2166 * | |
2167 * Possiblilities: | |
2168 * * Methods | |
2169 * - manual colorkey drawing ( CK_METHOD_MANUALFILL ) | |
2170 * - set colorkey as window background ( CK_METHOD_BACKGROUND ) | |
2171 * - let Xv paint the colorkey ( CK_METHOD_AUTOPAINT ) | |
2172 * * Sources | |
2173 * - use currently set colorkey ( CK_SRC_CUR ) | |
2174 * - use colorkey in vo_colorkey ( CK_SRC_USE ) | |
2175 * - use and set colorkey in vo_colorkey ( CK_SRC_SET ) | |
2176 * | |
2177 * NOTE: If vo_colorkey has bits set after the first 3 low order bytes | |
2178 * we don't draw anything as this means it was forced to off. | |
2179 */ | |
22886 | 2180 int vo_xv_init_colorkey(void) |
14742 | 2181 { |
2182 Atom xv_atom; | |
2183 int rez; | |
2184 | |
2185 /* check if colorkeying is needed */ | |
2186 xv_atom = xv_intern_atom_if_exists( "XV_COLORKEY" ); | |
2187 | |
2188 /* if we have to deal with colorkeying ... */ | |
2189 if( xv_atom != None && !(vo_colorkey & 0xFF000000) ) | |
2190 { | |
2191 /* check if we should use the colorkey specified in vo_colorkey */ | |
2192 if ( xv_ck_info.source != CK_SRC_CUR ) | |
2193 { | |
2194 xv_colorkey = vo_colorkey; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
2195 |
14742 | 2196 /* check if we have to set the colorkey too */ |
2197 if ( xv_ck_info.source == CK_SRC_SET ) | |
2198 { | |
2199 xv_atom = XInternAtom(mDisplay, "XV_COLORKEY",False); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
2200 |
14742 | 2201 rez = XvSetPortAttribute( mDisplay, xv_port, xv_atom, vo_colorkey ); |
2202 if ( rez != Success ) | |
2203 { | |
2204 mp_msg( MSGT_VO, MSGL_FATAL, | |
2205 "[xv common] Couldn't set colorkey!\n" ); | |
2206 return 0; // error setting colorkey | |
2207 } | |
2208 } | |
2209 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
2210 else |
14742 | 2211 { |
2212 int colorkey_ret; | |
2213 | |
2214 rez=XvGetPortAttribute(mDisplay,xv_port, xv_atom, &colorkey_ret); | |
2215 if ( rez == Success ) | |
2216 { | |
2217 xv_colorkey = colorkey_ret; | |
2218 } | |
2219 else | |
2220 { | |
2221 mp_msg( MSGT_VO, MSGL_FATAL, | |
2222 "[xv common] Couldn't get colorkey!" | |
2223 "Maybe the selected Xv port has no overlay.\n" ); | |
2224 return 0; // error getting colorkey | |
2225 } | |
2226 } | |
2227 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
2228 xv_atom = xv_intern_atom_if_exists( "XV_AUTOPAINT_COLORKEY" ); |
15186 | 2229 |
14742 | 2230 /* should we draw the colorkey ourselves or activate autopainting? */ |
2231 if ( xv_ck_info.method == CK_METHOD_AUTOPAINT ) | |
2232 { | |
2233 rez = !Success; // reset rez to something different than Success | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
2234 |
14742 | 2235 if ( xv_atom != None ) // autopaint is supported |
2236 { | |
2237 rez = XvSetPortAttribute( mDisplay, xv_port, xv_atom, 1 ); | |
2238 } | |
2239 | |
2240 if ( rez != Success ) | |
2241 { | |
2242 // fallback to manual colorkey drawing | |
2243 xv_ck_info.method = CK_METHOD_MANUALFILL; | |
2244 } | |
2245 } | |
15186 | 2246 else // disable colorkey autopainting if supported |
2247 { | |
2248 if ( xv_atom != None ) // we have autopaint attribute | |
2249 { | |
2250 XvSetPortAttribute( mDisplay, xv_port, xv_atom, 0 ); | |
2251 } | |
2252 } | |
14742 | 2253 } |
2254 else // do no colorkey drawing at all | |
2255 { | |
2256 xv_ck_info.method = CK_METHOD_NONE; | |
2257 } /* end: should we draw colorkey */ | |
2258 | |
21938 | 2259 /* output information about the current colorkey settings */ |
14742 | 2260 vo_xv_print_ck_info(); |
2261 | |
2262 return 1; // success | |
2263 } | |
2264 | |
2265 /** | |
2266 * \brief Draw the colorkey on the video window. | |
2267 * | |
2268 * Draws the colorkey depending on the set method ( colorkey_handling ). | |
2269 * | |
21938 | 2270 * Also draws the black bars ( when the video doesn't fit the display in |
2271 * fullscreen ) separately, so they don't overlap with the video area. | |
2272 * It doesn't call XFlush. | |
14742 | 2273 * |
2274 */ | |
24890 | 2275 void vo_xv_draw_colorkey( int32_t x, int32_t y, |
15100 | 2276 int32_t w, int32_t h ) |
14742 | 2277 { |
15100 | 2278 if( xv_ck_info.method == CK_METHOD_MANUALFILL || |
2279 xv_ck_info.method == CK_METHOD_BACKGROUND )//less tearing than XClearWindow() | |
14742 | 2280 { |
2281 XSetForeground( mDisplay, vo_gc, xv_colorkey ); | |
2282 XFillRectangle( mDisplay, vo_window, vo_gc, | |
2283 x, y, | |
2284 w, h ); | |
2285 } | |
2286 | |
2287 /* draw black bars if needed */ | |
15100 | 2288 /* TODO! move this to vo_x11_clearwindow_part() */ |
14742 | 2289 if ( vo_fs ) |
2290 { | |
2291 XSetForeground( mDisplay, vo_gc, 0 ); | |
21938 | 2292 /* making non-overlap fills, requires 8 checks instead of 4 */ |
14742 | 2293 if ( y > 0 ) |
2294 XFillRectangle( mDisplay, vo_window, vo_gc, | |
2295 0, 0, | |
2296 vo_screenwidth, y); | |
2297 if (x > 0) | |
2298 XFillRectangle( mDisplay, vo_window, vo_gc, | |
15100 | 2299 0, 0, |
2300 x, vo_screenheight); | |
14742 | 2301 if (x + w < vo_screenwidth) |
2302 XFillRectangle( mDisplay, vo_window, vo_gc, | |
15100 | 2303 x + w, 0, |
2304 vo_screenwidth, vo_screenheight); | |
14742 | 2305 if (y + h < vo_screenheight) |
2306 XFillRectangle( mDisplay, vo_window, vo_gc, | |
2307 0, y + h, | |
15100 | 2308 vo_screenwidth, vo_screenheight); |
14742 | 2309 } |
2310 } | |
2311 | |
21938 | 2312 /** \brief Tests if a valid argument for the ck suboption was given. */ |
14742 | 2313 int xv_test_ck( void * arg ) |
2314 { | |
2315 strarg_t * strarg = (strarg_t *)arg; | |
2316 | |
15734
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2317 if ( strargcmp( strarg, "use" ) == 0 || |
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2318 strargcmp( strarg, "set" ) == 0 || |
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2319 strargcmp( strarg, "cur" ) == 0 ) |
14742 | 2320 { |
2321 return 1; | |
2322 } | |
2323 | |
2324 return 0; | |
2325 } | |
21938 | 2326 /** \brief Tests if a valid arguments for the ck-method suboption was given. */ |
14742 | 2327 int xv_test_ckm( void * arg ) |
2328 { | |
2329 strarg_t * strarg = (strarg_t *)arg; | |
2330 | |
15734
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2331 if ( strargcmp( strarg, "bg" ) == 0 || |
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2332 strargcmp( strarg, "man" ) == 0 || |
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2333 strargcmp( strarg, "auto" ) == 0 ) |
14742 | 2334 { |
2335 return 1; | |
2336 } | |
2337 | |
2338 return 0; | |
2339 } | |
2340 | |
2341 /** | |
2342 * \brief Modify the colorkey_handling var according to str | |
2343 * | |
2344 * Checks if a valid pointer ( not NULL ) to the string | |
2345 * was given. And in that case modifies the colorkey_handling | |
2346 * var to reflect the requested behaviour. | |
2347 * If nothing happens the content of colorkey_handling stays | |
2348 * the same. | |
2349 * | |
2350 * \param str Pointer to the string or NULL | |
2351 * | |
2352 */ | |
2353 void xv_setup_colorkeyhandling( char const * ck_method_str, | |
2354 char const * ck_str ) | |
2355 { | |
2356 /* check if a valid pointer to the string was passed */ | |
2357 if ( ck_str ) | |
2358 { | |
2359 if ( strncmp( ck_str, "use", 3 ) == 0 ) | |
2360 { | |
2361 xv_ck_info.source = CK_SRC_USE; | |
2362 } | |
2363 else if ( strncmp( ck_str, "set", 3 ) == 0 ) | |
2364 { | |
2365 xv_ck_info.source = CK_SRC_SET; | |
2366 } | |
2367 } | |
2368 /* check if a valid pointer to the string was passed */ | |
2369 if ( ck_method_str ) | |
2370 { | |
2371 if ( strncmp( ck_method_str, "bg", 2 ) == 0 ) | |
2372 { | |
2373 xv_ck_info.method = CK_METHOD_BACKGROUND; | |
2374 } | |
2375 else if ( strncmp( ck_method_str, "man", 3 ) == 0 ) | |
2376 { | |
2377 xv_ck_info.method = CK_METHOD_MANUALFILL; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
2378 } |
14742 | 2379 else if ( strncmp( ck_method_str, "auto", 4 ) == 0 ) |
2380 { | |
2381 xv_ck_info.method = CK_METHOD_AUTOPAINT; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28771
diff
changeset
|
2382 } |
14742 | 2383 } |
2384 } | |
2385 | |
10359 | 2386 #endif |