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
aaf7998b
Commit
aaf7998b
authored
Feb 24, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx/vlc_app: Display an indicator when waiting for playlist content.
parent
35fd46d3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
978 additions
and
821 deletions
+978
-821
projects/macosx/vlc_app/English.lproj/MainWindow.xib
projects/macosx/vlc_app/English.lproj/MainWindow.xib
+972
-818
projects/macosx/vlc_app/Sources/VLCMainWindowController.h
projects/macosx/vlc_app/Sources/VLCMainWindowController.h
+2
-1
projects/macosx/vlc_app/Sources/VLCMainWindowController.m
projects/macosx/vlc_app/Sources/VLCMainWindowController.m
+4
-2
No files found.
projects/macosx/vlc_app/English.lproj/MainWindow.xib
View file @
aaf7998b
This source diff could not be displayed because it is too large. You can
view the blob
instead.
projects/macosx/vlc_app/Sources/VLCMainWindowController.h
View file @
aaf7998b
...
...
@@ -58,7 +58,7 @@
IBOutlet
VLCBrowsableVideoView
*
videoView
;
/* Controllers */
IBOutlet
NSTreeController
*
categoriesTreeController
;
NSTreeController
*
categoriesTreeController
;
IBOutlet
VLCMediaArrayController
*
mediaArrayController
;
IBOutlet
VLCMediaPlayer
*
mediaPlayer
;
IBOutlet
VLCController
*
controller
;
/* This is a VLCController binded to the File's Owner of the nib */
...
...
@@ -74,6 +74,7 @@
@property
(
readonly
)
VLCMediaPlayer
*
mediaPlayer
;
@property
(
readonly
)
VLCBrowsableVideoView
*
videoView
;
@property
(
readonly
)
VLCMediaArrayController
*
mediaArrayController
;
@property
(
readonly
)
NSTreeController
*
categoriesTreeController
;
-
(
IBAction
)
mediaListViewItemDoubleClicked
:(
id
)
sender
;
-
(
void
)
videoViewItemClicked
:(
id
)
sender
;
...
...
projects/macosx/vlc_app/Sources/VLCMainWindowController.m
View file @
aaf7998b
...
...
@@ -35,6 +35,7 @@
@synthesize
mediaPlayer
;
@synthesize
videoView
;
@synthesize
mediaArrayController
;
@synthesize
categoriesTreeController
;
-
(
void
)
awakeFromNib
{
...
...
@@ -45,9 +46,10 @@
*/
NSAssert
(
mediaPlayer
,
@"No mediaPlayer"
);
[
self
willChangeValueForKey
:
@"categoriesTreeController"
];
categoriesTreeController
=
[[
NSTreeController
alloc
]
init
];
[
self
didChangeValueForKey
:
@"categoriesTreeController"
];
/***********************************
* CategoriesList OutlineView content
*/
...
...
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