Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
451
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
103cd865
Commit
103cd865
authored
15 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
XCB/window: hackish implementation of video wallpaper
parent
1d288a10
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/video_output/xcb/window.c
+12
-1
12 additions, 1 deletion
modules/video_output/xcb/window.c
with
12 additions
and
1 deletion
modules/video_output/xcb/window.c
+
12
−
1
View file @
103cd865
...
...
@@ -330,6 +330,12 @@ static int Open (vlc_object_t *obj)
/* Make the window visible */
xcb_map_window
(
conn
,
window
);
if
(
var_CreateGetBool
(
obj
,
"video-wallpaper"
))
{
vout_window_SetState
(
wnd
,
VOUT_WINDOW_STATE_BELOW
);
vout_window_SetFullScreen
(
wnd
,
true
);
}
/* Create the event thread. It will dequeue all events, so any checked
* request from this thread must be completed at this point. */
if
((
p_sys
->
keys
!=
NULL
)
...
...
@@ -494,8 +500,13 @@ static int Control (vout_window_t *wnd, int cmd, va_list ap)
}
case
VOUT_WINDOW_SET_FULLSCREEN
:
set_wm_state
(
wnd
,
va_arg
(
ap
,
int
),
p_sys
->
wm_state_fullscreen
);
{
bool
fs
=
va_arg
(
ap
,
int
);
if
(
!
fs
&&
var_GetBool
(
wnd
,
"video-wallpaper"
))
return
VLC_EGENERIC
;
set_wm_state
(
wnd
,
fs
,
p_sys
->
wm_state_fullscreen
);
break
;
}
default:
msg_Err
(
wnd
,
"request %d not implemented"
,
cmd
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment