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
98ed98bb
Commit
98ed98bb
authored
Sep 28, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Privatized i_window_style in msw.
parent
fce7510d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
8 deletions
+14
-8
modules/video_output/msw/common.c
modules/video_output/msw/common.c
+2
-2
modules/video_output/msw/events.c
modules/video_output/msw/events.c
+11
-4
modules/video_output/msw/events.h
modules/video_output/msw/events.h
+1
-1
modules/video_output/msw/vout.h
modules/video_output/msw/vout.h
+0
-1
No files found.
modules/video_output/msw/common.c
View file @
98ed98bb
...
...
@@ -507,7 +507,7 @@ int Control( vout_thread_t *p_vout, int i_query, va_list args )
rect_window
.
bottom
=
va_arg
(
args
,
unsigned
int
);
if
(
!
rect_window
.
right
)
rect_window
.
right
=
p_vout
->
i_window_width
;
if
(
!
rect_window
.
bottom
)
rect_window
.
bottom
=
p_vout
->
i_window_height
;
AdjustWindowRect
(
&
rect_window
,
p_vout
->
p_sys
->
i_window_style
,
0
);
AdjustWindowRect
(
&
rect_window
,
EventThreadGetWindowStyle
(
p_vout
->
p_sys
->
p_event
)
,
0
);
SetWindowPos
(
p_vout
->
p_sys
->
hwnd
,
0
,
0
,
0
,
rect_window
.
right
-
rect_window
.
left
,
...
...
@@ -658,7 +658,7 @@ void Win32ToggleFullscreen( vout_thread_t *p_vout )
{
msg_Dbg
(
p_vout
,
"leaving fullscreen mode"
);
/* Change window style, no borders and no title bar */
SetWindowLong
(
hwnd
,
GWL_STYLE
,
p_vout
->
p_sys
->
i_window_style
);
SetWindowLong
(
hwnd
,
GWL_STYLE
,
EventThreadGetWindowStyle
(
p_vout
->
p_sys
->
p_event
)
);
if
(
p_vout
->
p_sys
->
hparent
)
{
...
...
modules/video_output/msw/events.c
View file @
98ed98bb
...
...
@@ -95,13 +95,14 @@ struct event_thread_t
/* Title */
char
*
psz_title
;
int
i_window_style
;
/* */
unsigned
i_changes
;
};
static
int
DirectXCreateWindow
(
vout_thread_t
*
p_vout
);
static
int
DirectXCreateWindow
(
event_thread_t
*
);
static
void
DirectXCloseWindow
(
vout_thread_t
*
p_vout
);
static
long
FAR
PASCAL
DirectXEventProc
(
HWND
,
UINT
,
WPARAM
,
LPARAM
);
...
...
@@ -137,7 +138,7 @@ static void *EventThread( void *p_this )
/* Create a window for the video */
/* Creating a window under Windows also initializes the thread's event
* message queue */
if
(
DirectXCreateWindow
(
p_event
->
p_vout
)
)
if
(
DirectXCreateWindow
(
p_event
)
)
p_event
->
b_error
=
true
;
p_event
->
b_ready
=
true
;
...
...
@@ -416,8 +417,9 @@ static void *EventThread( void *p_this )
* the video will be displayed. This window will also allow us to capture the
* events.
*****************************************************************************/
static
int
DirectXCreateWindow
(
vout_thread_t
*
p_vou
t
)
static
int
DirectXCreateWindow
(
event_thread_t
*
p_even
t
)
{
vout_thread_t
*
p_vout
=
p_event
->
p_vout
;
HINSTANCE
hInstance
;
HMENU
hMenu
;
RECT
rect_window
;
...
...
@@ -545,7 +547,7 @@ static int DirectXCreateWindow( vout_thread_t *p_vout )
i_stylex
=
0
;
}
p_
vout
->
p_sys
->
i_window_style
=
i_style
;
p_
event
->
i_window_style
=
i_style
;
/* Create the window */
p_vout
->
p_sys
->
hwnd
=
...
...
@@ -947,6 +949,11 @@ unsigned EventThreadRetreiveChanges( event_thread_t *p_event )
return
i_changes
;
}
int
EventThreadGetWindowStyle
(
event_thread_t
*
p_event
)
{
/* No need to lock, it is serialized by EventThreadStart */
return
p_event
->
i_window_style
;
}
event_thread_t
*
EventThreadCreate
(
vout_thread_t
*
p_vout
)
{
...
...
modules/video_output/msw/events.h
View file @
98ed98bb
...
...
@@ -35,4 +35,4 @@ void EventThreadStop( event_thread_t * );
void
EventThreadMouseAutoHide
(
event_thread_t
*
);
void
EventThreadUpdateTitle
(
event_thread_t
*
,
const
char
*
psz_fallback
);
unsigned
EventThreadRetreiveChanges
(
event_thread_t
*
);
int
EventThreadGetWindowStyle
(
event_thread_t
*
);
modules/video_output/msw/vout.h
View file @
98ed98bb
...
...
@@ -95,7 +95,6 @@ struct vout_sys_t
int
i_window_y
;
int
i_window_width
;
int
i_window_height
;
int
i_window_style
;
volatile
uint16_t
i_changes
;
/* changes made to the video display */
...
...
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