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
fee55b88
Commit
fee55b88
authored
May 11, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mac OS X gui: Make sure we don't see a ghost window in expose.
parent
476a2664
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
modules/gui/macosx/embeddedwindow.h
modules/gui/macosx/embeddedwindow.h
+2
-0
modules/gui/macosx/embeddedwindow.m
modules/gui/macosx/embeddedwindow.m
+14
-2
No files found.
modules/gui/macosx/embeddedwindow.h
View file @
fee55b88
...
...
@@ -67,6 +67,8 @@
-
(
void
)
enterFullscreen
;
-
(
void
)
leaveFullscreen
;
/* Allows to leave fullscreen by simply fading out the display */
-
(
void
)
leaveFullscreenAndFadeOut
:
(
BOOL
)
fadeout
;
/* private */
-
(
void
)
hasEndedFullscreen
;
...
...
modules/gui/macosx/embeddedwindow.m
View file @
fee55b88
...
...
@@ -249,6 +249,8 @@
/* We are in fullscreen (and no animation is running) */
if
(
b_fullscreen
)
{
/* Make sure we are hidden */
[
super
orderOut
:
self
];
b_animation_lock_alreadylocked
=
NO
;
[
self
unlockFullscreenAnimation
];
return
;
...
...
@@ -319,12 +321,19 @@
/* tell the fspanel to move itself to front next time it's triggered */
[[[[
VLCMain
sharedInstance
]
getControls
]
getFSPanel
]
setVoutWasUpdated
:
(
int
)[[
o_fullscreen_window
screen
]
displayID
]];
[
super
orderOut
:
self
];
[[[[
VLCMain
sharedInstance
]
getControls
]
getFSPanel
]
setActive
:
nil
];
b_fullscreen
=
YES
;
[
self
unlockFullscreenAnimation
];
}
-
(
void
)
leaveFullscreen
{
[
self
leaveFullscreenAndFadeOut
:
NO
];
}
-
(
void
)
leaveFullscreenAndFadeOut
:
(
BOOL
)
fadeout
{
NSMutableDictionary
*
dict1
,
*
dict2
;
NSRect
frame
;
...
...
@@ -345,7 +354,7 @@
return
;
}
if
(
!
[
self
isVisible
]
||
MACOS_VERSION
<
10
.
4
f
)
if
(
fadeout
||
MACOS_VERSION
<
10
.
4
f
)
{
/* We don't animate if we are not visible or if we are running on
* Mac OS X <10.4 which doesn't support NSAnimation, instead we
...
...
@@ -366,6 +375,9 @@
return
;
}
[
self
setAlphaValue
:
0
.
0
];
[
self
orderFront
:
self
];
[[[[
VLCMain
sharedInstance
]
getControls
]
getFSPanel
]
setNonActive
:
nil
];
SetSystemUIMode
(
kUIModeNormal
,
kUIOptionAutoShowMenuBar
);
...
...
@@ -473,7 +485,7 @@
{
[
super
orderOut
:
sender
];
/* Make sure we leave fullscreen */
[
self
leaveFullscreen
];
[
self
leaveFullscreen
AndFadeOut
:
YES
];
}
/* Make sure setFrame gets executed on main thread especially if we are animating.
...
...
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