]> git.sesse.net Git - vlc/blob - modules/gui/macosx/MainWindow.m
macosx: handle more playback menu shortcuts by core
[vlc] / modules / gui / macosx / MainWindow.m
1 /*****************************************************************************
2  * MainWindow.m: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2013 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
8  *          Jon Lech Johansen <jon-vl@nanocrew.net>
9  *          Christophe Massiot <massiot@via.ecp.fr>
10  *          Derk-Jan Hartman <hartman at videolan.org>
11  *          David Fuhrmann <david dot fuhrmann at googlemail dot com>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 #import "CompatibilityFixes.h"
29 #import "MainWindow.h"
30 #import "intf.h"
31 #import "CoreInteraction.h"
32 #import "AudioEffects.h"
33 #import "MainMenu.h"
34 #import "open.h"
35 #import "controls.h" // TODO: remove me
36 #import "playlist.h"
37 #import "SideBarItem.h"
38 #import <math.h>
39 #import <vlc_playlist.h>
40 #import <vlc_url.h>
41 #import <vlc_strings.h>
42 #import <vlc_services_discovery.h>
43
44 #import "ControlsBar.h"
45 #import "VideoView.h"
46 #import "VLCVoutWindowController.h"
47
48
49 @interface VLCMainWindow (Internal)
50 - (void)resizePlaylistAfterCollapse;
51 - (void)makeSplitViewVisible;
52 - (void)makeSplitViewHidden;
53 - (void)showPodcastControls;
54 - (void)hidePodcastControls;
55 @end
56
57
58 @implementation VLCMainWindow
59
60 @synthesize nativeFullscreenMode=b_nativeFullscreenMode;
61 @synthesize nonembedded=b_nonembedded;
62 @synthesize fsPanel=o_fspanel;
63
64 static VLCMainWindow *_o_sharedInstance = nil;
65
66 + (VLCMainWindow *)sharedInstance
67 {
68     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
69 }
70
71 #pragma mark -
72 #pragma mark Initialization
73
74 - (id)init
75 {
76     if (_o_sharedInstance) {
77         [self dealloc];
78         return _o_sharedInstance;
79     } else
80         _o_sharedInstance = [super init];
81
82     return _o_sharedInstance;
83 }
84
85 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask
86                   backing:(NSBackingStoreType)backingType defer:(BOOL)flag
87 {
88     self = [super initWithContentRect:contentRect styleMask:styleMask
89                               backing:backingType defer:flag];
90     _o_sharedInstance = self;
91
92     [[VLCMain sharedInstance] updateTogglePlaylistState];
93
94     return self;
95 }
96
97 - (BOOL)isEvent:(NSEvent *)o_event forKey:(const char *)keyString
98 {
99     char *key;
100     NSString *o_key;
101
102     key = config_GetPsz(VLCIntf, keyString);
103     o_key = [NSString stringWithFormat:@"%s", key];
104     FREENULL(key);
105
106     unsigned int i_keyModifiers = [[VLCStringUtility sharedInstance] VLCModifiersToCocoa:o_key];
107
108     NSString * characters = [o_event charactersIgnoringModifiers];
109     if ([characters length] > 0) {
110         return [[characters lowercaseString] isEqualToString: [[VLCStringUtility sharedInstance] VLCKeyToString: o_key]] &&
111                 (i_keyModifiers & NSShiftKeyMask)     == ([o_event modifierFlags] & NSShiftKeyMask) &&
112                 (i_keyModifiers & NSControlKeyMask)   == ([o_event modifierFlags] & NSControlKeyMask) &&
113                 (i_keyModifiers & NSAlternateKeyMask) == ([o_event modifierFlags] & NSAlternateKeyMask) &&
114                 (i_keyModifiers & NSCommandKeyMask)   == ([o_event modifierFlags] & NSCommandKeyMask);
115     }
116     return NO;
117 }
118
119 - (BOOL)performKeyEquivalent:(NSEvent *)o_event
120 {
121     BOOL b_force = NO;
122     // these are key events which should be handled by vlc core, but are attached to a main menu item
123     if (![self isEvent: o_event forKey: "key-vol-up"] &&
124         ![self isEvent: o_event forKey: "key-vol-down"] &&
125         ![self isEvent: o_event forKey: "key-vol-mute"] &&
126         ![self isEvent: o_event forKey: "key-prev"] &&
127         ![self isEvent: o_event forKey: "key-next"] &&
128         ![self isEvent: o_event forKey: "key-jump+short"] &&
129         ![self isEvent: o_event forKey: "key-jump-short"]) {
130         /* We indeed want to prioritize some Cocoa key equivalent against libvlc,
131          so we perform the menu equivalent now. */
132         if ([[NSApp mainMenu] performKeyEquivalent:o_event])
133             return TRUE;
134     }
135     else
136         b_force = YES;
137
138     return [[VLCMain sharedInstance] hasDefinedShortcutKey:o_event force:b_force] ||
139            [(VLCControls *)[[VLCMain sharedInstance] controls] keyEvent:o_event];
140 }
141
142 - (void)dealloc
143 {
144     if (b_dark_interface)
145         [o_color_backdrop release];
146
147     [[NSNotificationCenter defaultCenter] removeObserver: self];
148     [o_sidebaritems release];
149
150     [super dealloc];
151 }
152
153 - (void)awakeFromNib
154 {
155     // sets lion fullscreen behaviour
156     [super awakeFromNib];
157
158     BOOL b_splitviewShouldBeHidden = NO;
159
160     /* setup the styled interface */
161     b_nativeFullscreenMode = NO;
162 #ifdef MAC_OS_X_VERSION_10_7
163     if (!OSX_SNOW_LEOPARD)
164         b_nativeFullscreenMode = var_InheritBool(VLCIntf, "macosx-nativefullscreenmode");
165 #endif
166     [self useOptimizedDrawing: YES];
167
168     [[o_search_fld cell] setPlaceholderString: _NS("Search")];
169     [[o_search_fld cell] accessibilitySetOverrideValue:_NS("Enter a term to search the playlist. Results will be selected in the table.") forAttribute:NSAccessibilityDescriptionAttribute];
170
171     [o_dropzone_btn setTitle: _NS("Open media...")];
172     [[o_dropzone_btn cell] accessibilitySetOverrideValue:_NS("Click to open an advanced dialog to select the media to play. You can also drop files here to play.") forAttribute:NSAccessibilityDescriptionAttribute];
173     [o_dropzone_lbl setStringValue: _NS("Drop media here")];
174
175     [o_podcast_add_btn setTitle: _NS("Subscribe")];
176     [o_podcast_remove_btn setTitle: _NS("Unsubscribe")];
177     [o_podcast_subscribe_title_lbl setStringValue: _NS("Subscribe to a podcast")];
178     [o_podcast_subscribe_subtitle_lbl setStringValue: _NS("Enter URL of the podcast to subscribe to:")];
179     [o_podcast_subscribe_cancel_btn setTitle: _NS("Cancel")];
180     [o_podcast_subscribe_ok_btn setTitle: _NS("Subscribe")];
181     [o_podcast_unsubscribe_title_lbl setStringValue: _NS("Unsubscribe from a podcast")];
182     [o_podcast_unsubscribe_subtitle_lbl setStringValue: _NS("Select the podcast you would like to unsubscribe from:")];
183     [o_podcast_unsubscribe_ok_btn setTitle: _NS("Unsubscribe")];
184     [o_podcast_unsubscribe_cancel_btn setTitle: _NS("Cancel")];
185
186     /* interface builder action */
187     float f_threshold_height = f_min_video_height + [[o_controls_bar bottomBarView] frame].size.height;
188     if (b_dark_interface)
189         f_threshold_height += [o_titlebar_view frame].size.height;
190     if ([[self contentView] frame].size.height < f_threshold_height)
191         b_splitviewShouldBeHidden = YES;
192
193     [self setDelegate: self];
194     [self setExcludedFromWindowsMenu: YES];
195     [self setAcceptsMouseMovedEvents: YES];
196     // Set that here as IB seems to be buggy
197     if (b_dark_interface)
198         [self setContentMinSize:NSMakeSize(604., 288. + [o_titlebar_view frame].size.height)];
199     else
200         [self setContentMinSize:NSMakeSize(604., 288.)];
201
202     [self setTitle: _NS("VLC media player")];
203
204     b_dropzone_active = YES;
205     [o_dropzone_view setFrame: [o_playlist_table frame]];
206     [o_left_split_view setFrame: [o_sidebar_view frame]];
207
208     if (!OSX_SNOW_LEOPARD) {
209         /* the default small size of the search field is slightly different on Lion, let's work-around that */
210         NSRect frame;
211         frame = [o_search_fld frame];
212         frame.origin.y = frame.origin.y + 2.0;
213         frame.size.height = frame.size.height - 1.0;
214         [o_search_fld setFrame: frame];
215     }
216
217     /* create the sidebar */
218     o_sidebaritems = [[NSMutableArray alloc] init];
219     SideBarItem *libraryItem = [SideBarItem itemWithTitle:_NS("LIBRARY") identifier:@"library"];
220     SideBarItem *playlistItem = [SideBarItem itemWithTitle:_NS("Playlist") identifier:@"playlist"];
221     [playlistItem setIcon: [NSImage imageNamed:@"sidebar-playlist"]];
222     SideBarItem *medialibraryItem = [SideBarItem itemWithTitle:_NS("Media Library") identifier:@"medialibrary"];
223     [medialibraryItem setIcon: [NSImage imageNamed:@"sidebar-playlist"]];
224     SideBarItem *mycompItem = [SideBarItem itemWithTitle:_NS("MY COMPUTER") identifier:@"mycomputer"];
225     SideBarItem *devicesItem = [SideBarItem itemWithTitle:_NS("DEVICES") identifier:@"devices"];
226     SideBarItem *lanItem = [SideBarItem itemWithTitle:_NS("LOCAL NETWORK") identifier:@"localnetwork"];
227     SideBarItem *internetItem = [SideBarItem itemWithTitle:_NS("INTERNET") identifier:@"internet"];
228
229     /* SD subnodes, inspired by the Qt4 intf */
230     char **ppsz_longnames;
231     int *p_categories;
232     char **ppsz_names = vlc_sd_GetNames(pl_Get(VLCIntf), &ppsz_longnames, &p_categories);
233     if (!ppsz_names)
234         msg_Err(VLCIntf, "no sd item found"); //TODO
235     char **ppsz_name = ppsz_names, **ppsz_longname = ppsz_longnames;
236     int *p_category = p_categories;
237     NSMutableArray *internetItems = [[NSMutableArray alloc] init];
238     NSMutableArray *devicesItems = [[NSMutableArray alloc] init];
239     NSMutableArray *lanItems = [[NSMutableArray alloc] init];
240     NSMutableArray *mycompItems = [[NSMutableArray alloc] init];
241     NSString *o_identifier;
242     for (; *ppsz_name; ppsz_name++, ppsz_longname++, p_category++) {
243         o_identifier = [NSString stringWithCString: *ppsz_name encoding: NSUTF8StringEncoding];
244         switch (*p_category) {
245             case SD_CAT_INTERNET:
246                     [internetItems addObject: [SideBarItem itemWithTitle: _NS(*ppsz_longname) identifier: o_identifier]];
247                     if (!strncmp(*ppsz_name, "podcast", 7))
248                         [[internetItems lastObject] setIcon: [NSImage imageNamed:@"sidebar-podcast"]];
249                     else
250                         [[internetItems lastObject] setIcon: [NSImage imageNamed:@"NSApplicationIcon"]];
251                     [[internetItems lastObject] setSdtype: SD_CAT_INTERNET];
252                     [[internetItems lastObject] setUntranslatedTitle: [NSString stringWithUTF8String: *ppsz_longname]];
253                 break;
254             case SD_CAT_DEVICES:
255                     [devicesItems addObject: [SideBarItem itemWithTitle: _NS(*ppsz_longname) identifier: o_identifier]];
256                     [[devicesItems lastObject] setIcon: [NSImage imageNamed:@"NSApplicationIcon"]];
257                     [[devicesItems lastObject] setSdtype: SD_CAT_DEVICES];
258                     [[devicesItems lastObject] setUntranslatedTitle: [NSString stringWithUTF8String: *ppsz_longname]];
259                 break;
260             case SD_CAT_LAN:
261                     [lanItems addObject: [SideBarItem itemWithTitle: _NS(*ppsz_longname) identifier: o_identifier]];
262                     [[lanItems lastObject] setIcon: [NSImage imageNamed:@"sidebar-local"]];
263                     [[lanItems lastObject] setSdtype: SD_CAT_LAN];
264                     [[lanItems lastObject] setUntranslatedTitle: [NSString stringWithUTF8String: *ppsz_longname]];
265                 break;
266             case SD_CAT_MYCOMPUTER:
267                     [mycompItems addObject: [SideBarItem itemWithTitle: _NS(*ppsz_longname) identifier: o_identifier]];
268                     if (!strncmp(*ppsz_name, "video_dir", 9))
269                         [[mycompItems lastObject] setIcon: [NSImage imageNamed:@"sidebar-movie"]];
270                     else if (!strncmp(*ppsz_name, "audio_dir", 9))
271                         [[mycompItems lastObject] setIcon: [NSImage imageNamed:@"sidebar-music"]];
272                     else if (!strncmp(*ppsz_name, "picture_dir", 11))
273                         [[mycompItems lastObject] setIcon: [NSImage imageNamed:@"sidebar-pictures"]];
274                     else
275                         [[mycompItems lastObject] setIcon: [NSImage imageNamed:@"NSApplicationIcon"]];
276                     [[mycompItems lastObject] setUntranslatedTitle: [NSString stringWithUTF8String: *ppsz_longname]];
277                     [[mycompItems lastObject] setSdtype: SD_CAT_MYCOMPUTER];
278                 break;
279             default:
280                 msg_Warn(VLCIntf, "unknown SD type found, skipping (%s)", *ppsz_name);
281                 break;
282         }
283
284         free(*ppsz_name);
285         free(*ppsz_longname);
286     }
287     [mycompItem setChildren: [NSArray arrayWithArray: mycompItems]];
288     [devicesItem setChildren: [NSArray arrayWithArray: devicesItems]];
289     [lanItem setChildren: [NSArray arrayWithArray: lanItems]];
290     [internetItem setChildren: [NSArray arrayWithArray: internetItems]];
291     [mycompItems release];
292     [devicesItems release];
293     [lanItems release];
294     [internetItems release];
295     free(ppsz_names);
296     free(ppsz_longnames);
297     free(p_categories);
298
299     [libraryItem setChildren: [NSArray arrayWithObjects: playlistItem, medialibraryItem, nil]];
300     [o_sidebaritems addObject: libraryItem];
301     if ([mycompItem hasChildren])
302         [o_sidebaritems addObject: mycompItem];
303     if ([devicesItem hasChildren])
304         [o_sidebaritems addObject: devicesItem];
305     if ([lanItem hasChildren])
306         [o_sidebaritems addObject: lanItem];
307     if ([internetItem hasChildren])
308         [o_sidebaritems addObject: internetItem];
309
310     [o_sidebar_view reloadData];
311     [o_sidebar_view selectRowIndexes:[NSIndexSet indexSetWithIndex:1] byExtendingSelection:NO];
312     [o_sidebar_view setDropItem:playlistItem dropChildIndex:NSOutlineViewDropOnItemIndex];
313     [o_sidebar_view registerForDraggedTypes:[NSArray arrayWithObjects: NSFilenamesPboardType, @"VLCPlaylistItemPboardType", nil]];
314
315     [o_sidebar_view setAutosaveName:@"mainwindow-sidebar"];
316     [(PXSourceList *)o_sidebar_view setDataSource:self];
317     [o_sidebar_view setDelegate:self];
318     [o_sidebar_view setAutosaveExpandedItems:YES];
319
320     [o_sidebar_view expandItem: libraryItem expandChildren: YES];
321
322     /* make sure we display the desired default appearance when VLC launches for the first time */
323     NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
324     if (![defaults objectForKey:@"VLCFirstRun"]) {
325         [defaults setObject:[NSDate date] forKey:@"VLCFirstRun"];
326
327         NSUInteger i_sidebaritem_count = [o_sidebaritems count];
328         for (NSUInteger x = 0; x < i_sidebaritem_count; x++)
329             [o_sidebar_view expandItem: [o_sidebaritems objectAtIndex: x] expandChildren: YES];
330
331         [o_fspanel center];
332     }
333
334     if (b_dark_interface) {
335         [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(windowResizedOrMoved:) name: NSWindowDidResizeNotification object: nil];
336         [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(windowResizedOrMoved:) name: NSWindowDidMoveNotification object: nil];
337
338         [self setBackgroundColor: [NSColor clearColor]];
339         [self setOpaque: NO];
340         [self display];
341         [self setHasShadow:NO];
342         [self setHasShadow:YES];
343
344         NSRect winrect = [self frame];
345         CGFloat f_titleBarHeight = [o_titlebar_view frame].size.height;
346
347         [o_titlebar_view setFrame: NSMakeRect(0, winrect.size.height - f_titleBarHeight,
348                                               winrect.size.width, f_titleBarHeight)];
349         [[self contentView] addSubview: o_titlebar_view positioned: NSWindowAbove relativeTo: o_split_view];
350
351         if (winrect.size.height > 100) {
352             [self setFrame: winrect display:YES animate:YES];
353             previousSavedFrame = winrect;
354         }
355
356         winrect = [o_split_view frame];
357         winrect.size.height = winrect.size.height - f_titleBarHeight;
358         [o_split_view setFrame: winrect];
359         [o_video_view setFrame: winrect];
360
361         o_color_backdrop = [[VLCColorView alloc] initWithFrame: [o_split_view frame]];
362         [[self contentView] addSubview: o_color_backdrop positioned: NSWindowBelow relativeTo: o_split_view];
363         [o_color_backdrop setAutoresizingMask:NSViewHeightSizable | NSViewWidthSizable];
364     } else {
365         [o_video_view setFrame: [o_split_view frame]];
366         [o_playlist_table setBorderType: NSNoBorder];
367         [o_sidebar_scrollview setBorderType: NSNoBorder];
368     }
369
370     [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(someWindowWillClose:) name: NSWindowWillCloseNotification object: nil];
371     [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(someWindowWillMiniaturize:) name: NSWindowWillMiniaturizeNotification object:nil];
372     [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(applicationWillTerminate:) name: NSApplicationWillTerminateNotification object: nil];
373     [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(mainSplitViewDidResizeSubviews:) name: NSSplitViewDidResizeSubviewsNotification object:o_split_view];
374
375     if (b_splitviewShouldBeHidden) {
376         [self hideSplitView];
377         i_lastSplitViewHeight = 300;
378     }
379
380     /* sanity check for the window size */
381     NSRect frame = [self frame];
382     NSSize screenSize = [[self screen] frame].size;
383     if (screenSize.width <= frame.size.width || screenSize.height <= frame.size.height) {
384         nativeVideoSize = screenSize;
385         [self resizeWindow];
386     }
387
388     /* update fs button to reflect state for next startup */
389     if (var_InheritBool(pl_Get(VLCIntf), "fullscreen"))
390         [o_controls_bar setFullscreenState:YES];
391
392     /* restore split view */
393     i_lastLeftSplitViewWidth = 200;
394     /* trick NSSplitView implementation, which pretends to know better than us */
395     if (!config_GetInt(VLCIntf, "macosx-show-sidebar"))
396         [self performSelector:@selector(toggleLeftSubSplitView) withObject:nil afterDelay:0.05];
397 }
398
399 #pragma mark -
400 #pragma mark appearance management
401
402 - (VLCMainWindowControlsBar *)controlsBar;
403 {
404     return (VLCMainWindowControlsBar *)o_controls_bar;
405 }
406
407 - (void)resizePlaylistAfterCollapse
408 {
409     NSRect plrect;
410     plrect = [o_playlist_table frame];
411     plrect.size.height = i_lastSplitViewHeight - 20.0; // actual pl top bar height, which differs from its frame
412     [[o_playlist_table animator] setFrame: plrect];
413
414     NSRect rightSplitRect;
415     rightSplitRect = [o_right_split_view frame];
416     plrect = [o_dropzone_box frame];
417     plrect.origin.x = (rightSplitRect.size.width - plrect.size.width) / 2;
418     plrect.origin.y = (rightSplitRect.size.height - plrect.size.height) / 2;
419     [[o_dropzone_box animator] setFrame: plrect];
420 }
421
422 - (void)makeSplitViewVisible
423 {
424     if (b_dark_interface)
425         [self setContentMinSize: NSMakeSize(604., 288. + [o_titlebar_view frame].size.height)];
426     else
427         [self setContentMinSize: NSMakeSize(604., 288.)];
428
429     NSRect old_frame = [self frame];
430     float newHeight = [self minSize].height;
431     if (old_frame.size.height < newHeight) {
432         NSRect new_frame = old_frame;
433         new_frame.origin.y = old_frame.origin.y + old_frame.size.height - newHeight;
434         new_frame.size.height = newHeight;
435
436         [[self animator] setFrame: new_frame display: YES animate: YES];
437     }
438
439     [o_video_view setHidden: YES];
440     [o_split_view setHidden: NO];
441     [self makeFirstResponder: nil];
442
443 }
444
445 - (void)makeSplitViewHidden
446 {
447     if (b_dark_interface)
448         [self setContentMinSize: NSMakeSize(604., f_min_video_height + [o_titlebar_view frame].size.height)];
449     else
450         [self setContentMinSize: NSMakeSize(604., f_min_video_height)];
451
452     [o_split_view setHidden: YES];
453     [o_video_view setHidden: NO];
454
455     if ([[o_video_view subviews] count] > 0)
456         [self makeFirstResponder: [[o_video_view subviews] objectAtIndex:0]];
457 }
458
459 // only exception for an controls bar button action
460 - (IBAction)togglePlaylist:(id)sender
461 {
462     if (![self isVisible] && sender != nil) {
463         [self makeKeyAndOrderFront: sender];
464         return;
465     }
466
467     BOOL b_activeVideo = [[VLCMain sharedInstance] activeVideoPlayback];
468     BOOL b_restored = NO;
469
470     // TODO: implement toggle playlist in this situation (triggerd via menu item).
471     // but for now we block this case, to avoid displaying only the half
472     if (b_nativeFullscreenMode && b_fullscreen && b_activeVideo && sender != nil)
473         return;
474
475     if (b_dropzone_active && ([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask) != 0) {
476         [self hideDropZone];
477         return;
478     }
479
480     if (!(b_nativeFullscreenMode && b_fullscreen) && !b_splitview_removed && ((([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask) != 0 && b_activeVideo)
481                                                                               || (b_nonembedded && sender != nil)
482                                                                               || (!b_activeVideo && sender != nil)
483                                                                               || b_minimized_view))
484         [self hideSplitView];
485     else {
486         if (b_splitview_removed) {
487             if (!b_nonembedded || (sender != nil && b_nonembedded))
488                 [self showSplitView];
489
490             if (sender == nil)
491                 b_minimized_view = YES;
492             else
493                 b_minimized_view = NO;
494
495             if (b_activeVideo)
496                 b_restored = YES;
497         }
498
499         if (!b_nonembedded) {
500             if (([o_video_view isHidden] && b_activeVideo) || b_restored || (b_activeVideo && sender == nil))
501                 [self makeSplitViewHidden];
502             else
503                 [self makeSplitViewVisible];
504         } else {
505             [o_split_view setHidden: NO];
506             [o_playlist_table setHidden: NO];
507             [o_video_view setHidden: YES];
508         }
509     }
510 }
511
512 - (IBAction)dropzoneButtonAction:(id)sender
513 {
514     [[[VLCMain sharedInstance] open] openFileGeneric];
515 }
516
517 #pragma mark -
518 #pragma mark overwritten default functionality
519
520 - (void)windowResizedOrMoved:(NSNotification *)notification
521 {
522     [self saveFrameUsingName: [self frameAutosaveName]];
523 }
524
525 - (void)applicationWillTerminate:(NSNotification *)notification
526 {
527     config_PutInt(VLCIntf, "macosx-show-sidebar", ![o_split_view isSubviewCollapsed:o_left_split_view]);
528
529     [self saveFrameUsingName: [self frameAutosaveName]];
530 }
531
532
533 - (void)someWindowWillClose:(NSNotification *)notification
534 {
535     id obj = [notification object];
536
537     // hasActiveVideo is defined for VLCVideoWindowCommon and subclasses
538     if ([obj respondsToSelector:@selector(hasActiveVideo)] && [obj hasActiveVideo]) {
539         if ([[VLCMain sharedInstance] activeVideoPlayback])
540             [[VLCCoreInteraction sharedInstance] stop];
541     }
542 }
543
544 - (void)someWindowWillMiniaturize:(NSNotification *)notification
545 {
546     if (config_GetInt(VLCIntf, "macosx-pause-minimized")) {
547         id obj = [notification object];
548
549         if ([obj class] == [VLCVideoWindowCommon class] || [obj class] == [VLCDetachedVideoWindow class] || ([obj class] == [VLCMainWindow class] && !b_nonembedded)) {
550             if ([[VLCMain sharedInstance] activeVideoPlayback])
551                 [[VLCCoreInteraction sharedInstance] pause];
552         }
553     }
554 }
555
556 #pragma mark -
557 #pragma mark Update interface and respond to foreign events
558 - (void)showDropZone
559 {
560     b_dropzone_active = YES;
561     [o_right_split_view addSubview: o_dropzone_view positioned:NSWindowAbove relativeTo:o_playlist_table];
562     [o_dropzone_view setFrame: [o_playlist_table frame]];
563     [[o_playlist_table animator] setHidden:YES];
564 }
565
566 - (void)hideDropZone
567 {
568     b_dropzone_active = NO;
569     [o_dropzone_view removeFromSuperview];
570     [[o_playlist_table animator] setHidden: NO];
571 }
572
573 - (void)hideSplitView
574 {
575     NSRect winrect = [self frame];
576     i_lastSplitViewHeight = [o_split_view frame].size.height;
577     winrect.size.height = winrect.size.height - i_lastSplitViewHeight;
578     winrect.origin.y = winrect.origin.y + i_lastSplitViewHeight;
579     [self setFrame: winrect display: YES animate: YES];
580     [self performSelector:@selector(hideDropZone) withObject:nil afterDelay:0.1];
581     if (b_dark_interface) {
582         [self setContentMinSize: NSMakeSize(604., [[o_controls_bar bottomBarView] frame].size.height + [o_titlebar_view frame].size.height)];
583         [self setContentMaxSize: NSMakeSize(FLT_MAX, [[o_controls_bar bottomBarView] frame].size.height + [o_titlebar_view frame].size.height)];
584     } else {
585         [self setContentMinSize: NSMakeSize(604., [[o_controls_bar bottomBarView] frame].size.height)];
586         [self setContentMaxSize: NSMakeSize(FLT_MAX, [[o_controls_bar bottomBarView] frame].size.height)];
587     }
588
589     b_splitview_removed = YES;
590 }
591
592 - (void)showSplitView
593 {
594     [self updateWindow];
595     if (b_dark_interface)
596         [self setContentMinSize:NSMakeSize(604., 288. + [o_titlebar_view frame].size.height)];
597     else
598         [self setContentMinSize:NSMakeSize(604., 288.)];
599     [self setContentMaxSize: NSMakeSize(FLT_MAX, FLT_MAX)];
600
601     NSRect winrect;
602     winrect = [self frame];
603     winrect.size.height = winrect.size.height + i_lastSplitViewHeight;
604     winrect.origin.y = winrect.origin.y - i_lastSplitViewHeight;
605     [self setFrame: winrect display: YES animate: YES];
606
607     [self performSelector:@selector(resizePlaylistAfterCollapse) withObject: nil afterDelay:0.75];
608
609     b_splitview_removed = NO;
610 }
611
612 - (void)updateTimeSlider
613 {
614     [o_controls_bar updateTimeSlider];
615     [o_fspanel updatePositionAndTime];
616
617     [[[VLCMain sharedInstance] voutController] updateWindowsControlsBarWithSelector:@selector(updateTimeSlider)];
618 }
619
620 - (void)updateName
621 {
622     input_thread_t * p_input;
623     p_input = pl_CurrentInput(VLCIntf);
624     if (p_input) {
625         NSString *aString;
626         char *format = var_InheritString(VLCIntf, "input-title-format");
627         char *formated = str_format_meta(pl_Get(VLCIntf), format);
628         free(format);
629         aString = [NSString stringWithUTF8String:formated];
630         free(formated);
631
632         char *uri = input_item_GetURI(input_GetItem(p_input));
633
634         NSURL * o_url = [NSURL URLWithString: [NSString stringWithUTF8String: uri]];
635         if ([o_url isFileURL]) {
636             [self setRepresentedURL: o_url];
637             [[[VLCMain sharedInstance] voutController] updateWindowsUsingBlock:^(VLCVideoWindowCommon *o_window) {
638                 [o_window setRepresentedURL:o_url];
639             }];
640         } else {
641             [self setRepresentedURL: nil];
642             [[[VLCMain sharedInstance] voutController] updateWindowsUsingBlock:^(VLCVideoWindowCommon *o_window) {
643                 [o_window setRepresentedURL:nil];
644             }];
645         }
646         free(uri);
647
648         if ([aString isEqualToString:@""]) {
649             if ([o_url isFileURL])
650                 aString = [[NSFileManager defaultManager] displayNameAtPath: [o_url path]];
651             else
652                 aString = [o_url absoluteString];
653         }
654
655         if ([aString length] > 0) {
656             [self setTitle: aString];
657             [[[VLCMain sharedInstance] voutController] updateWindowsUsingBlock:^(VLCVideoWindowCommon *o_window) {
658                 [o_window setTitle:aString];
659             }];
660
661             [o_fspanel setStreamTitle: aString];
662         } else {
663            [self setTitle: _NS("VLC media player")];
664             [self setRepresentedURL: nil];
665         }
666
667         vlc_object_release(p_input);
668     } else {
669         [self setTitle: _NS("VLC media player")];
670         [self setRepresentedURL: nil];
671     }
672 }
673
674 - (void)updateWindow
675 {
676     [o_controls_bar updateControls];
677     [[[VLCMain sharedInstance] voutController] updateWindowsControlsBarWithSelector:@selector(updateControls)];
678
679     bool b_seekable = false;
680
681     playlist_t * p_playlist = pl_Get(VLCIntf);
682     input_thread_t * p_input = playlist_CurrentInput(p_playlist);
683     if (p_input) {
684         /* seekable streams */
685         b_seekable = var_GetBool(p_input, "can-seek");
686
687         vlc_object_release(p_input);
688     }
689
690     [self updateTimeSlider];
691     if ([o_fspanel respondsToSelector:@selector(setSeekable:)])
692         [o_fspanel setSeekable: b_seekable];
693
694     PL_LOCK;
695     if ([[[VLCMain sharedInstance] playlist] currentPlaylistRoot] != p_playlist->p_local_category || p_playlist->p_local_category->i_children > 0)
696         [self hideDropZone];
697     else
698         [self showDropZone];
699     PL_UNLOCK;
700     [o_sidebar_view setNeedsDisplay:YES];
701 }
702
703 - (void)setPause
704 {
705     [o_controls_bar setPause];
706     [o_fspanel setPause];
707
708     [[[VLCMain sharedInstance] voutController] updateWindowsControlsBarWithSelector:@selector(setPause)];
709 }
710
711 - (void)setPlay
712 {
713     [o_controls_bar setPlay];
714     [o_fspanel setPlay];
715
716     [[[VLCMain sharedInstance] voutController] updateWindowsControlsBarWithSelector:@selector(setPlay)];
717
718 }
719
720 - (void)updateVolumeSlider
721 {
722     [[self controlsBar] updateVolumeSlider];
723     [o_fspanel setVolumeLevel: [[VLCCoreInteraction sharedInstance] volume]];
724 }
725
726 #pragma mark -
727 #pragma mark Video Output handling
728
729 - (void)setVideoplayEnabled
730 {
731     BOOL b_videoPlayback = [[VLCMain sharedInstance] activeVideoPlayback];
732
733     if (b_videoPlayback) {
734         if (!b_fullscreen)
735             frameBeforePlayback = [self frame];
736     } else {
737         if (!b_nonembedded && !b_fullscreen && frameBeforePlayback.size.width > 0 && frameBeforePlayback.size.height > 0)
738             [[self animator] setFrame:frameBeforePlayback display:YES];
739
740         // update fs button to reflect state for next startup
741         if (var_InheritBool(pl_Get(VLCIntf), "fullscreen")) {
742             [o_controls_bar setFullscreenState:YES];
743         }
744
745         [self makeFirstResponder: nil];
746         [[[VLCMain sharedInstance] voutController] updateWindowLevelForHelperWindows: NSNormalWindowLevel];
747
748         // restore alpha value to 1 for the case that macosx-opaqueness is set to < 1
749         [self setAlphaValue:1.0];
750     }
751
752     if (b_nativeFullscreenMode) {
753         if ([self hasActiveVideo] && [self fullscreen]) {
754             [[o_controls_bar bottomBarView] setHidden: b_videoPlayback];
755             [o_fspanel setActive: nil];
756         } else {
757             [[o_controls_bar bottomBarView] setHidden: NO];
758             [o_fspanel setNonActive: nil];
759         }
760     }
761 }
762
763 #pragma mark -
764 #pragma mark Lion native fullscreen handling
765 - (void)windowWillEnterFullScreen:(NSNotification *)notification
766 {
767     [super windowWillEnterFullScreen:notification];
768
769     // update split view frame after removing title bar
770     [o_split_view setFrame: [o_video_view frame]];
771 }
772
773 - (void)windowWillExitFullScreen:(NSNotification *)notification
774 {
775     [super windowWillExitFullScreen: notification];
776
777     // update split view frame after readding title bar
778     [o_split_view setFrame: [o_video_view frame]];
779 }
780 #pragma mark -
781 #pragma mark Fullscreen support
782
783 - (void)showFullscreenController
784 {
785
786     id currentWindow = [NSApp keyWindow];
787     if ([currentWindow respondsToSelector:@selector(hasActiveVideo)] && [currentWindow hasActiveVideo]) {
788         if ([currentWindow respondsToSelector:@selector(fullscreen)] && [currentWindow fullscreen]) {
789
790             if ([[VLCMain sharedInstance] activeVideoPlayback])
791                 [o_fspanel fadeIn];
792         }
793
794     }
795
796
797 }
798
799 - (void)makeKeyAndOrderFront: (id)sender
800 {
801     /* Hack
802      * when we exit fullscreen and fade out, we may endup in
803      * having a window that is faded. We can't have it fade in unless we
804      * animate again. */
805
806     if (!b_window_is_invisible) {
807         /* Make sure we don't do it too much */
808         [super makeKeyAndOrderFront: sender];
809         return;
810     }
811
812     [super setAlphaValue:0.0f];
813     [super makeKeyAndOrderFront: sender];
814
815     NSMutableDictionary * dict = [[NSMutableDictionary alloc] initWithCapacity:2];
816     [dict setObject:self forKey:NSViewAnimationTargetKey];
817     [dict setObject:NSViewAnimationFadeInEffect forKey:NSViewAnimationEffectKey];
818
819     o_makekey_anim = [[NSViewAnimation alloc] initWithViewAnimations:[NSArray arrayWithObject:dict]];
820     [dict release];
821
822     [o_makekey_anim setAnimationBlockingMode: NSAnimationNonblocking];
823     [o_makekey_anim setDuration: 0.1];
824     [o_makekey_anim setFrameRate: 30];
825     [o_makekey_anim setDelegate: self];
826
827     [o_makekey_anim startAnimation];
828     b_window_is_invisible = NO;
829
830     /* fullscreenAnimation will be unlocked when animation ends */
831 }
832
833 #pragma mark -
834 #pragma mark split view delegate
835 - (CGFloat)splitView:(NSSplitView *)splitView constrainMaxCoordinate:(CGFloat)proposedMax ofSubviewAt:(NSInteger)dividerIndex
836 {
837     if (dividerIndex == 0)
838         return 300.;
839     else
840         return proposedMax;
841 }
842
843 - (CGFloat)splitView:(NSSplitView *)splitView constrainMinCoordinate:(CGFloat)proposedMin ofSubviewAt:(NSInteger)dividerIndex
844 {
845     if (dividerIndex == 0)
846         return 100.;
847     else
848         return proposedMin;
849 }
850
851 - (BOOL)splitView:(NSSplitView *)splitView canCollapseSubview:(NSView *)subview
852 {
853     return ([subview isEqual:o_left_split_view]);
854 }
855
856 - (BOOL)splitView:(NSSplitView *)splitView shouldAdjustSizeOfSubview:(NSView *)subview
857 {
858     if ([subview isEqual:o_left_split_view])
859         return NO;
860     return YES;
861 }
862
863 - (void)mainSplitViewDidResizeSubviews:(id)object
864 {
865     i_lastLeftSplitViewWidth = [o_left_split_view frame].size.width;
866     config_PutInt(VLCIntf, "macosx-show-sidebar", ![o_split_view isSubviewCollapsed:o_left_split_view]);
867     [[[VLCMain sharedInstance] mainMenu] updateSidebarMenuItem];
868 }
869
870 - (void)toggleLeftSubSplitView
871 {
872     [o_split_view adjustSubviews];
873     if ([o_split_view isSubviewCollapsed:o_left_split_view])
874         [o_split_view setPosition:i_lastLeftSplitViewWidth ofDividerAtIndex:0];
875     else
876         [o_split_view setPosition:[o_split_view minPossiblePositionOfDividerAtIndex:0] ofDividerAtIndex:0];
877     [[[VLCMain sharedInstance] mainMenu] updateSidebarMenuItem];
878 }
879
880 #pragma mark -
881 #pragma mark Side Bar Data handling
882 /* taken under BSD-new from the PXSourceList sample project, adapted for VLC */
883 - (NSUInteger)sourceList:(PXSourceList*)sourceList numberOfChildrenOfItem:(id)item
884 {
885     //Works the same way as the NSOutlineView data source: `nil` means a parent item
886     if (item==nil)
887         return [o_sidebaritems count];
888     else
889         return [[item children] count];
890 }
891
892
893 - (id)sourceList:(PXSourceList*)aSourceList child:(NSUInteger)index ofItem:(id)item
894 {
895     //Works the same way as the NSOutlineView data source: `nil` means a parent item
896     if (item==nil)
897         return [o_sidebaritems objectAtIndex:index];
898     else
899         return [[item children] objectAtIndex:index];
900 }
901
902
903 - (id)sourceList:(PXSourceList*)aSourceList objectValueForItem:(id)item
904 {
905     return [item title];
906 }
907
908 - (void)sourceList:(PXSourceList*)aSourceList setObjectValue:(id)object forItem:(id)item
909 {
910     [item setTitle:object];
911 }
912
913 - (BOOL)sourceList:(PXSourceList*)aSourceList isItemExpandable:(id)item
914 {
915     return [item hasChildren];
916 }
917
918
919 - (BOOL)sourceList:(PXSourceList*)aSourceList itemHasBadge:(id)item
920 {
921     if ([[item identifier] isEqualToString: @"playlist"] || [[item identifier] isEqualToString: @"medialibrary"])
922         return YES;
923
924     return [item hasBadge];
925 }
926
927
928 - (NSInteger)sourceList:(PXSourceList*)aSourceList badgeValueForItem:(id)item
929 {
930     playlist_t * p_playlist = pl_Get(VLCIntf);
931     NSInteger i_playlist_size;
932
933     if ([[item identifier] isEqualToString: @"playlist"]) {
934         PL_LOCK;
935         i_playlist_size = p_playlist->p_local_category->i_children;
936         PL_UNLOCK;
937
938         return i_playlist_size;
939     }
940     if ([[item identifier] isEqualToString: @"medialibrary"]) {
941         PL_LOCK;
942         i_playlist_size = p_playlist->p_ml_category->i_children;
943         PL_UNLOCK;
944
945         return i_playlist_size;
946     }
947
948     return [item badgeValue];
949 }
950
951
952 - (BOOL)sourceList:(PXSourceList*)aSourceList itemHasIcon:(id)item
953 {
954     return [item hasIcon];
955 }
956
957
958 - (NSImage*)sourceList:(PXSourceList*)aSourceList iconForItem:(id)item
959 {
960     return [item icon];
961 }
962
963 - (NSMenu*)sourceList:(PXSourceList*)aSourceList menuForEvent:(NSEvent*)theEvent item:(id)item
964 {
965     if ([theEvent type] == NSRightMouseDown || ([theEvent type] == NSLeftMouseDown && ([theEvent modifierFlags] & NSControlKeyMask) == NSControlKeyMask)) {
966         if (item != nil) {
967             NSMenu * m;
968             if ([item sdtype] > 0)
969             {
970                 m = [[NSMenu alloc] init];
971                 playlist_t * p_playlist = pl_Get(VLCIntf);
972                 BOOL sd_loaded = playlist_IsServicesDiscoveryLoaded(p_playlist, [[item identifier] UTF8String]);
973                 if (!sd_loaded)
974                     [m addItemWithTitle:_NS("Enable") action:@selector(sdmenuhandler:) keyEquivalent:@""];
975                 else
976                     [m addItemWithTitle:_NS("Disable") action:@selector(sdmenuhandler:) keyEquivalent:@""];
977                 [[m itemAtIndex:0] setRepresentedObject: [item identifier]];
978             }
979             return [m autorelease];
980         }
981     }
982
983     return nil;
984 }
985
986 - (IBAction)sdmenuhandler:(id)sender
987 {
988     NSString * identifier = [sender representedObject];
989     if ([identifier length] > 0 && ![identifier isEqualToString:@"lua{sd='freebox',longname='Freebox TV'}"]) {
990         playlist_t * p_playlist = pl_Get(VLCIntf);
991         BOOL sd_loaded = playlist_IsServicesDiscoveryLoaded(p_playlist, [identifier UTF8String]);
992
993         if (!sd_loaded)
994             playlist_ServicesDiscoveryAdd(p_playlist, [identifier UTF8String]);
995         else
996             playlist_ServicesDiscoveryRemove(p_playlist, [identifier UTF8String]);
997     }
998 }
999
1000 #pragma mark -
1001 #pragma mark Side Bar Delegate Methods
1002 /* taken under BSD-new from the PXSourceList sample project, adapted for VLC */
1003 - (BOOL)sourceList:(PXSourceList*)aSourceList isGroupAlwaysExpanded:(id)group
1004 {
1005     if ([[group identifier] isEqualToString:@"library"])
1006         return YES;
1007
1008     return NO;
1009 }
1010
1011 - (void)sourceListSelectionDidChange:(NSNotification *)notification
1012 {
1013     playlist_t * p_playlist = pl_Get(VLCIntf);
1014
1015     NSIndexSet *selectedIndexes = [o_sidebar_view selectedRowIndexes];
1016     id item = [o_sidebar_view itemAtRow:[selectedIndexes firstIndex]];
1017
1018
1019     //Set the label text to represent the new selection
1020     if ([item sdtype] > -1 && [[item identifier] length] > 0) {
1021         BOOL sd_loaded = playlist_IsServicesDiscoveryLoaded(p_playlist, [[item identifier] UTF8String]);
1022         if (!sd_loaded)
1023             playlist_ServicesDiscoveryAdd(p_playlist, [[item identifier] UTF8String]);
1024     }
1025
1026     [o_chosen_category_lbl setStringValue:[item title]];
1027
1028     if ([[item identifier] isEqualToString:@"playlist"]) {
1029         [[[VLCMain sharedInstance] playlist] setPlaylistRoot:p_playlist->p_local_category];
1030     } else if ([[item identifier] isEqualToString:@"medialibrary"]) {
1031         [[[VLCMain sharedInstance] playlist] setPlaylistRoot:p_playlist->p_ml_category];
1032     } else {
1033         playlist_item_t * pl_item;
1034         PL_LOCK;
1035         pl_item = playlist_ChildSearchName(p_playlist->p_root, [[item untranslatedTitle] UTF8String]);
1036         PL_UNLOCK;
1037         [[[VLCMain sharedInstance] playlist] setPlaylistRoot: pl_item];
1038     }
1039
1040     PL_LOCK;
1041     if ([[[VLCMain sharedInstance] playlist] currentPlaylistRoot] != p_playlist->p_local_category || p_playlist->p_local_category->i_children > 0)
1042         [self hideDropZone];
1043     else
1044         [self showDropZone];
1045     PL_UNLOCK;
1046
1047     if ([[item identifier] isEqualToString:@"podcast{longname=\"Podcasts\"}"])
1048         [self showPodcastControls];
1049     else
1050         [self hidePodcastControls];
1051 }
1052
1053 - (NSDragOperation)sourceList:(PXSourceList *)aSourceList validateDrop:(id <NSDraggingInfo>)info proposedItem:(id)item proposedChildIndex:(NSInteger)index
1054 {
1055     if ([[item identifier] isEqualToString:@"playlist"] || [[item identifier] isEqualToString:@"medialibrary"]) {
1056         NSPasteboard *o_pasteboard = [info draggingPasteboard];
1057         if ([[o_pasteboard types] containsObject: @"VLCPlaylistItemPboardType"] || [[o_pasteboard types] containsObject: NSFilenamesPboardType])
1058             return NSDragOperationGeneric;
1059     }
1060     return NSDragOperationNone;
1061 }
1062
1063 - (BOOL)sourceList:(PXSourceList *)aSourceList acceptDrop:(id <NSDraggingInfo>)info item:(id)item childIndex:(NSInteger)index
1064 {
1065     NSPasteboard *o_pasteboard = [info draggingPasteboard];
1066
1067     playlist_t * p_playlist = pl_Get(VLCIntf);
1068     playlist_item_t *p_node;
1069
1070     if ([[item identifier] isEqualToString:@"playlist"])
1071         p_node = p_playlist->p_local_category;
1072     else
1073         p_node = p_playlist->p_ml_category;
1074
1075     if ([[o_pasteboard types] containsObject: NSFilenamesPboardType]) {
1076         NSArray *o_values = [[o_pasteboard propertyListForType: NSFilenamesPboardType] sortedArrayUsingSelector: @selector(caseInsensitiveCompare:)];
1077         NSUInteger count = [o_values count];
1078         NSMutableArray *o_array = [NSMutableArray arrayWithCapacity:count];
1079
1080         for(NSUInteger i = 0; i < count; i++) {
1081             NSDictionary *o_dic;
1082             char *psz_uri = vlc_path2uri([[o_values objectAtIndex:i] UTF8String], NULL);
1083             if (!psz_uri)
1084                 continue;
1085
1086             o_dic = [NSDictionary dictionaryWithObject:[NSString stringWithCString:psz_uri encoding:NSUTF8StringEncoding] forKey:@"ITEM_URL"];
1087
1088             free(psz_uri);
1089
1090             [o_array addObject: o_dic];
1091         }
1092
1093         [[[VLCMain sharedInstance] playlist] appendNodeArray:o_array inNode: p_node atPos:-1 enqueue:YES];
1094         return YES;
1095     }
1096     else if ([[o_pasteboard types] containsObject: @"VLCPlaylistItemPboardType"]) {
1097         NSArray * array = [[[VLCMain sharedInstance] playlist] draggedItems];
1098
1099         NSUInteger count = [array count];
1100         playlist_item_t * p_item = NULL;
1101
1102         PL_LOCK;
1103         for(NSUInteger i = 0; i < count; i++) {
1104             p_item = [[array objectAtIndex:i] pointerValue];
1105             if (!p_item) continue;
1106             playlist_NodeAddCopy(p_playlist, p_item, p_node, PLAYLIST_END);
1107         }
1108         PL_UNLOCK;
1109
1110         return YES;
1111     }
1112     return NO;
1113 }
1114
1115 - (id)sourceList:(PXSourceList *)aSourceList persistentObjectForItem:(id)item
1116 {
1117     return [item identifier];
1118 }
1119
1120 - (id)sourceList:(PXSourceList *)aSourceList itemForPersistentObject:(id)object
1121 {
1122     /* the following code assumes for sakes of simplicity that only the top level
1123      * items are allowed to have children */
1124
1125     NSArray * array = [NSArray arrayWithArray: o_sidebaritems]; // read-only arrays are noticebly faster
1126     NSUInteger count = [array count];
1127     if (count < 1)
1128         return nil;
1129
1130     for (NSUInteger x = 0; x < count; x++) {
1131         id item = [array objectAtIndex: x]; // save one objc selector call
1132         if ([[item identifier] isEqualToString:object])
1133             return item;
1134     }
1135
1136     return nil;
1137 }
1138
1139 #pragma mark -
1140 #pragma mark Podcast
1141
1142 - (IBAction)addPodcast:(id)sender
1143 {
1144     [NSApp beginSheet:o_podcast_subscribe_window modalForWindow:self modalDelegate:self didEndSelector:NULL contextInfo:nil];
1145 }
1146
1147 - (IBAction)addPodcastWindowAction:(id)sender
1148 {
1149     [o_podcast_subscribe_window orderOut:sender];
1150     [NSApp endSheet: o_podcast_subscribe_window];
1151
1152     if (sender == o_podcast_subscribe_ok_btn && [[o_podcast_subscribe_url_fld stringValue] length] > 0) {
1153         NSMutableString * podcastConf = [[NSMutableString alloc] init];
1154         if (config_GetPsz(VLCIntf, "podcast-urls") != NULL)
1155             [podcastConf appendFormat:@"%s|", config_GetPsz(VLCIntf, "podcast-urls")];
1156
1157         [podcastConf appendString: [o_podcast_subscribe_url_fld stringValue]];
1158         config_PutPsz(VLCIntf, "podcast-urls", [podcastConf UTF8String]);
1159
1160         vlc_object_t *p_obj = (vlc_object_t*)vlc_object_find_name(VLCIntf->p_libvlc, "podcast");
1161         if (p_obj) {
1162             var_SetString(p_obj, "podcast-urls", [podcastConf UTF8String]);
1163             vlc_object_release(p_obj);
1164         }
1165         [podcastConf release];
1166     }
1167 }
1168
1169 - (IBAction)removePodcast:(id)sender
1170 {
1171     if (config_GetPsz(VLCIntf, "podcast-urls") != NULL) {
1172         [o_podcast_unsubscribe_pop removeAllItems];
1173         [o_podcast_unsubscribe_pop addItemsWithTitles:[[NSString stringWithUTF8String:config_GetPsz(VLCIntf, "podcast-urls")] componentsSeparatedByString:@"|"]];
1174         [NSApp beginSheet:o_podcast_unsubscribe_window modalForWindow:self modalDelegate:self didEndSelector:NULL contextInfo:nil];
1175     }
1176 }
1177
1178 - (IBAction)removePodcastWindowAction:(id)sender
1179 {
1180     [o_podcast_unsubscribe_window orderOut:sender];
1181     [NSApp endSheet: o_podcast_unsubscribe_window];
1182
1183     if (sender == o_podcast_unsubscribe_ok_btn) {
1184         NSMutableArray * urls = [[NSMutableArray alloc] initWithArray:[[NSString stringWithUTF8String:config_GetPsz(VLCIntf, "podcast-urls")] componentsSeparatedByString:@"|"]];
1185         [urls removeObjectAtIndex: [o_podcast_unsubscribe_pop indexOfSelectedItem]];
1186         config_PutPsz(VLCIntf, "podcast-urls", [[urls componentsJoinedByString:@"|"] UTF8String]);
1187         [urls release];
1188
1189         vlc_object_t *p_obj = (vlc_object_t*)vlc_object_find_name(VLCIntf->p_libvlc, "podcast");
1190         if (p_obj) {
1191             var_SetString(p_obj, "podcast-urls", config_GetPsz(VLCIntf, "podcast-urls"));
1192             vlc_object_release(p_obj);
1193         }
1194
1195         /* reload the podcast module, since it won't update its list when removing podcasts */
1196         playlist_t * p_playlist = pl_Get(VLCIntf);
1197         if (playlist_IsServicesDiscoveryLoaded(p_playlist, "podcast{longname=\"Podcasts\"}")) {
1198             playlist_ServicesDiscoveryRemove(p_playlist, "podcast{longname=\"Podcasts\"}");
1199             playlist_ServicesDiscoveryAdd(p_playlist, "podcast{longname=\"Podcasts\"}");
1200             [o_playlist_table reloadData];
1201         }
1202
1203     }
1204 }
1205
1206 - (void)showPodcastControls
1207 {
1208     NSRect podcastViewDimensions = [o_podcast_view frame];
1209     NSRect rightSplitRect = [o_right_split_view frame];
1210     NSRect playlistTableRect = [o_playlist_table frame];
1211
1212     podcastViewDimensions.size.width = rightSplitRect.size.width;
1213     podcastViewDimensions.origin.x = podcastViewDimensions.origin.y = .0;
1214     [o_podcast_view setFrame:podcastViewDimensions];
1215
1216     playlistTableRect.origin.y = playlistTableRect.origin.y + podcastViewDimensions.size.height;
1217     playlistTableRect.size.height = playlistTableRect.size.height - podcastViewDimensions.size.height;
1218     [o_playlist_table setFrame:playlistTableRect];
1219     [o_playlist_table setNeedsDisplay:YES];
1220
1221     [o_right_split_view addSubview: o_podcast_view positioned: NSWindowAbove relativeTo: o_right_split_view];
1222     b_podcastView_displayed = YES;
1223 }
1224
1225 - (void)hidePodcastControls
1226 {
1227     if (b_podcastView_displayed) {
1228         NSRect podcastViewDimensions = [o_podcast_view frame];
1229         NSRect playlistTableRect = [o_playlist_table frame];
1230
1231         playlistTableRect.origin.y = playlistTableRect.origin.y - podcastViewDimensions.size.height;
1232         playlistTableRect.size.height = playlistTableRect.size.height + podcastViewDimensions.size.height;
1233
1234         [o_podcast_view removeFromSuperviewWithoutNeedingDisplay];
1235         [o_playlist_table setFrame: playlistTableRect];
1236         b_podcastView_displayed = NO;
1237     }
1238 }
1239
1240 @end
1241
1242 @implementation VLCDetachedVideoWindow
1243
1244 - (void)awakeFromNib
1245 {
1246     // sets lion fullscreen behaviour
1247     [super awakeFromNib];
1248     [self setAcceptsMouseMovedEvents: YES];
1249
1250     if (b_dark_interface) {
1251         [self setBackgroundColor: [NSColor clearColor]];
1252
1253         [self setOpaque: NO];
1254         [self display];
1255         [self setHasShadow:NO];
1256         [self setHasShadow:YES];
1257
1258         NSRect winrect = [self frame];
1259         CGFloat f_titleBarHeight = [o_titlebar_view frame].size.height;
1260
1261         [self setTitle: _NS("VLC media player")];
1262         [o_titlebar_view setFrame: NSMakeRect(0, winrect.size.height - f_titleBarHeight, winrect.size.width, f_titleBarHeight)];
1263         [[self contentView] addSubview: o_titlebar_view positioned: NSWindowAbove relativeTo: nil];
1264
1265     } else {
1266         [self setBackgroundColor: [NSColor blackColor]];
1267     }
1268
1269     NSRect videoViewRect = [[self contentView] bounds];
1270     if (b_dark_interface)
1271         videoViewRect.size.height -= [o_titlebar_view frame].size.height;
1272     CGFloat f_bottomBarHeight = [[[self controlsBar] bottomBarView] frame].size.height;
1273     videoViewRect.size.height -= f_bottomBarHeight;
1274     videoViewRect.origin.y = f_bottomBarHeight;
1275     [o_video_view setFrame: videoViewRect];
1276
1277     if (b_dark_interface) {
1278         o_color_backdrop = [[VLCColorView alloc] initWithFrame: [o_video_view frame]];
1279         [[self contentView] addSubview: o_color_backdrop positioned: NSWindowBelow relativeTo: o_video_view];
1280         [o_color_backdrop setAutoresizingMask:NSViewHeightSizable | NSViewWidthSizable];
1281
1282         [self setContentMinSize: NSMakeSize(363., f_min_video_height + [[[self controlsBar] bottomBarView] frame].size.height + [o_titlebar_view frame].size.height)];
1283     } else {
1284         [self setContentMinSize: NSMakeSize(363., f_min_video_height + [[[self controlsBar] bottomBarView] frame].size.height)];
1285     }
1286 }
1287
1288 - (void)dealloc
1289 {
1290     if (b_dark_interface)
1291         [o_color_backdrop release];
1292
1293     [super dealloc];
1294 }
1295
1296 @end