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
da0b9bbc
Commit
da0b9bbc
authored
Nov 13, 2014
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: Get rid of old VLCTableViewCommon
parent
c13e7d4a
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
252 additions
and
308 deletions
+252
-308
modules/gui/macosx/playlist.h
modules/gui/macosx/playlist.h
+10
-19
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+242
-289
No files found.
modules/gui/macosx/playlist.h
View file @
da0b9bbc
...
...
@@ -45,27 +45,10 @@
@end
/*****************************************************************************
* VLCPlaylistCommon interface
*****************************************************************************/
@interface
VLCPlaylistCommon
:
NSObject
<
NSOutlineViewDataSource
,
NSOutlineViewDelegate
>
{
IBOutlet
VLCPlaylistView
*
o_outline_view
;
NSMutableDictionary
*
o_outline_dict
;
}
-
(
void
)
setPlaylistRoot
:
(
playlist_item_t
*
)
root_item
;
-
(
playlist_item_t
*
)
currentPlaylistRoot
;
-
(
playlist_item_t
*
)
selectedPlaylistItem
;
-
(
NSOutlineView
*
)
outlineView
;
-
(
void
)
reloadStyles
;
@end
/*****************************************************************************
* VLCPlaylistWizard interface
*****************************************************************************/
@interface
VLCPlaylistWizard
:
VLCPlaylistCommon
@interface
VLCPlaylistWizard
:
NSObject
-
(
IBAction
)
reloadOutlineView
;
@end
...
...
@@ -73,8 +56,12 @@
/*****************************************************************************
* VLCPlaylist interface
*****************************************************************************/
@interface
VLCPlaylist
:
VLCPlaylistCommon
@interface
VLCPlaylist
:
NSObject
<
NSOutlineViewDataSource
,
NSOutlineViewDelegate
>
{
IBOutlet
VLCPlaylistView
*
o_outline_view
;
NSMutableDictionary
*
o_outline_dict
;
IBOutlet
id
o_controller
;
IBOutlet
id
o_playlist_wizard
;
...
...
@@ -105,6 +92,10 @@
int
currentResumeTimeout
;
}
-
(
void
)
setPlaylistRoot
:
(
playlist_item_t
*
)
root_item
;
-
(
playlist_item_t
*
)
currentPlaylistRoot
;
-
(
void
)
reloadStyles
;
-
(
void
)
searchfieldChanged
:(
NSNotification
*
)
o_notification
;
-
(
NSMenu
*
)
menuForEvent
:(
NSEvent
*
)
o_event
;
...
...
modules/gui/macosx/playlist.m
View file @
da0b9bbc
This diff is collapsed.
Click to expand it.
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