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
69c5aed9
Commit
69c5aed9
authored
Oct 03, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: internalize private playlist internals
parent
6e617473
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
12 deletions
+19
-12
modules/gui/macosx/playlist.h
modules/gui/macosx/playlist.h
+0
-11
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+19
-1
No files found.
modules/gui/macosx/playlist.h
View file @
69c5aed9
...
...
@@ -57,7 +57,6 @@
IBOutlet
VLCPlaylistView
*
o_outline_view_other
;
NSMutableDictionary
*
o_outline_dict
;
playlist_item_t
*
p_current_root_item
;
}
-
(
void
)
setPlaylistRoot
:
(
playlist_item_t
*
)
root_item
;
...
...
@@ -106,16 +105,6 @@
IBOutlet
id
o_save_accessory_text
;
IBOutlet
id
o_playlist_header
;
NSImage
*
o_descendingSortingImage
;
NSImage
*
o_ascendingSortingImage
;
NSMutableArray
*
o_nodes_array
;
NSMutableArray
*
o_items_array
;
BOOL
b_selected_item_met
;
BOOL
b_isSortDescending
;
id
o_tc_sortColumn
;
}
-
(
void
)
searchfieldChanged
:(
NSNotification
*
)
o_notification
;
...
...
modules/gui/macosx/playlist.m
View file @
69c5aed9
...
...
@@ -127,6 +127,12 @@
* This class the superclass of the VLCPlaylist and VLCPlaylistWizard.
* It contains the common methods and elements of these 2 entities.
*****************************************************************************/
@interface
VLCPlaylistCommon
()
{
playlist_item_t
*
p_current_root_item
;
}
@end
@implementation
VLCPlaylistCommon
-
(
id
)
init
...
...
@@ -401,7 +407,19 @@
/*****************************************************************************
* VLCPlaylist implementation
*****************************************************************************/
@interface
VLCPlaylist
(
Internal
)
@interface
VLCPlaylist
()
{
NSImage
*
o_descendingSortingImage
;
NSImage
*
o_ascendingSortingImage
;
NSMutableArray
*
o_nodes_array
;
NSMutableArray
*
o_items_array
;
BOOL
b_selected_item_met
;
BOOL
b_isSortDescending
;
id
o_tc_sortColumn
;
}
-
(
void
)
saveTableColumns
;
@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