Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
496b1f5f
Commit
496b1f5f
authored
Nov 26, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* missing file in previous commit
parent
21445d78
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
modules/gui/macosx/fspanel.m
modules/gui/macosx/fspanel.m
+19
-0
No files found.
modules/gui/macosx/fspanel.m
View file @
496b1f5f
...
...
@@ -115,10 +115,18 @@
/* This routine is called repeatedly to fade in the window */
-
(
void
)
focus
:(
NSTimer
*
)
timer
{
/* we need to push ourselves to front if the vout window was closed since our last display */
if
(
b_voutWasUpdated
)
{
[
self
orderFront
:
self
];
b_voutWasUpdated
=
NO
;
}
if
(
[
self
alphaValue
]
<
1
.
0
)
[
self
setAlphaValue
:[
self
alphaValue
]
+
0
.
1
];
if
(
[
self
alphaValue
]
>=
1
.
0
)
{
b_displayed
=
YES
;
[
self
setAlphaValue
:
1
.
0
];
[
self
setFadeTimer
:
nil
];
if
(
b_fadeQueued
)
...
...
@@ -145,6 +153,7 @@
[
self
setAlphaValue
:[
self
alphaValue
]
-
0
.
1
];
if
(
[
self
alphaValue
]
<=
0
.
1
)
{
b_displayed
=
NO
;
[
self
setAlphaValue
:
0
.
0
];
[
self
setFadeTimer
:
nil
];
if
(
b_fadeQueued
)
...
...
@@ -257,6 +266,16 @@
point
.
y
-=
mouseClic
.
y
;
[
self
setFrameOrigin
:
point
];
}
-
(
BOOL
)
isDisplayed
{
return
b_displayed
;
}
-
(
void
)
setVoutWasUpdated
{
b_voutWasUpdated
=
YES
;
}
@end
/*****************************************************************************
...
...
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