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
08131e5e
Commit
08131e5e
authored
Jan 03, 2007
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* port fullscreen controller fixes, thus [18458], [18417], [18409], [18384]
parent
9386823c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
74 additions
and
21 deletions
+74
-21
modules/gui/macosx/fspanel.h
modules/gui/macosx/fspanel.h
+8
-4
modules/gui/macosx/fspanel.m
modules/gui/macosx/fspanel.m
+55
-12
modules/gui/macosx/macosx.m
modules/gui/macosx/macosx.m
+8
-2
modules/gui/macosx/vout.m
modules/gui/macosx/vout.m
+3
-3
No files found.
modules/gui/macosx/fspanel.h
View file @
08131e5e
/*****************************************************************************
* fspanel.h: MacOS X full screen panel
*****************************************************************************
* Copyright (C) 2006 the VideoLAN team
* Copyright (C) 2006
-2007
the VideoLAN team
* $Id: fspanel.h 16935 2006-10-04 08:19:38Z fkuehne $
*
* Authors: Jérôme Decoodt <djc at videolan dot org>
...
...
@@ -31,6 +31,7 @@
BOOL
b_alreadyCounting
;
int
i_timeToKeepVisibleInSec
;
BOOL
b_nonActive
;
BOOL
b_displayed
;
BOOL
b_voutWasUpdated
;
int
i_device
;
...
...
@@ -50,6 +51,9 @@
-
(
void
)
setSeekable
:(
BOOL
)
b_seekable
;
-
(
void
)
setVolumeLevel
:
(
float
)
f_volumeLevel
;
-
(
void
)
setNonActive
:(
id
)
noData
;
-
(
void
)
setActive
:(
id
)
noData
;
-
(
void
)
focus
:(
NSTimer
*
)
timer
;
-
(
void
)
unfocus
:(
NSTimer
*
)
timer
;
-
(
void
)
mouseExited
:(
NSEvent
*
)
theEvent
;
...
...
@@ -72,7 +76,7 @@
@interface
VLCFSPanelView
:
NSView
{
NSColor
*
fillColor
;
NSButton
*
o_prev
,
*
o_next
,
*
o_
slow
,
*
o_fast
,
*
o_play
,
*
o_fullscreen
;
NSButton
*
o_prev
,
*
o_next
,
*
o_
bwd
,
*
o_fwd
,
*
o_play
,
*
o_fullscreen
;
NSTextField
*
o_streamTitle_txt
,
*
o_streamPosition_txt
;
NSSlider
*
o_fs_timeSlider
,
*
o_fs_volumeSlider
;
}
...
...
@@ -88,8 +92,8 @@
-
(
IBAction
)
play
:(
id
)
sender
;
-
(
IBAction
)
prev
:(
id
)
sender
;
-
(
IBAction
)
next
:(
id
)
sender
;
-
(
IBAction
)
f
aster
:(
id
)
sender
;
-
(
IBAction
)
slower
:(
id
)
sender
;
-
(
IBAction
)
f
orward
:(
id
)
sender
;
-
(
IBAction
)
backward
:(
id
)
sender
;
-
(
IBAction
)
fsTimeSliderUpdate
:(
id
)
sender
;
-
(
IBAction
)
fsVolumeSliderUpdate
:(
id
)
sender
;
...
...
modules/gui/macosx/fspanel.m
View file @
08131e5e
/*****************************************************************************
* fspanel.m: MacOS X full screen panel
*****************************************************************************
* Copyright (C) 2006 the VideoLAN team
* Copyright (C) 2006
-2007
the VideoLAN team
* $Id: fspanel.m 17038 2006-10-12 18:24:34Z fkuehne $
*
* Authors: Jérôme Decoodt <djc at videolan dot org>
...
...
@@ -65,6 +65,20 @@
[
self
mouseEntered
:
NULL
];
if
(
!
isInside
)
[
self
mouseExited
:
NULL
];
/* get a notification if VLC isn't the active app anymore */
[[
NSNotificationCenter
defaultCenter
]
addObserver:
self
selector:
@selector
(
setNonActive
:)
name:
NSApplicationDidResignActiveNotification
object:
NSApp
];
/* get a notification if VLC is the active app again */
[[
NSNotificationCenter
defaultCenter
]
addObserver:
self
selector:
@selector
(
setActive
:)
name:
NSApplicationDidBecomeActiveNotification
object:
NSApp
];
}
/* Windows created with NSBorderlessWindowMask normally can't be key, but we want ours to be */
...
...
@@ -80,6 +94,8 @@
-
(
void
)
dealloc
{
[[
NSNotificationCenter
defaultCenter
]
removeObserver
:
self
];
if
(
hideAgainTimer
)
[
hideAgainTimer
release
];
[
self
setFadeTimer
:
nil
];
...
...
@@ -137,6 +153,27 @@
[[
self
contentView
]
setVolumeLevel
:
f_volumeLevel
];
}
-
(
void
)
setNonActive
:(
id
)
noData
{
b_nonActive
=
YES
;
[
self
orderOut
:
self
];
/* here's fadeOut, just without visibly fading */
b_displayed
=
NO
;
[
self
setAlphaValue
:
0
.
0
];
[
self
setFadeTimer
:
nil
];
b_fadeQueued
=
NO
;
}
-
(
void
)
setActive
:(
id
)
noData
{
if
(
[[[[
VLCMain
sharedInstance
]
getControls
]
getVoutView
]
isFullscreen
]
)
{
b_nonActive
=
NO
;
[
self
fadeIn
];
}
}
/* This routine is called repeatedly to fade in the window */
-
(
void
)
focus
:(
NSTimer
*
)
timer
{
...
...
@@ -203,7 +240,13 @@
-
(
void
)
fadeIn
{
if
(
[
self
alphaValue
]
<
1
.
0
)
/* in case that the user don't want us to appear, just return here */
if
(
!
config_GetInt
(
VLCIntf
,
"macosx-fspanel"
)
||
b_nonActive
)
return
;
[
self
orderFront
:
nil
];
if
(
[
self
alphaValue
]
<
1
.
0
||
b_displayed
!=
YES
)
{
if
(
!
[
self
fadeTimer
])
[
self
setFadeTimer
:[
NSTimer
scheduledTimerWithTimeInterval
:
0
.
05
target
:
self
selector
:
@selector
(
focus
:
)
userInfo
:
[
NSNumber
numberWithShort
:
1
]
repeats
:
YES
]];
...
...
@@ -349,9 +392,9 @@
fillColor
=
[[
NSColor
clearColor
]
retain
];
NSRect
s_rc
=
[
self
frame
];
addButton
(
o_prev
,
@"fs_skip_previous"
,
@"fs_skip_previous_highlight"
,
174
,
15
,
prev
);
addButton
(
o_
slow
,
@"fs_rewind"
,
@"fs_rewind_highlight"
,
211
,
14
,
slower
);
addButton
(
o_
bwd
,
@"fs_rewind"
,
@"fs_rewind_highlight"
,
211
,
14
,
backward
);
addButton
(
o_play
,
@"fs_play"
,
@"fs_play_highlight"
,
267
,
10
,
play
);
addButton
(
o_f
ast
,
@"fs_forward"
,
@"fs_forward_highlight"
,
313
,
14
,
faster
);
addButton
(
o_f
wd
,
@"fs_forward"
,
@"fs_forward_highlight"
,
313
,
14
,
forward
);
addButton
(
o_next
,
@"fs_skip_next"
,
@"fs_skip_next_highlight"
,
365
,
15
,
next
);
addButton
(
o_fullscreen
,
@"fs_exit_fullscreen"
,
@"fs_exit_fullscreen_hightlight"
,
507
,
13
,
windowAction
);
/*
...
...
@@ -409,9 +452,9 @@
[
o_fs_volumeSlider
release
];
[
o_prev
release
];
[
o_next
release
];
[
o_
slow
release
];
[
o_
bwd
release
];
[
o_play
release
];
[
o_f
ast
release
];
[
o_f
wd
release
];
[
o_fullscreen
release
];
[
o_streamTitle_txt
release
];
[
o_streamPosition_txt
release
];
...
...
@@ -443,8 +486,8 @@
-
(
void
)
setSeekable
:(
BOOL
)
b_seekable
{
[
o_
slow
setEnabled
:
b_seekable
];
[
o_f
ast
setEnabled
:
b_seekable
];
[
o_
bwd
setEnabled
:
b_seekable
];
[
o_f
wd
setEnabled
:
b_seekable
];
[
o_fs_timeSlider
setEnabled
:
b_seekable
];
}
...
...
@@ -458,14 +501,14 @@
[[[
VLCMain
sharedInstance
]
getControls
]
play
:
sender
];
}
-
(
IBAction
)
f
aster
:(
id
)
sender
-
(
IBAction
)
f
orward
:(
id
)
sender
{
[[[
VLCMain
sharedInstance
]
getControls
]
f
aster
:
sender
];
[[[
VLCMain
sharedInstance
]
getControls
]
f
orward
:
sender
];
}
-
(
IBAction
)
slower
:(
id
)
sender
-
(
IBAction
)
backward
:(
id
)
sender
{
[[[
VLCMain
sharedInstance
]
getControls
]
slower
:
sender
];
[[[
VLCMain
sharedInstance
]
getControls
]
backward
:
sender
];
}
-
(
IBAction
)
prev
:(
id
)
sender
...
...
modules/gui/macosx/macosx.m
View file @
08131e5e
/*****************************************************************************
* macosx.m: Mac OS X module for vlc
*****************************************************************************
* Copyright (C) 2001-200
5
the VideoLAN team
* Copyright (C) 2001-200
7
the VideoLAN team
* $Id$
*
* Authors: Colin Delacroix
<colin
@
zoy
.
org
>
...
...
@@ -78,7 +78,11 @@ void E_(CloseVideoGL) ( vlc_object_t * );
#define BACKGROUND_TEXT N_("Use as Desktop Background")
#define BACKGROUND_LONGTEXT N_("Use the video as the Desktop Background " \
"Desktop icons cannot be interacted with in this mode." )
#define FSPANEL_TEXT N_("Show Fullscreen controller")
#define FSPANEL_LONGTEXT N_("Shows a lucent controller when moving the mouse " \
"in fullscreen mode.")
#define WIZARD_OPTIONS_SAVING_TEXT N_("Remember wizard options")
#define WIZARD_OPTIONS_SAVING_LONGTEXT N_("Remember the options in the " \
"wizard during one session of VLC.")
...
...
@@ -96,6 +100,8 @@ vlc_module_begin();
add_submodule();
set_description( _("Quartz video") );
VLC_FALSE );
add_bool( "macosx-fspanel", 1, NULL, FSPANEL_TEXT, FSPANEL_LONGTEXT,
set_capability( "video output", 100 );
set_category( CAT_VIDEO);
set_subcategory( SUBCAT_VIDEO_VOUT );
...
...
modules/gui/macosx/vout.m
View file @
08131e5e
/*****************************************************************************
* vout.m: MacOS X video output module
*****************************************************************************
* Copyright (C) 2001-200
6
the VideoLAN team
* Copyright (C) 2001-200
7
the VideoLAN team
* $Id$
*
* Authors: Colin Delacroix <colin@zoy.org>
...
...
@@ -374,9 +374,9 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
val
.
b_bool
=
!
val
.
b_bool
;
var_Set
(
p_real_vout
,
"fullscreen"
,
val
);
if
(
[
self
isFullscreen
]
)
[[[[
VLCMain
sharedInstance
]
getControls
]
getFSPanel
]
orderFront
:
self
];
[[[[
VLCMain
sharedInstance
]
getControls
]
getFSPanel
]
setActive
:
nil
];
else
[[[[
VLCMain
sharedInstance
]
getControls
]
getFSPanel
]
orderOut
:
self
];
[[[[
VLCMain
sharedInstance
]
getControls
]
getFSPanel
]
setNonActive
:
nil
];
}
-
(
BOOL
)
isFullscreen
...
...
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