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
2eda8d45
Commit
2eda8d45
authored
Feb 21, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: implemented option-click on playlist button to hide the playlist (refs #6122)
parent
122e64fa
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
446 additions
and
25 deletions
+446
-25
extras/package/macosx/Resources/English.lproj/MainMenu.xib
extras/package/macosx/Resources/English.lproj/MainMenu.xib
+388
-8
modules/gui/macosx/MainWindow.h
modules/gui/macosx/MainWindow.h
+3
-0
modules/gui/macosx/MainWindow.m
modules/gui/macosx/MainWindow.m
+55
-17
No files found.
extras/package/macosx/Resources/English.lproj/MainMenu.xib
View file @
2eda8d45
This diff is collapsed.
Click to expand it.
modules/gui/macosx/MainWindow.h
View file @
2eda8d45
...
@@ -43,6 +43,7 @@
...
@@ -43,6 +43,7 @@
IBOutlet
id
o_effects_btn
;
IBOutlet
id
o_effects_btn
;
IBOutlet
id
o_fullscreen_btn
;
IBOutlet
id
o_fullscreen_btn
;
IBOutlet
id
o_search_fld
;
IBOutlet
id
o_search_fld
;
IBOutlet
id
o_topbar_view
;
IBOutlet
id
o_volume_sld
;
IBOutlet
id
o_volume_sld
;
IBOutlet
id
o_volume_track_view
;
IBOutlet
id
o_volume_track_view
;
IBOutlet
id
o_volume_down_btn
;
IBOutlet
id
o_volume_down_btn
;
...
@@ -74,6 +75,8 @@
...
@@ -74,6 +75,8 @@
BOOL
b_nativeFullscreenMode
;
BOOL
b_nativeFullscreenMode
;
BOOL
b_video_playback_enabled
;
BOOL
b_video_playback_enabled
;
BOOL
b_dropzone_active
;
BOOL
b_dropzone_active
;
BOOL
b_splitview_removed
;
int
i_lastSplitViewHeight
;
int
i_lastShownVolume
;
int
i_lastShownVolume
;
input_state_e
cachedInputState
;
input_state_e
cachedInputState
;
...
...
modules/gui/macosx/MainWindow.m
View file @
2eda8d45
...
@@ -562,8 +562,45 @@ static VLCMainWindow *_o_sharedInstance = nil;
...
@@ -562,8 +562,45 @@ static VLCMainWindow *_o_sharedInstance = nil;
[[
VLCCoreInteraction
sharedInstance
]
stop
];
[[
VLCCoreInteraction
sharedInstance
]
stop
];
}
}
-
(
void
)
resizePlaylistAfterCollapse
{
NSRect
plrect
;
plrect
=
[[
o_playlist_table
animator
]
frame
];
plrect
.
size
.
height
=
i_lastSplitViewHeight
-
22
.
0
;
// actual pl top bar height, which differs from its frame
[[
o_playlist_table
animator
]
setFrame
:
plrect
];
}
-
(
IBAction
)
togglePlaylist
:(
id
)
sender
-
(
IBAction
)
togglePlaylist
:(
id
)
sender
{
{
if
((([[
NSApp
currentEvent
]
modifierFlags
]
&
NSAlternateKeyMask
)
!=
0
)
&&
!
b_splitview_removed
)
{
NSRect
winrect
=
[
self
frame
];
i_lastSplitViewHeight
=
[
o_split_view
frame
].
size
.
height
;
winrect
.
size
.
height
=
winrect
.
size
.
height
-
i_lastSplitViewHeight
;
winrect
.
origin
.
y
=
winrect
.
origin
.
y
+
i_lastSplitViewHeight
;
[
self
setFrame
:
winrect
display
:
YES
animate
:
YES
];
[
self
performSelector
:
@selector
(
hideDropZone
)
withObject
:
nil
afterDelay
:
0
.
1
];
b_splitview_removed
=
YES
;
}
else
{
if
(
b_splitview_removed
)
{
NSRect
winrect
;
winrect
=
[
self
frame
];
winrect
.
size
.
height
=
winrect
.
size
.
height
+
i_lastSplitViewHeight
;
winrect
.
origin
.
y
=
winrect
.
origin
.
y
-
i_lastSplitViewHeight
;
[
self
setFrame
:
winrect
display
:
YES
animate
:
YES
];
[
self
performSelector
:
@selector
(
resizePlaylistAfterCollapse
)
withObject
:
nil
afterDelay
:
0
.
75
];
if
(
b_dropzone_active
)
[
self
performSelector
:
@selector
(
showDropZone
)
withObject
:
nil
afterDelay
:
0
.
3
];
b_splitview_removed
=
NO
;
return
;
}
if
(
b_dropzone_active
&&
!
[[
VLCMain
sharedInstance
]
activeVideoPlayback
])
if
(
b_dropzone_active
&&
!
[[
VLCMain
sharedInstance
]
activeVideoPlayback
])
{
{
b_dropzone_active
=
NO
;
b_dropzone_active
=
NO
;
...
@@ -590,6 +627,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
...
@@ -590,6 +627,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
[
o_playlist_table
setHidden
:
NO
];
[
o_playlist_table
setHidden
:
NO
];
[
o_video_view
setHidden
:
!
[[
VLCMain
sharedInstance
]
activeVideoPlayback
]];
[
o_video_view
setHidden
:
!
[[
VLCMain
sharedInstance
]
activeVideoPlayback
]];
}
}
}
}
}
-
(
void
)
setRepeatOne
-
(
void
)
setRepeatOne
...
...
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