Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
5b2d9a63
Commit
5b2d9a63
authored
Aug 12, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Xlib: remove redumdant window management code
parent
739d2f74
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
89 deletions
+0
-89
modules/video_output/x11/xcommon.c
modules/video_output/x11/xcommon.c
+0
-78
modules/video_output/x11/xcommon.h
modules/video_output/x11/xcommon.h
+0
-11
No files found.
modules/video_output/x11/xcommon.c
View file @
5b2d9a63
...
...
@@ -137,7 +137,6 @@ static int xvmc_check_yv12( Display *display, XvPortID port );
static
void
xvmc_update_XV_DOUBLE_BUFFER
(
vout_thread_t
*
p_vout
);
#endif
static
void
TestNetWMSupport
(
vout_thread_t
*
);
static
int
ConvertKey
(
int
);
static
int
X11ErrorHandler
(
Display
*
,
XErrorEvent
*
);
...
...
@@ -361,8 +360,6 @@ int Activate ( vlc_object_t *p_this )
p_vout
->
p_sys
->
b_altfullscreen
=
0
;
p_vout
->
p_sys
->
i_time_button_last_pressed
=
0
;
TestNetWMSupport
(
p_vout
);
#ifdef MODULE_NAME_IS_xvmc
p_vout
->
p_sys
->
p_last_subtitle_save
=
NULL
;
psz_value
=
config_GetPsz
(
p_vout
,
"xvmc-deinterlace-mode"
);
...
...
@@ -2737,81 +2734,6 @@ static int Control( vout_thread_t *p_vout, int i_query, va_list args )
}
}
/*****************************************************************************
* TestNetWMSupport: tests for Extended Window Manager Hints support
*****************************************************************************/
static
void
TestNetWMSupport
(
vout_thread_t
*
p_vout
)
{
int
i_ret
,
i_format
;
unsigned
long
i
,
i_items
,
i_bytesafter
;
Atom
net_wm_supported
;
union
{
Atom
*
p_atom
;
unsigned
char
*
p_char
;
}
p_args
;
p_args
.
p_atom
=
NULL
;
p_vout
->
p_sys
->
b_net_wm_state_fullscreen
=
p_vout
->
p_sys
->
b_net_wm_state_above
=
p_vout
->
p_sys
->
b_net_wm_state_below
=
p_vout
->
p_sys
->
b_net_wm_state_stays_on_top
=
false
;
net_wm_supported
=
XInternAtom
(
p_vout
->
p_sys
->
p_display
,
"_NET_SUPPORTED"
,
False
);
i_ret
=
XGetWindowProperty
(
p_vout
->
p_sys
->
p_display
,
DefaultRootWindow
(
p_vout
->
p_sys
->
p_display
),
net_wm_supported
,
0
,
16384
,
False
,
AnyPropertyType
,
&
net_wm_supported
,
&
i_format
,
&
i_items
,
&
i_bytesafter
,
(
unsigned
char
**
)
&
p_args
);
if
(
i_ret
!=
Success
||
i_items
==
0
)
return
;
msg_Dbg
(
p_vout
,
"Window manager supports NetWM"
);
p_vout
->
p_sys
->
net_wm_state
=
XInternAtom
(
p_vout
->
p_sys
->
p_display
,
"_NET_WM_STATE"
,
False
);
p_vout
->
p_sys
->
net_wm_state_fullscreen
=
XInternAtom
(
p_vout
->
p_sys
->
p_display
,
"_NET_WM_STATE_FULLSCREEN"
,
False
);
p_vout
->
p_sys
->
net_wm_state_above
=
XInternAtom
(
p_vout
->
p_sys
->
p_display
,
"_NET_WM_STATE_ABOVE"
,
False
);
p_vout
->
p_sys
->
net_wm_state_below
=
XInternAtom
(
p_vout
->
p_sys
->
p_display
,
"_NET_WM_STATE_BELOW"
,
False
);
p_vout
->
p_sys
->
net_wm_state_stays_on_top
=
XInternAtom
(
p_vout
->
p_sys
->
p_display
,
"_NET_WM_STATE_STAYS_ON_TOP"
,
False
);
for
(
i
=
0
;
i
<
i_items
;
i
++
)
{
if
(
p_args
.
p_atom
[
i
]
==
p_vout
->
p_sys
->
net_wm_state_fullscreen
)
{
msg_Dbg
(
p_vout
,
"Window manager supports _NET_WM_STATE_FULLSCREEN"
);
p_vout
->
p_sys
->
b_net_wm_state_fullscreen
=
true
;
}
else
if
(
p_args
.
p_atom
[
i
]
==
p_vout
->
p_sys
->
net_wm_state_above
)
{
msg_Dbg
(
p_vout
,
"Window manager supports _NET_WM_STATE_ABOVE"
);
p_vout
->
p_sys
->
b_net_wm_state_above
=
true
;
}
else
if
(
p_args
.
p_atom
[
i
]
==
p_vout
->
p_sys
->
net_wm_state_below
)
{
msg_Dbg
(
p_vout
,
"Window manager supports _NET_WM_STATE_BELOW"
);
p_vout
->
p_sys
->
b_net_wm_state_below
=
true
;
}
else
if
(
p_args
.
p_atom
[
i
]
==
p_vout
->
p_sys
->
net_wm_state_stays_on_top
)
{
msg_Dbg
(
p_vout
,
"Window manager supports _NET_WM_STATE_STAYS_ON_TOP"
);
p_vout
->
p_sys
->
b_net_wm_state_stays_on_top
=
true
;
}
}
XFree
(
p_args
.
p_atom
);
}
/*****************************************************************************
* Key events handling
*****************************************************************************/
...
...
modules/video_output/x11/xcommon.h
View file @
5b2d9a63
...
...
@@ -250,17 +250,6 @@ struct vout_sys_t
mtime_t
i_time_button_last_pressed
;
/* to track dbl-clicks */
Pixmap
cursor_pixmap
;
/* Window manager properties */
Atom
net_wm_state
;
Atom
net_wm_state_fullscreen
;
bool
b_net_wm_state_fullscreen
;
Atom
net_wm_state_above
;
bool
b_net_wm_state_above
;
Atom
net_wm_state_stays_on_top
;
bool
b_net_wm_state_stays_on_top
;
Atom
net_wm_state_below
;
bool
b_net_wm_state_below
;
#ifdef MODULE_NAME_IS_glx
/* GLX properties */
int
b_glx13
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment