]> git.sesse.net Git - vlc/blob - modules/gui/macosx/MainWindow.m
macosx: update condition for idle fullscreen button state
[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 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: @(*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: @(*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: @(*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: @(*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: @[playlistItem, medialibraryItem]];
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:@[NSFilenamesPboardType, @"VLCPlaylistItemPboardType"]];
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     if ([self fullscreen]) {
442         [[o_controls_bar bottomBarView] setHidden: NO];
443         [o_fspanel setNonActive:nil];
444     }
445
446     [self makeFirstResponder: o_playlist_table];
447 }
448
449 - (void)makeSplitViewHidden
450 {
451     if (b_dark_interface)
452         [self setContentMinSize: NSMakeSize(604., f_min_video_height + [o_titlebar_view frame].size.height)];
453     else
454         [self setContentMinSize: NSMakeSize(604., f_min_video_height)];
455
456     [o_split_view setHidden: YES];
457     [o_video_view setHidden: NO];
458     if ([self fullscreen]) {
459         [[o_controls_bar bottomBarView] setHidden: YES];
460         [o_fspanel setActive:nil];
461     }
462
463     if ([[o_video_view subviews] count] > 0)
464         [self makeFirstResponder: [[o_video_view subviews] objectAtIndex:0]];
465 }
466
467 // only exception for an controls bar button action
468 - (IBAction)togglePlaylist:(id)sender
469 {
470     if (![self isVisible] && sender != nil) {
471         [self makeKeyAndOrderFront: sender];
472         return;
473     }
474
475     BOOL b_activeVideo = [[VLCMain sharedInstance] activeVideoPlayback];
476     BOOL b_restored = NO;
477
478     BOOL b_have_alt_key = ([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask) != 0;
479     if (sender && [sender isKindOfClass: [NSMenuItem class]])
480         b_have_alt_key = NO;
481
482     if (b_dropzone_active && b_have_alt_key) {
483         [self hideDropZone];
484         return;
485     }
486
487     if (!(b_nativeFullscreenMode && b_fullscreen) && !b_splitview_removed && ((b_have_alt_key && b_activeVideo)
488                                                                               || (b_nonembedded && sender != nil)
489                                                                               || (!b_activeVideo && sender != nil)
490                                                                               || b_minimized_view))
491         [self hideSplitView];
492     else {
493         if (b_splitview_removed) {
494             if (!b_nonembedded || (sender != nil && b_nonembedded))
495                 [self showSplitView];
496
497             if (sender == nil)
498                 b_minimized_view = YES;
499             else
500                 b_minimized_view = NO;
501
502             if (b_activeVideo)
503                 b_restored = YES;
504         }
505
506         if (!b_nonembedded) {
507             if (([o_video_view isHidden] && b_activeVideo) || b_restored || (b_activeVideo && sender == nil))
508                 [self makeSplitViewHidden];
509             else
510                 [self makeSplitViewVisible];
511         } else {
512             [o_split_view setHidden: NO];
513             [o_playlist_table setHidden: NO];
514             [o_video_view setHidden: YES];
515         }
516     }
517 }
518
519 - (IBAction)dropzoneButtonAction:(id)sender
520 {
521     [[[VLCMain sharedInstance] open] openFileGeneric];
522 }
523
524 #pragma mark -
525 #pragma mark overwritten default functionality
526
527 - (void)windowResizedOrMoved:(NSNotification *)notification
528 {
529     [self saveFrameUsingName: [self frameAutosaveName]];
530 }
531
532 - (void)applicationWillTerminate:(NSNotification *)notification
533 {
534     config_PutInt(VLCIntf, "macosx-show-sidebar", ![o_split_view isSubviewCollapsed:o_left_split_view]);
535
536     [self saveFrameUsingName: [self frameAutosaveName]];
537 }
538
539
540 - (void)someWindowWillClose:(NSNotification *)notification
541 {
542     id obj = [notification object];
543
544     // hasActiveVideo is defined for VLCVideoWindowCommon and subclasses
545     if ([obj respondsToSelector:@selector(hasActiveVideo)] && [obj hasActiveVideo]) {
546         if ([[VLCMain sharedInstance] activeVideoPlayback])
547             [[VLCCoreInteraction sharedInstance] stop];
548     }
549 }
550
551 - (void)someWindowWillMiniaturize:(NSNotification *)notification
552 {
553     if (config_GetInt(VLCIntf, "macosx-pause-minimized")) {
554         id obj = [notification object];
555
556         if ([obj class] == [VLCVideoWindowCommon class] || [obj class] == [VLCDetachedVideoWindow class] || ([obj class] == [VLCMainWindow class] && !b_nonembedded)) {
557             if ([[VLCMain sharedInstance] activeVideoPlayback])
558                 [[VLCCoreInteraction sharedInstance] pause];
559         }
560     }
561 }
562
563 #pragma mark -
564 #pragma mark Update interface and respond to foreign events
565 - (void)showDropZone
566 {
567     b_dropzone_active = YES;
568     [o_right_split_view addSubview: o_dropzone_view positioned:NSWindowAbove relativeTo:o_playlist_table];
569     [o_dropzone_view setFrame: [o_playlist_table frame]];
570     [[o_playlist_table animator] setHidden:YES];
571 }
572
573 - (void)hideDropZone
574 {
575     b_dropzone_active = NO;
576     [o_dropzone_view removeFromSuperview];
577     [[o_playlist_table animator] setHidden: NO];
578 }
579
580 - (void)hideSplitView
581 {
582     NSRect winrect = [self frame];
583     i_lastSplitViewHeight = [o_split_view frame].size.height;
584     winrect.size.height = winrect.size.height - i_lastSplitViewHeight;
585     winrect.origin.y = winrect.origin.y + i_lastSplitViewHeight;
586     [self setFrame: winrect display: YES animate: YES];
587     [self performSelector:@selector(hideDropZone) withObject:nil afterDelay:0.1];
588     if (b_dark_interface) {
589         [self setContentMinSize: NSMakeSize(604., [o_controls_bar height] + [o_titlebar_view frame].size.height)];
590         [self setContentMaxSize: NSMakeSize(FLT_MAX, [o_controls_bar height] + [o_titlebar_view frame].size.height)];
591     } else {
592         [self setContentMinSize: NSMakeSize(604., [o_controls_bar height])];
593         [self setContentMaxSize: NSMakeSize(FLT_MAX, [o_controls_bar height])];
594     }
595
596     b_splitview_removed = YES;
597 }
598
599 - (void)showSplitView
600 {
601     [self updateWindow];
602     if (b_dark_interface)
603         [self setContentMinSize:NSMakeSize(604., 288. + [o_titlebar_view frame].size.height)];
604     else
605         [self setContentMinSize:NSMakeSize(604., 288.)];
606     [self setContentMaxSize: NSMakeSize(FLT_MAX, FLT_MAX)];
607
608     NSRect winrect;
609     winrect = [self frame];
610     winrect.size.height = winrect.size.height + i_lastSplitViewHeight;
611     winrect.origin.y = winrect.origin.y - i_lastSplitViewHeight;
612     [self setFrame: winrect display: YES animate: YES];
613
614     [self performSelector:@selector(resizePlaylistAfterCollapse) withObject: nil afterDelay:0.75];
615
616     b_splitview_removed = NO;
617 }
618
619 - (void)updateTimeSlider
620 {
621     [o_controls_bar updateTimeSlider];
622     [o_fspanel updatePositionAndTime];
623
624     [[[VLCMain sharedInstance] voutController] updateWindowsControlsBarWithSelector:@selector(updateTimeSlider)];
625 }
626
627 - (void)updateName
628 {
629     input_thread_t * p_input;
630     p_input = pl_CurrentInput(VLCIntf);
631     if (p_input) {
632         NSString *aString;
633
634         if (!config_GetPsz(VLCIntf, "video-title")) {
635             char *format = var_InheritString(VLCIntf, "input-title-format");
636             char *formated = str_format_meta(pl_Get(VLCIntf), format);
637             free(format);
638             aString = @(formated);
639             free(formated);
640         } else
641             aString = @(config_GetPsz(VLCIntf, "video-title"));
642
643         char *uri = input_item_GetURI(input_GetItem(p_input));
644
645         NSURL * o_url = [NSURL URLWithString: @(uri)];
646         if ([o_url isFileURL]) {
647             [self setRepresentedURL: o_url];
648             [[[VLCMain sharedInstance] voutController] updateWindowsUsingBlock:^(VLCVideoWindowCommon *o_window) {
649                 [o_window setRepresentedURL:o_url];
650             }];
651         } else {
652             [self setRepresentedURL: nil];
653             [[[VLCMain sharedInstance] voutController] updateWindowsUsingBlock:^(VLCVideoWindowCommon *o_window) {
654                 [o_window setRepresentedURL:nil];
655             }];
656         }
657         free(uri);
658
659         if ([aString isEqualToString:@""]) {
660             if ([o_url isFileURL])
661                 aString = [[NSFileManager defaultManager] displayNameAtPath: [o_url path]];
662             else
663                 aString = [o_url absoluteString];
664         }
665
666         if ([aString length] > 0) {
667             [self setTitle: aString];
668             [[[VLCMain sharedInstance] voutController] updateWindowsUsingBlock:^(VLCVideoWindowCommon *o_window) {
669                 [o_window setTitle:aString];
670             }];
671
672             [o_fspanel setStreamTitle: aString];
673         } else {
674             [self setTitle: _NS("VLC media player")];
675             [self setRepresentedURL: nil];
676         }
677
678         vlc_object_release(p_input);
679     } else {
680         [self setTitle: _NS("VLC media player")];
681         [self setRepresentedURL: nil];
682     }
683 }
684
685 - (void)updateWindow
686 {
687     [o_controls_bar updateControls];
688     [[[VLCMain sharedInstance] voutController] updateWindowsControlsBarWithSelector:@selector(updateControls)];
689
690     bool b_seekable = false;
691
692     playlist_t * p_playlist = pl_Get(VLCIntf);
693     input_thread_t * p_input = playlist_CurrentInput(p_playlist);
694     if (p_input) {
695         /* seekable streams */
696         b_seekable = var_GetBool(p_input, "can-seek");
697
698         vlc_object_release(p_input);
699     }
700
701     [self updateTimeSlider];
702     if ([o_fspanel respondsToSelector:@selector(setSeekable:)])
703         [o_fspanel setSeekable: b_seekable];
704
705     PL_LOCK;
706     if ([[[VLCMain sharedInstance] playlist] currentPlaylistRoot] != p_playlist->p_local_category || p_playlist->p_local_category->i_children > 0)
707         [self hideDropZone];
708     else
709         [self showDropZone];
710     PL_UNLOCK;
711     [o_sidebar_view setNeedsDisplay:YES];
712 }
713
714 - (void)setPause
715 {
716     [o_controls_bar setPause];
717     [o_fspanel setPause];
718
719     [[[VLCMain sharedInstance] voutController] updateWindowsControlsBarWithSelector:@selector(setPause)];
720 }
721
722 - (void)setPlay
723 {
724     [o_controls_bar setPlay];
725     [o_fspanel setPlay];
726
727     [[[VLCMain sharedInstance] voutController] updateWindowsControlsBarWithSelector:@selector(setPlay)];
728
729 }
730
731 - (void)updateVolumeSlider
732 {
733     [[self controlsBar] updateVolumeSlider];
734     [o_fspanel setVolumeLevel: [[VLCCoreInteraction sharedInstance] volume]];
735 }
736
737 #pragma mark -
738 #pragma mark Video Output handling
739
740 - (void)setVideoplayEnabled
741 {
742     BOOL b_videoPlayback = [[VLCMain sharedInstance] activeVideoPlayback];
743
744     if (b_videoPlayback) {
745         if (!b_fullscreen)
746             frameBeforePlayback = [self frame];
747     } else {
748         if (!b_nonembedded && (!b_nativeFullscreenMode || (b_nativeFullscreenMode && !b_fullscreen)) && frameBeforePlayback.size.width > 0 && frameBeforePlayback.size.height > 0)
749             [[self animator] setFrame:frameBeforePlayback display:YES];
750
751         // update fs button to reflect state for next startup
752         if (var_InheritBool(VLCIntf, "fullscreen") || var_GetBool(pl_Get(VLCIntf), "fullscreen")) {
753             [o_controls_bar setFullscreenState:YES];
754         }
755
756         [self makeFirstResponder: o_playlist_table];
757         [[[VLCMain sharedInstance] voutController] updateWindowLevelForHelperWindows: NSNormalWindowLevel];
758
759         // restore alpha value to 1 for the case that macosx-opaqueness is set to < 1
760         [self setAlphaValue:1.0];
761     }
762
763     if (b_nativeFullscreenMode) {
764         if ([self hasActiveVideo] && [self fullscreen]) {
765             [[o_controls_bar bottomBarView] setHidden: b_videoPlayback];
766             [o_fspanel setActive: nil];
767         } else {
768             [[o_controls_bar bottomBarView] setHidden: NO];
769             [o_fspanel setNonActive: nil];
770         }
771     }
772 }
773
774 #pragma mark -
775 #pragma mark Lion native fullscreen handling
776 - (void)windowWillEnterFullScreen:(NSNotification *)notification
777 {
778     [super windowWillEnterFullScreen:notification];
779
780     // update split view frame after removing title bar
781     if (b_dark_interface) {
782         NSRect frame = [[self contentView] frame];
783         frame.origin.y += [o_controls_bar height];
784         frame.size.height -= [o_controls_bar height];
785         [o_split_view setFrame:frame];
786     }
787 }
788
789 - (void)windowWillExitFullScreen:(NSNotification *)notification
790 {
791     [super windowWillExitFullScreen: notification];
792
793     // update split view frame after readding title bar
794     if (b_dark_interface) {
795         NSRect frame = [o_split_view frame];
796         frame.size.height -= [o_titlebar_view frame].size.height;
797         [o_split_view setFrame:frame];
798     }
799 }
800 #pragma mark -
801 #pragma mark Fullscreen support
802
803 - (void)showFullscreenController
804 {
805     id currentWindow = [NSApp keyWindow];
806     if ([currentWindow respondsToSelector:@selector(hasActiveVideo)] && [currentWindow hasActiveVideo]) {
807         if ([currentWindow respondsToSelector:@selector(fullscreen)] && [currentWindow fullscreen] && ![[currentWindow videoView] isHidden]) {
808
809             if ([[VLCMain sharedInstance] activeVideoPlayback])
810                 [o_fspanel fadeIn];
811         }
812     }
813
814 }
815
816 #pragma mark -
817 #pragma mark split view delegate
818 - (CGFloat)splitView:(NSSplitView *)splitView constrainMaxCoordinate:(CGFloat)proposedMax ofSubviewAt:(NSInteger)dividerIndex
819 {
820     if (dividerIndex == 0)
821         return 300.;
822     else
823         return proposedMax;
824 }
825
826 - (CGFloat)splitView:(NSSplitView *)splitView constrainMinCoordinate:(CGFloat)proposedMin ofSubviewAt:(NSInteger)dividerIndex
827 {
828     if (dividerIndex == 0)
829         return 100.;
830     else
831         return proposedMin;
832 }
833
834 - (BOOL)splitView:(NSSplitView *)splitView canCollapseSubview:(NSView *)subview
835 {
836     return ([subview isEqual:o_left_split_view]);
837 }
838
839 - (BOOL)splitView:(NSSplitView *)splitView shouldAdjustSizeOfSubview:(NSView *)subview
840 {
841     if ([subview isEqual:o_left_split_view])
842         return NO;
843     return YES;
844 }
845
846 - (void)mainSplitViewDidResizeSubviews:(id)object
847 {
848     i_lastLeftSplitViewWidth = [o_left_split_view frame].size.width;
849     config_PutInt(VLCIntf, "macosx-show-sidebar", ![o_split_view isSubviewCollapsed:o_left_split_view]);
850     [[[VLCMain sharedInstance] mainMenu] updateSidebarMenuItem];
851 }
852
853 - (void)toggleLeftSubSplitView
854 {
855     [o_split_view adjustSubviews];
856     if ([o_split_view isSubviewCollapsed:o_left_split_view])
857         [o_split_view setPosition:i_lastLeftSplitViewWidth ofDividerAtIndex:0];
858     else
859         [o_split_view setPosition:[o_split_view minPossiblePositionOfDividerAtIndex:0] ofDividerAtIndex:0];
860     [[[VLCMain sharedInstance] mainMenu] updateSidebarMenuItem];
861 }
862
863 #pragma mark -
864 #pragma mark Side Bar Data handling
865 /* taken under BSD-new from the PXSourceList sample project, adapted for VLC */
866 - (NSUInteger)sourceList:(PXSourceList*)sourceList numberOfChildrenOfItem:(id)item
867 {
868     //Works the same way as the NSOutlineView data source: `nil` means a parent item
869     if (item==nil)
870         return [o_sidebaritems count];
871     else
872         return [[item children] count];
873 }
874
875
876 - (id)sourceList:(PXSourceList*)aSourceList child:(NSUInteger)index ofItem:(id)item
877 {
878     //Works the same way as the NSOutlineView data source: `nil` means a parent item
879     if (item==nil)
880         return [o_sidebaritems objectAtIndex:index];
881     else
882         return [[item children] objectAtIndex:index];
883 }
884
885
886 - (id)sourceList:(PXSourceList*)aSourceList objectValueForItem:(id)item
887 {
888     return [item title];
889 }
890
891 - (void)sourceList:(PXSourceList*)aSourceList setObjectValue:(id)object forItem:(id)item
892 {
893     [item setTitle:object];
894 }
895
896 - (BOOL)sourceList:(PXSourceList*)aSourceList isItemExpandable:(id)item
897 {
898     return [item hasChildren];
899 }
900
901
902 - (BOOL)sourceList:(PXSourceList*)aSourceList itemHasBadge:(id)item
903 {
904     if ([[item identifier] isEqualToString: @"playlist"] || [[item identifier] isEqualToString: @"medialibrary"])
905         return YES;
906
907     return [item hasBadge];
908 }
909
910
911 - (NSInteger)sourceList:(PXSourceList*)aSourceList badgeValueForItem:(id)item
912 {
913     playlist_t * p_playlist = pl_Get(VLCIntf);
914     NSInteger i_playlist_size;
915
916     if ([[item identifier] isEqualToString: @"playlist"]) {
917         PL_LOCK;
918         i_playlist_size = p_playlist->p_local_category->i_children;
919         PL_UNLOCK;
920
921         return i_playlist_size;
922     }
923     if ([[item identifier] isEqualToString: @"medialibrary"]) {
924         PL_LOCK;
925         i_playlist_size = p_playlist->p_ml_category->i_children;
926         PL_UNLOCK;
927
928         return i_playlist_size;
929     }
930
931     return [item badgeValue];
932 }
933
934
935 - (BOOL)sourceList:(PXSourceList*)aSourceList itemHasIcon:(id)item
936 {
937     return [item hasIcon];
938 }
939
940
941 - (NSImage*)sourceList:(PXSourceList*)aSourceList iconForItem:(id)item
942 {
943     return [item icon];
944 }
945
946 - (NSMenu*)sourceList:(PXSourceList*)aSourceList menuForEvent:(NSEvent*)theEvent item:(id)item
947 {
948     if ([theEvent type] == NSRightMouseDown || ([theEvent type] == NSLeftMouseDown && ([theEvent modifierFlags] & NSControlKeyMask) == NSControlKeyMask)) {
949         if (item != nil) {
950             NSMenu * m;
951             if ([item sdtype] > 0)
952             {
953                 m = [[NSMenu alloc] init];
954                 playlist_t * p_playlist = pl_Get(VLCIntf);
955                 BOOL sd_loaded = playlist_IsServicesDiscoveryLoaded(p_playlist, [[item identifier] UTF8String]);
956                 if (!sd_loaded)
957                     [m addItemWithTitle:_NS("Enable") action:@selector(sdmenuhandler:) keyEquivalent:@""];
958                 else
959                     [m addItemWithTitle:_NS("Disable") action:@selector(sdmenuhandler:) keyEquivalent:@""];
960                 [[m itemAtIndex:0] setRepresentedObject: [item identifier]];
961             }
962             return [m autorelease];
963         }
964     }
965
966     return nil;
967 }
968
969 - (IBAction)sdmenuhandler:(id)sender
970 {
971     NSString * identifier = [sender representedObject];
972     if ([identifier length] > 0 && ![identifier isEqualToString:@"lua{sd='freebox',longname='Freebox TV'}"]) {
973         playlist_t * p_playlist = pl_Get(VLCIntf);
974         BOOL sd_loaded = playlist_IsServicesDiscoveryLoaded(p_playlist, [identifier UTF8String]);
975
976         if (!sd_loaded)
977             playlist_ServicesDiscoveryAdd(p_playlist, [identifier UTF8String]);
978         else
979             playlist_ServicesDiscoveryRemove(p_playlist, [identifier UTF8String]);
980     }
981 }
982
983 #pragma mark -
984 #pragma mark Side Bar Delegate Methods
985 /* taken under BSD-new from the PXSourceList sample project, adapted for VLC */
986 - (BOOL)sourceList:(PXSourceList*)aSourceList isGroupAlwaysExpanded:(id)group
987 {
988     if ([[group identifier] isEqualToString:@"library"])
989         return YES;
990
991     return NO;
992 }
993
994 - (void)sourceListSelectionDidChange:(NSNotification *)notification
995 {
996     playlist_t * p_playlist = pl_Get(VLCIntf);
997
998     NSIndexSet *selectedIndexes = [o_sidebar_view selectedRowIndexes];
999     id item = [o_sidebar_view itemAtRow:[selectedIndexes firstIndex]];
1000
1001
1002     //Set the label text to represent the new selection
1003     if ([item sdtype] > -1 && [[item identifier] length] > 0) {
1004         BOOL sd_loaded = playlist_IsServicesDiscoveryLoaded(p_playlist, [[item identifier] UTF8String]);
1005         if (!sd_loaded)
1006             playlist_ServicesDiscoveryAdd(p_playlist, [[item identifier] UTF8String]);
1007     }
1008
1009     [o_chosen_category_lbl setStringValue:[item title]];
1010
1011     if ([[item identifier] isEqualToString:@"playlist"]) {
1012         [[[VLCMain sharedInstance] playlist] setPlaylistRoot:p_playlist->p_local_category];
1013     } else if ([[item identifier] isEqualToString:@"medialibrary"]) {
1014         [[[VLCMain sharedInstance] playlist] setPlaylistRoot:p_playlist->p_ml_category];
1015     } else {
1016         playlist_item_t * pl_item;
1017         PL_LOCK;
1018         pl_item = playlist_ChildSearchName(p_playlist->p_root, [[item untranslatedTitle] UTF8String]);
1019         PL_UNLOCK;
1020         [[[VLCMain sharedInstance] playlist] setPlaylistRoot: pl_item];
1021     }
1022
1023     PL_LOCK;
1024     if ([[[VLCMain sharedInstance] playlist] currentPlaylistRoot] != p_playlist->p_local_category || p_playlist->p_local_category->i_children > 0)
1025         [self hideDropZone];
1026     else
1027         [self showDropZone];
1028     PL_UNLOCK;
1029
1030     if ([[item identifier] isEqualToString:@"podcast{longname=\"Podcasts\"}"])
1031         [self showPodcastControls];
1032     else
1033         [self hidePodcastControls];
1034
1035     [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCMediaKeySupportSettingChanged"
1036                                                         object: nil
1037                                                       userInfo: nil];
1038 }
1039
1040 - (NSDragOperation)sourceList:(PXSourceList *)aSourceList validateDrop:(id <NSDraggingInfo>)info proposedItem:(id)item proposedChildIndex:(NSInteger)index
1041 {
1042     if ([[item identifier] isEqualToString:@"playlist"] || [[item identifier] isEqualToString:@"medialibrary"]) {
1043         NSPasteboard *o_pasteboard = [info draggingPasteboard];
1044         if ([[o_pasteboard types] containsObject: @"VLCPlaylistItemPboardType"] || [[o_pasteboard types] containsObject: NSFilenamesPboardType])
1045             return NSDragOperationGeneric;
1046     }
1047     return NSDragOperationNone;
1048 }
1049
1050 - (BOOL)sourceList:(PXSourceList *)aSourceList acceptDrop:(id <NSDraggingInfo>)info item:(id)item childIndex:(NSInteger)index
1051 {
1052     NSPasteboard *o_pasteboard = [info draggingPasteboard];
1053
1054     playlist_t * p_playlist = pl_Get(VLCIntf);
1055     playlist_item_t *p_node;
1056
1057     if ([[item identifier] isEqualToString:@"playlist"])
1058         p_node = p_playlist->p_local_category;
1059     else
1060         p_node = p_playlist->p_ml_category;
1061
1062     if ([[o_pasteboard types] containsObject: NSFilenamesPboardType]) {
1063         NSArray *o_values = [[o_pasteboard propertyListForType: NSFilenamesPboardType] sortedArrayUsingSelector: @selector(caseInsensitiveCompare:)];
1064         NSUInteger count = [o_values count];
1065         NSMutableArray *o_array = [NSMutableArray arrayWithCapacity:count];
1066
1067         for(NSUInteger i = 0; i < count; i++) {
1068             NSDictionary *o_dic;
1069             char *psz_uri = vlc_path2uri([[o_values objectAtIndex:i] UTF8String], NULL);
1070             if (!psz_uri)
1071                 continue;
1072
1073             o_dic = [NSDictionary dictionaryWithObject:[NSString stringWithCString:psz_uri encoding:NSUTF8StringEncoding] forKey:@"ITEM_URL"];
1074
1075             free(psz_uri);
1076
1077             [o_array addObject: o_dic];
1078         }
1079
1080         [[[VLCMain sharedInstance] playlist] appendNodeArray:o_array inNode: p_node atPos:-1 enqueue:YES];
1081         return YES;
1082     }
1083     else if ([[o_pasteboard types] containsObject: @"VLCPlaylistItemPboardType"]) {
1084         NSArray * array = [[[VLCMain sharedInstance] playlist] draggedItems];
1085
1086         NSUInteger count = [array count];
1087         playlist_item_t * p_item = NULL;
1088
1089         PL_LOCK;
1090         for(NSUInteger i = 0; i < count; i++) {
1091             p_item = [[array objectAtIndex:i] pointerValue];
1092             if (!p_item) continue;
1093             playlist_NodeAddCopy(p_playlist, p_item, p_node, PLAYLIST_END);
1094         }
1095         PL_UNLOCK;
1096
1097         return YES;
1098     }
1099     return NO;
1100 }
1101
1102 - (id)sourceList:(PXSourceList *)aSourceList persistentObjectForItem:(id)item
1103 {
1104     return [item identifier];
1105 }
1106
1107 - (id)sourceList:(PXSourceList *)aSourceList itemForPersistentObject:(id)object
1108 {
1109     /* the following code assumes for sakes of simplicity that only the top level
1110      * items are allowed to have children */
1111
1112     NSArray * array = [NSArray arrayWithArray: o_sidebaritems]; // read-only arrays are noticebly faster
1113     NSUInteger count = [array count];
1114     if (count < 1)
1115         return nil;
1116
1117     for (NSUInteger x = 0; x < count; x++) {
1118         id item = [array objectAtIndex:x]; // save one objc selector call
1119         if ([[item identifier] isEqualToString:object])
1120             return item;
1121     }
1122
1123     return nil;
1124 }
1125
1126 #pragma mark -
1127 #pragma mark Podcast
1128
1129 - (IBAction)addPodcast:(id)sender
1130 {
1131     [NSApp beginSheet:o_podcast_subscribe_window modalForWindow:self modalDelegate:self didEndSelector:NULL contextInfo:nil];
1132 }
1133
1134 - (IBAction)addPodcastWindowAction:(id)sender
1135 {
1136     [o_podcast_subscribe_window orderOut:sender];
1137     [NSApp endSheet: o_podcast_subscribe_window];
1138
1139     if (sender == o_podcast_subscribe_ok_btn && [[o_podcast_subscribe_url_fld stringValue] length] > 0) {
1140         NSMutableString * podcastConf = [[NSMutableString alloc] init];
1141         if (config_GetPsz(VLCIntf, "podcast-urls") != NULL)
1142             [podcastConf appendFormat:@"%s|", config_GetPsz(VLCIntf, "podcast-urls")];
1143
1144         [podcastConf appendString: [o_podcast_subscribe_url_fld stringValue]];
1145         config_PutPsz(VLCIntf, "podcast-urls", [podcastConf UTF8String]);
1146         var_SetString(pl_Get(VLCIntf), "podcast-urls", [podcastConf UTF8String]);
1147         [podcastConf release];
1148     }
1149 }
1150
1151 - (IBAction)removePodcast:(id)sender
1152 {
1153     if (config_GetPsz(VLCIntf, "podcast-urls") != NULL) {
1154         [o_podcast_unsubscribe_pop removeAllItems];
1155         [o_podcast_unsubscribe_pop addItemsWithTitles:[@(config_GetPsz(VLCIntf, "podcast-urls")) componentsSeparatedByString:@"|"]];
1156         [NSApp beginSheet:o_podcast_unsubscribe_window modalForWindow:self modalDelegate:self didEndSelector:NULL contextInfo:nil];
1157     }
1158 }
1159
1160 - (IBAction)removePodcastWindowAction:(id)sender
1161 {
1162     [o_podcast_unsubscribe_window orderOut:sender];
1163     [NSApp endSheet: o_podcast_unsubscribe_window];
1164
1165     if (sender == o_podcast_unsubscribe_ok_btn) {
1166         NSMutableArray * urls = [[NSMutableArray alloc] initWithArray:[@(config_GetPsz(VLCIntf, "podcast-urls")) componentsSeparatedByString:@"|"]];
1167         [urls removeObjectAtIndex: [o_podcast_unsubscribe_pop indexOfSelectedItem]];
1168         config_PutPsz(VLCIntf, "podcast-urls", [[urls componentsJoinedByString:@"|"] UTF8String]);
1169         var_SetString(pl_Get(VLCIntf), "podcast-urls", config_GetPsz(VLCIntf, "podcast-urls"));
1170         [urls release];
1171
1172         /* reload the podcast module, since it won't update its list when removing podcasts */
1173         playlist_t * p_playlist = pl_Get(VLCIntf);
1174         if (playlist_IsServicesDiscoveryLoaded(p_playlist, "podcast{longname=\"Podcasts\"}")) {
1175             playlist_ServicesDiscoveryRemove(p_playlist, "podcast{longname=\"Podcasts\"}");
1176             playlist_ServicesDiscoveryAdd(p_playlist, "podcast{longname=\"Podcasts\"}");
1177             [o_playlist_table reloadData];
1178         }
1179
1180     }
1181 }
1182
1183 - (void)showPodcastControls
1184 {
1185     NSRect podcastViewDimensions = [o_podcast_view frame];
1186     NSRect rightSplitRect = [o_right_split_view frame];
1187     NSRect playlistTableRect = [o_playlist_table frame];
1188
1189     podcastViewDimensions.size.width = rightSplitRect.size.width;
1190     podcastViewDimensions.origin.x = podcastViewDimensions.origin.y = .0;
1191     [o_podcast_view setFrame:podcastViewDimensions];
1192
1193     playlistTableRect.origin.y = playlistTableRect.origin.y + podcastViewDimensions.size.height;
1194     playlistTableRect.size.height = playlistTableRect.size.height - podcastViewDimensions.size.height;
1195     [o_playlist_table setFrame:playlistTableRect];
1196     [o_playlist_table setNeedsDisplay:YES];
1197
1198     [o_right_split_view addSubview: o_podcast_view positioned: NSWindowAbove relativeTo: o_right_split_view];
1199     b_podcastView_displayed = YES;
1200 }
1201
1202 - (void)hidePodcastControls
1203 {
1204     if (b_podcastView_displayed) {
1205         NSRect podcastViewDimensions = [o_podcast_view frame];
1206         NSRect playlistTableRect = [o_playlist_table frame];
1207
1208         playlistTableRect.origin.y = playlistTableRect.origin.y - podcastViewDimensions.size.height;
1209         playlistTableRect.size.height = playlistTableRect.size.height + podcastViewDimensions.size.height;
1210
1211         [o_podcast_view removeFromSuperviewWithoutNeedingDisplay];
1212         [o_playlist_table setFrame: playlistTableRect];
1213         b_podcastView_displayed = NO;
1214     }
1215 }
1216
1217 @end
1218
1219 @implementation VLCDetachedVideoWindow
1220
1221 - (void)awakeFromNib
1222 {
1223     // sets lion fullscreen behaviour
1224     [super awakeFromNib];
1225     [self setAcceptsMouseMovedEvents: YES];
1226
1227     if (b_dark_interface) {
1228         [self setBackgroundColor: [NSColor clearColor]];
1229
1230         [self setOpaque: NO];
1231         [self display];
1232         [self setHasShadow:NO];
1233         [self setHasShadow:YES];
1234
1235         NSRect winrect = [self frame];
1236         CGFloat f_titleBarHeight = [o_titlebar_view frame].size.height;
1237
1238         [self setTitle: _NS("VLC media player")];
1239         [o_titlebar_view setFrame: NSMakeRect(0, winrect.size.height - f_titleBarHeight, winrect.size.width, f_titleBarHeight)];
1240         [[self contentView] addSubview: o_titlebar_view positioned: NSWindowAbove relativeTo: nil];
1241
1242     } else {
1243         [self setBackgroundColor: [NSColor blackColor]];
1244     }
1245
1246     NSRect videoViewRect = [[self contentView] bounds];
1247     if (b_dark_interface)
1248         videoViewRect.size.height -= [o_titlebar_view frame].size.height;
1249     CGFloat f_bottomBarHeight = [[self controlsBar] height];
1250     videoViewRect.size.height -= f_bottomBarHeight;
1251     videoViewRect.origin.y = f_bottomBarHeight;
1252     [o_video_view setFrame: videoViewRect];
1253
1254     if (b_dark_interface) {
1255         o_color_backdrop = [[VLCColorView alloc] initWithFrame: [o_video_view frame]];
1256         [[self contentView] addSubview: o_color_backdrop positioned: NSWindowBelow relativeTo: o_video_view];
1257         [o_color_backdrop setAutoresizingMask:NSViewHeightSizable | NSViewWidthSizable];
1258
1259         [self setContentMinSize: NSMakeSize(363., f_min_video_height + [[self controlsBar] height] + [o_titlebar_view frame].size.height)];
1260     } else {
1261         [self setContentMinSize: NSMakeSize(363., f_min_video_height + [[self controlsBar] height])];
1262     }
1263 }
1264
1265 - (void)dealloc
1266 {
1267     if (b_dark_interface)
1268         [o_color_backdrop release];
1269
1270     [super dealloc];
1271 }
1272
1273 @end