Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
a131a15d
Commit
a131a15d
authored
Oct 06, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/video_output/directx: should solve the visible taskbar problem in fullscreen.
parent
764aab71
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
modules/video_output/directx/directx.c
modules/video_output/directx/directx.c
+10
-8
No files found.
modules/video_output/directx/directx.c
View file @
a131a15d
...
@@ -593,20 +593,22 @@ static int Manage( vout_thread_t *p_vout )
...
@@ -593,20 +593,22 @@ static int Manage( vout_thread_t *p_vout )
PostMessage
(
p_vout
->
p_sys
->
hwnd
,
WM_VLC_SHOW_MOUSE
,
0
,
0
);
PostMessage
(
p_vout
->
p_sys
->
hwnd
,
WM_VLC_SHOW_MOUSE
,
0
,
0
);
}
}
if
(
p_vout
->
p_sys
->
hparent
)
{
ShowWindow
(
p_vout
->
p_sys
->
hwnd
,
SW_HIDE
);
SetWindowLong
(
p_vout
->
p_sys
->
hwnd
,
GWL_EXSTYLE
,
!
p_vout
->
b_fullscreen
?
WS_EX_NOPARENTNOTIFY
|
WS_EX_TOOLWINDOW
:
WS_EX_NOPARENTNOTIFY
);
ShowWindow
(
p_vout
->
p_sys
->
hwnd
,
SW_SHOW
);
}
/* Change window style, borders and title bar */
/* Change window style, borders and title bar */
SetWindowLong
(
p_vout
->
p_sys
->
hwnd
,
GWL_STYLE
,
i_style
);
SetWindowLong
(
p_vout
->
p_sys
->
hwnd
,
GWL_STYLE
,
i_style
);
SetWindowPlacement
(
p_vout
->
p_sys
->
hwnd
,
&
window_placement
);
SetWindowPlacement
(
p_vout
->
p_sys
->
hwnd
,
&
window_placement
);
SetWindowPos
(
p_vout
->
p_sys
->
hwnd
,
0
,
0
,
0
,
0
,
0
,
SetWindowPos
(
p_vout
->
p_sys
->
hwnd
,
0
,
0
,
0
,
0
,
0
,
SWP_NOMOVE
|
SWP_NOSIZE
|
SWP_NOZORDER
|
SWP_FRAMECHANGED
);
SWP_NOMOVE
|
SWP_NOSIZE
|
SWP_NOZORDER
|
SWP_FRAMECHANGED
);
if
(
p_vout
->
p_sys
->
hparent
)
{
ShowWindow
(
p_vout
->
p_sys
->
hwnd
,
SW_HIDE
);
SetWindowLong
(
p_vout
->
p_sys
->
hwnd
,
GWL_EXSTYLE
,
p_vout
->
b_fullscreen
?
0
:
WS_EX_TOOLWINDOW
);
ShowWindow
(
p_vout
->
p_sys
->
hwnd
,
SW_SHOW
);
}
/* Update the object variable and trigger callback */
/* Update the object variable and trigger callback */
val
.
b_bool
=
p_vout
->
b_fullscreen
;
val
.
b_bool
=
p_vout
->
b_fullscreen
;
var_Set
(
p_vout
,
"fullscreen"
,
val
);
var_Set
(
p_vout
,
"fullscreen"
,
val
);
...
...
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