]> git.sesse.net Git - vlc/blob - modules/gui/macosx/MainMenu.m
macosx: move Subtitle and Teletext items to a newly created 'Subtitles' menu
[vlc] / modules / gui / macosx / MainMenu.m
1 /*****************************************************************************
2  * MainMenu.m: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2011-2013 Felix Paul Kühne
5  * $Id$
6  *
7  * Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #import "MainMenu.h"
25 #import <vlc_common.h>
26 #import <vlc_playlist.h>
27
28 #import "intf.h"
29 #import "open.h"
30 #import "wizard.h"
31 #import "about.h"
32 #import "AudioEffects.h"
33 #import "TrackSynchronization.h"
34 #import "VideoEffects.h"
35 #import "bookmarks.h"
36 #import "simple_prefs.h"
37 #import "coredialogs.h"
38 #import "controls.h"
39 #import "playlist.h"
40 #import "playlistinfo.h"
41 #import "VideoView.h"
42 #import "CoreInteraction.h"
43 #import "MainWindow.h"
44 #import "ControlsBar.h"
45 #import "ExtensionsManager.h"
46 #import "ConvertAndSave.h"
47
48 @implementation VLCMainMenu
49 static VLCMainMenu *_o_sharedInstance = nil;
50
51 + (VLCMainMenu *)sharedInstance
52 {
53     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
54 }
55
56 #pragma mark -
57 #pragma mark Initialization
58
59 - (id)init
60 {
61     if (_o_sharedInstance) {
62         [self dealloc];
63         return _o_sharedInstance;
64     } else {
65         _o_sharedInstance = [super init];
66
67         o_ptc_translation_dict = [NSDictionary dictionaryWithObjectsAndKeys:
68                       _NS("Track Number"),  TRACKNUM_COLUMN,
69                       _NS("Title"),         TITLE_COLUMN,
70                       _NS("Author"),        ARTIST_COLUMN,
71                       _NS("Duration"),      DURATION_COLUMN,
72                       _NS("Genre"),         GENRE_COLUMN,
73                       _NS("Album"),         ALBUM_COLUMN,
74                       _NS("Description"),   DESCRIPTION_COLUMN,
75                       _NS("Date"),          DATE_COLUMN,
76                       _NS("Language"),      LANGUAGE_COLUMN,
77                       _NS("URI"),           URI_COLUMN,
78                       nil];
79         // this array also assigns tags (index) to type of menu item
80         o_ptc_menuorder = [NSArray arrayWithObjects:TRACKNUM_COLUMN, TITLE_COLUMN, ARTIST_COLUMN, DURATION_COLUMN,
81                        GENRE_COLUMN, ALBUM_COLUMN, DESCRIPTION_COLUMN, DATE_COLUMN, LANGUAGE_COLUMN, URI_COLUMN, nil];
82     }
83
84     return _o_sharedInstance;
85 }
86
87 - (void)dealloc
88 {
89     [[NSNotificationCenter defaultCenter] removeObserver: self];
90
91     if (b_nib_about_loaded)
92         [o_about release];
93
94     if (b_nib_videoeffects_loaded)
95         [o_videoeffects release];
96
97     if (b_nib_audioeffects_loaded)
98         [o_audioeffects release];
99
100     if (b_nib_tracksynchro_loaded)
101         [o_trackSynchronization release];
102
103     if (b_nib_convertandsave_loaded)
104         [o_convertandsave release];
105
106     [o_extMgr release];
107
108     if (o_mu_playlistTableColumnsContextMenu)
109         [o_mu_playlistTableColumnsContextMenu release];
110
111     [self releaseRepresentedObjects:[NSApp mainMenu]];
112
113     [super dealloc];
114 }
115
116 - (void)awakeFromNib
117 {
118     [[NSNotificationCenter defaultCenter] addObserver: self
119                                              selector: @selector(applicationWillFinishLaunching:)
120                                                  name: NSApplicationWillFinishLaunchingNotification
121                                                object: nil];
122
123     /* check whether the user runs OSX with a RTL language */
124     NSArray* languages = [NSLocale preferredLanguages];
125     NSString* preferredLanguage = [languages objectAtIndex:0];
126
127     if ([NSLocale characterDirectionForLanguage:preferredLanguage] == NSLocaleLanguageDirectionRightToLeft) {
128         msg_Dbg(VLCIntf, "adapting interface since '%s' is a RTL language", [preferredLanguage UTF8String]);
129         [o_mi_rate_fld setAlignment: NSLeftTextAlignment];
130     }
131 }
132
133 - (void)applicationWillFinishLaunching:(NSNotification *)o_notification
134 {
135     p_intf = VLCIntf;
136
137     NSString* o_key;
138     playlist_t *p_playlist;
139     vlc_value_t val;
140     id o_vlcstringutility = [VLCStringUtility sharedInstance];
141     char * key;
142
143     /* Check if we already did this once. Opening the other nibs calls it too,
144      because VLCMain is the owner */
145     if (b_mainMenu_setup)
146         return;
147
148     /* Get ExtensionsManager */
149     o_extMgr = [ExtensionsManager getInstance:p_intf];
150     [o_extMgr retain];
151
152     [self initStrings];
153
154     key = config_GetPsz(p_intf, "key-quit");
155     o_key = [NSString stringWithFormat:@"%s", key];
156     [o_mi_quit setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
157     [o_mi_quit setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
158     FREENULL(key);
159
160     // do not assign play/pause key
161
162     key = config_GetPsz(p_intf, "key-stop");
163     o_key = [NSString stringWithFormat:@"%s", key];
164     [o_mi_stop setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
165     [o_mi_stop setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
166     FREENULL(key);
167
168     key = config_GetPsz(p_intf, "key-prev");
169     o_key = [NSString stringWithFormat:@"%s", key];
170     [o_mi_previous setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
171     [o_mi_previous setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
172     FREENULL(key);
173
174     key = config_GetPsz(p_intf, "key-next");
175     o_key = [NSString stringWithFormat:@"%s", key];
176     [o_mi_next setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
177     [o_mi_next setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
178     FREENULL(key);
179
180     key = config_GetPsz(p_intf, "key-jump+short");
181     o_key = [NSString stringWithFormat:@"%s", key];
182     [o_mi_fwd setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
183     [o_mi_fwd setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
184     FREENULL(key);
185
186     key = config_GetPsz(p_intf, "key-jump-short");
187     o_key = [NSString stringWithFormat:@"%s", key];
188     [o_mi_bwd setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
189     [o_mi_bwd setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
190     FREENULL(key);
191
192     key = config_GetPsz(p_intf, "key-vol-up");
193     o_key = [NSString stringWithFormat:@"%s", key];
194     [o_mi_vol_up setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
195     [o_mi_vol_up setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
196     FREENULL(key);
197
198     key = config_GetPsz(p_intf, "key-vol-down");
199     o_key = [NSString stringWithFormat:@"%s", key];
200     [o_mi_vol_down setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
201     [o_mi_vol_down setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
202     FREENULL(key);
203
204     key = config_GetPsz(p_intf, "key-vol-mute");
205     o_key = [NSString stringWithFormat:@"%s", key];
206     [o_mi_mute setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
207     [o_mi_mute setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
208     FREENULL(key);
209
210     key = config_GetPsz(p_intf, "key-toggle-fullscreen");
211     o_key = [NSString stringWithFormat:@"%s", key];
212     [o_mi_fullscreen setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
213     [o_mi_fullscreen setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
214     FREENULL(key);
215
216     key = config_GetPsz(p_intf, "key-snapshot");
217     o_key = [NSString stringWithFormat:@"%s", key];
218     [o_mi_snapshot setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
219     [o_mi_snapshot setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
220     FREENULL(key);
221
222     key = config_GetPsz(p_intf, "key-random");
223     o_key = [NSString stringWithFormat:@"%s", key];
224     [o_mi_random setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
225     [o_mi_random setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
226     FREENULL(key);
227
228     key = config_GetPsz(p_intf, "key-zoom-half");
229     o_key = [NSString stringWithFormat:@"%s", key];
230     [o_mi_half_window setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
231     [o_mi_half_window setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
232     FREENULL(key);
233
234     key = config_GetPsz(p_intf, "key-zoom-original");
235     o_key = [NSString stringWithFormat:@"%s", key];
236     [o_mi_normal_window setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
237     [o_mi_normal_window setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
238     FREENULL(key);
239
240     key = config_GetPsz(p_intf, "key-zoom-double");
241     o_key = [NSString stringWithFormat:@"%s", key];
242     [o_mi_double_window setKeyEquivalent: [o_vlcstringutility VLCKeyToString: o_key]];
243     [o_mi_double_window setKeyEquivalentModifierMask: [o_vlcstringutility VLCModifiersToCocoa:o_key]];
244     FREENULL(key);
245
246     [self setSubmenusEnabled: FALSE];
247
248     [[NSNotificationCenter defaultCenter] addObserver: self
249                                              selector: @selector(refreshVoutDeviceMenu:)
250                                                  name: NSApplicationDidChangeScreenParametersNotification
251                                                object: nil];
252
253     /* we're done */
254     b_mainMenu_setup = YES;
255
256     [self setupVarMenuItem: o_mi_add_intf target: (vlc_object_t *)p_intf
257                              var: "intf-add" selector: @selector(toggleVar:)];
258
259     [self setupExtensionsMenu];
260
261     [self refreshAudioDeviceList];
262 }
263
264 - (void)initStrings
265 {
266     /* main menu */
267     [o_mi_about setTitle: [_NS("About VLC media player") \
268                            stringByAppendingString: @"..."]];
269     [o_mi_checkForUpdate setTitle: _NS("Check for Update...")];
270     [o_mi_prefs setTitle: _NS("Preferences...")];
271     [o_mi_extensions setTitle: _NS("Extensions")];
272     [o_mu_extensions setTitle: _NS("Extensions")];
273     [o_mi_add_intf setTitle: _NS("Add Interface")];
274     [o_mu_add_intf setTitle: _NS("Add Interface")];
275     [o_mi_services setTitle: _NS("Services")];
276     [o_mi_hide setTitle: _NS("Hide VLC")];
277     [o_mi_hide_others setTitle: _NS("Hide Others")];
278     [o_mi_show_all setTitle: _NS("Show All")];
279     [o_mi_quit setTitle: _NS("Quit VLC")];
280
281     [o_mu_file setTitle: _ANS("1:File")];
282     [o_mi_open_generic setTitle: _NS("Advanced Open File...")];
283     [o_mi_open_file setTitle: _NS("Open File...")];
284     [o_mi_open_disc setTitle: _NS("Open Disc...")];
285     [o_mi_open_net setTitle: _NS("Open Network...")];
286     [o_mi_open_capture setTitle: _NS("Open Capture Device...")];
287     [o_mi_open_recent setTitle: _NS("Open Recent")];
288     [o_mi_open_wizard setTitle: _NS("Streaming/Exporting Wizard...")];
289     [o_mi_convertandsave setTitle: _NS("Convert / Stream...")];
290
291     [o_mu_edit setTitle: _NS("Edit")];
292     [o_mi_cut setTitle: _NS("Cut")];
293     [o_mi_copy setTitle: _NS("Copy")];
294     [o_mi_paste setTitle: _NS("Paste")];
295     [o_mi_clear setTitle: _NS("Clear")];
296     [o_mi_select_all setTitle: _NS("Select All")];
297
298     [o_mu_view setTitle: _NS("View")];
299     [o_mi_toggleJumpButtons setTitle: _NS("Show Previous & Next Buttons")];
300     [o_mi_toggleJumpButtons setState: config_GetInt(VLCIntf, "macosx-show-playback-buttons")];
301     [o_mi_togglePlaymodeButtons setTitle: _NS("Show Shuffle & Repeat Buttons")];
302     [o_mi_togglePlaymodeButtons setState: config_GetInt(VLCIntf, "macosx-show-playmode-buttons")];
303     [o_mi_toggleSidebar setTitle: _NS("Show Sidebar")];
304     [o_mi_toggleSidebar setState: config_GetInt(VLCIntf, "macosx-show-sidebar")];
305     [o_mu_playlistTableColumns setTitle: _NS("Playlist Table Columns")];
306
307     [o_mu_controls setTitle: _NS("Playback")];
308     [o_mi_play setTitle: _NS("Play")];
309     [o_mi_stop setTitle: _NS("Stop")];
310     [o_mi_record setTitle: _NS("Record")];
311     [o_mi_rate setView: o_mi_rate_view];
312     [o_mi_rate_lbl setStringValue: _NS("Playback Speed")];
313     [o_mi_rate_lbl_gray setStringValue: _NS("Playback Speed")];
314     [o_mi_rate_slower_lbl setStringValue: _NS("Slower")];
315     [o_mi_rate_normal_lbl setStringValue: _NS("Normal")];
316     [o_mi_rate_faster_lbl setStringValue: _NS("Faster")];
317     [o_mi_trackSynchronization setTitle: _NS("Track Synchronization")];
318     [o_mi_previous setTitle: _NS("Previous")];
319     [o_mi_next setTitle: _NS("Next")];
320     [o_mi_random setTitle: _NS("Random")];
321     [o_mi_repeat setTitle: _NS("Repeat One")];
322     [o_mi_loop setTitle: _NS("Repeat All")];
323     [o_mi_AtoBloop setTitle: _NS("A→B Loop")];
324     [o_mi_quitAfterPB setTitle: _NS("Quit after Playback")];
325     [o_mi_fwd setTitle: _NS("Step Forward")];
326     [o_mi_bwd setTitle: _NS("Step Backward")];
327
328     [o_mi_program setTitle: _NS("Program")];
329     [o_mu_program setTitle: _NS("Program")];
330     [o_mi_title setTitle: _NS("Title")];
331     [o_mu_title setTitle: _NS("Title")];
332     [o_mi_chapter setTitle: _NS("Chapter")];
333     [o_mu_chapter setTitle: _NS("Chapter")];
334
335     [o_mu_audio setTitle: _NS("Audio")];
336     [o_mi_vol_up setTitle: _NS("Increase Volume")];
337     [o_mi_vol_down setTitle: _NS("Decrease Volume")];
338     [o_mi_mute setTitle: _NS("Mute")];
339     [o_mi_audiotrack setTitle: _NS("Audio Track")];
340     [o_mu_audiotrack setTitle: _NS("Audio Track")];
341     [o_mi_channels setTitle: _NS("Audio Channels")];
342     [o_mu_channels setTitle: _NS("Audio Channels")];
343     [o_mi_device setTitle: _NS("Audio Device")];
344     [o_mu_device setTitle: _NS("Audio Device")];
345     [o_mi_visual setTitle: _NS("Visualizations")];
346     [o_mu_visual setTitle: _NS("Visualizations")];
347
348     [o_mu_video setTitle: _NS("Video")];
349     [o_mi_half_window setTitle: _NS("Half Size")];
350     [o_mi_normal_window setTitle: _NS("Normal Size")];
351     [o_mi_double_window setTitle: _NS("Double Size")];
352     [o_mi_fittoscreen setTitle: _NS("Fit to Screen")];
353     [o_mi_fullscreen setTitle: _NS("Fullscreen")];
354     [o_mi_floatontop setTitle: _NS("Float on Top")];
355     [o_mi_snapshot setTitle: _NS("Snapshot")];
356     [o_mi_videotrack setTitle: _NS("Video Track")];
357     [o_mu_videotrack setTitle: _NS("Video Track")];
358     [o_mi_aspect_ratio setTitle: _NS("Aspect-ratio")];
359     [o_mu_aspect_ratio setTitle: _NS("Aspect-ratio")];
360     [o_mi_crop setTitle: _NS("Crop")];
361     [o_mu_crop setTitle: _NS("Crop")];
362     [o_mi_screen setTitle: _NS("Fullscreen Video Device")];
363     [o_mu_screen setTitle: _NS("Fullscreen Video Device")];
364     [o_mi_deinterlace setTitle: _NS("Deinterlace")];
365     [o_mu_deinterlace setTitle: _NS("Deinterlace")];
366     [o_mi_deinterlace_mode setTitle: _NS("Deinterlace mode")];
367     [o_mu_deinterlace_mode setTitle: _NS("Deinterlace mode")];
368     [o_mi_ffmpeg_pp setTitle: _NS("Post processing")];
369     [o_mu_ffmpeg_pp setTitle: _NS("Post processing")];
370
371     [o_mu_subtitles setTitle:_NS("Subtitles")];
372     [o_mi_subtitle_track setTitle: _NS("Subtitles Track")];
373     [o_mu_subtitle_tracks setTitle: _NS("Subtitles Track")];
374     [o_mi_openSubtitleFile setTitle: _NS("Open File...")];
375     [o_mi_teletext setTitle: _NS("Teletext")];
376     [o_mi_teletext_transparent setTitle: _NS("Transparent")];
377     [o_mi_teletext_index setTitle: _NS("Index")];
378     [o_mi_teletext_red setTitle: _NS("Red")];
379     [o_mi_teletext_green setTitle: _NS("Green")];
380     [o_mi_teletext_yellow setTitle: _NS("Yellow")];
381     [o_mi_teletext_blue setTitle: _NS("Blue")];
382
383     [o_mu_window setTitle: _NS("Window")];
384     [o_mi_minimize setTitle: _NS("Minimize Window")];
385     [o_mi_close_window setTitle: _NS("Close Window")];
386     [o_mi_player setTitle: _NS("Player...")];
387     [o_mi_controller setTitle: _NS("Main Window...")];
388     [o_mi_audioeffects setTitle: _NS("Audio Effects...")];
389     [o_mi_videoeffects setTitle: _NS("Video Effects...")];
390     [o_mi_bookmarks setTitle: _NS("Bookmarks...")];
391     [o_mi_playlist setTitle: _NS("Playlist...")];
392     [o_mi_info setTitle: _NS("Media Information...")];
393     [o_mi_messages setTitle: _NS("Messages...")];
394     [o_mi_errorsAndWarnings setTitle: _NS("Errors and Warnings...")];
395
396     [o_mi_bring_atf setTitle: _NS("Bring All to Front")];
397
398     [o_mu_help setTitle: _NS("Help")];
399     [o_mi_help setTitle: _NS("VLC media player Help...")];
400     [o_mi_readme setTitle: _NS("ReadMe / FAQ...")];
401     [o_mi_license setTitle: _NS("License")];
402     [o_mi_documentation setTitle: _NS("Online Documentation...")];
403     [o_mi_website setTitle: _NS("VideoLAN Website...")];
404     [o_mi_donation setTitle: _NS("Make a donation...")];
405     [o_mi_forum setTitle: _NS("Online Forum...")];
406
407     /* dock menu */
408     [o_dmi_play setTitle: _NS("Play")];
409     [o_dmi_stop setTitle: _NS("Stop")];
410     [o_dmi_next setTitle: _NS("Next")];
411     [o_dmi_previous setTitle: _NS("Previous")];
412     [o_dmi_mute setTitle: _NS("Mute")];
413
414     /* vout menu */
415     [o_vmi_play setTitle: _NS("Play")];
416     [o_vmi_stop setTitle: _NS("Stop")];
417     [o_vmi_prev setTitle: _NS("Previous")];
418     [o_vmi_next setTitle: _NS("Next")];
419     [o_vmi_volup setTitle: _NS("Volume Up")];
420     [o_vmi_voldown setTitle: _NS("Volume Down")];
421     [o_vmi_mute setTitle: _NS("Mute")];
422     [o_vmi_fullscreen setTitle: _NS("Fullscreen")];
423     [o_vmi_snapshot setTitle: _NS("Snapshot")];
424 }
425
426 - (NSMenu *)setupPlaylistTableColumnsMenu
427 {
428     NSMenu *o_context_menu = [[NSMenu alloc] init];
429
430     NSMenuItem *o_mi_tmp;
431     NSUInteger count = [o_ptc_menuorder count];
432     for (NSUInteger i = 0; i < count; i++) {
433         NSString *o_title = [o_ptc_translation_dict objectForKey:[o_ptc_menuorder objectAtIndex:i]];
434         o_mi_tmp = [o_mu_playlistTableColumns addItemWithTitle:o_title
435                                                         action:@selector(togglePlaylistColumnTable:)
436                                                  keyEquivalent:@""];
437         /* don't set a valid target for the title column selector, since we want it to be disabled */
438         if (![[o_ptc_menuorder objectAtIndex:i] isEqualToString: TITLE_COLUMN])
439             [o_mi_tmp setTarget:self];
440         [o_mi_tmp setTag:i];
441
442         o_mi_tmp = [o_context_menu addItemWithTitle:o_title
443                                              action:@selector(togglePlaylistColumnTable:)
444                                       keyEquivalent:@""];
445         /* don't set a valid target for the title column selector, since we want it to be disabled */
446         if (![[o_ptc_menuorder objectAtIndex:i] isEqualToString: TITLE_COLUMN])
447             [o_mi_tmp setTarget:self];
448         [o_mi_tmp setTag:i];
449     }
450     if (!o_mu_playlistTableColumnsContextMenu)
451         o_mu_playlistTableColumnsContextMenu = [o_context_menu retain];
452     return [o_context_menu autorelease];
453 }
454
455 #pragma mark -
456 #pragma mark Termination
457
458 - (void)releaseRepresentedObjects:(NSMenu *)the_menu
459 {
460     if (!p_intf) return;
461
462     NSArray *menuitems_array = [the_menu itemArray];
463     NSUInteger menuItemCount = [menuitems_array count];
464     for (NSUInteger i=0; i < menuItemCount; i++) {
465         NSMenuItem *one_item = [menuitems_array objectAtIndex: i];
466         if ([one_item hasSubmenu])
467             [self releaseRepresentedObjects: [one_item submenu]];
468
469         [one_item setRepresentedObject:NULL];
470     }
471 }
472
473 #pragma mark -
474 #pragma mark Interface update
475
476 - (void)setupMenus
477 {
478     playlist_t * p_playlist = pl_Get(p_intf);
479     input_thread_t * p_input = playlist_CurrentInput(p_playlist);
480     if (p_input != NULL) {
481         [o_mi_record setEnabled: var_GetBool(p_input, "can-record")];
482
483         [self setupVarMenuItem: o_mi_program target: (vlc_object_t *)p_input
484                                  var: "program" selector: @selector(toggleVar:)];
485
486         [self setupVarMenuItem: o_mi_title target: (vlc_object_t *)p_input
487                                  var: "title" selector: @selector(toggleVar:)];
488
489         [self setupVarMenuItem: o_mi_chapter target: (vlc_object_t *)p_input
490                                  var: "chapter" selector: @selector(toggleVar:)];
491
492         [self setupVarMenuItem: o_mi_audiotrack target: (vlc_object_t *)p_input
493                                  var: "audio-es" selector: @selector(toggleVar:)];
494
495         [self setupVarMenuItem: o_mi_videotrack target: (vlc_object_t *)p_input
496                                  var: "video-es" selector: @selector(toggleVar:)];
497
498         [self setupVarMenuItem: o_mi_subtitle_track target: (vlc_object_t *)p_input
499                                  var: "spu-es" selector: @selector(toggleVar:)];
500
501         audio_output_t * p_aout = playlist_GetAout(p_playlist);
502         if (p_aout != NULL) {
503             [self setupVarMenuItem: o_mi_channels target: (vlc_object_t *)p_aout
504                                      var: "stereo-mode" selector: @selector(toggleVar:)];
505
506             [self setupVarMenuItem: o_mi_visual target: (vlc_object_t *)p_aout
507                                      var: "visual" selector: @selector(toggleVar:)];
508             vlc_object_release(p_aout);
509         }
510
511         vout_thread_t * p_vout = getVoutForActiveWindow();
512
513         if (p_vout != NULL) {
514             [self setupVarMenuItem: o_mi_aspect_ratio target: (vlc_object_t *)p_vout
515                                      var: "aspect-ratio" selector: @selector(toggleVar:)];
516
517             [self setupVarMenuItem: o_mi_crop target: (vlc_object_t *) p_vout
518                                      var: "crop" selector: @selector(toggleVar:)];
519
520             [self setupVarMenuItem: o_mi_deinterlace target: (vlc_object_t *)p_vout
521                                      var: "deinterlace" selector: @selector(toggleVar:)];
522
523             [self setupVarMenuItem: o_mi_deinterlace_mode target: (vlc_object_t *)p_vout
524                                      var: "deinterlace-mode" selector: @selector(toggleVar:)];
525
526 #if 1
527             [self setupVarMenuItem: o_mi_ffmpeg_pp target:
528              (vlc_object_t *)p_vout var:"postprocess" selector:
529              @selector(toggleVar:)];
530 #endif
531             vlc_object_release(p_vout);
532
533             [self refreshVoutDeviceMenu:nil];
534         }
535         vlc_object_release(p_input);
536     }
537     else
538         [o_mi_record setEnabled: NO];
539 }
540
541 - (void)refreshVoutDeviceMenu:(NSNotification *)o_notification
542 {
543     NSUInteger count = [o_mu_screen numberOfItems];
544     NSMenu * o_submenu = o_mu_screen;
545     if (count > 0)
546         [o_submenu removeAllItems];
547
548     NSArray * o_screens = [NSScreen screens];
549     NSMenuItem * o_mitem;
550     count = [o_screens count];
551     [o_mi_screen setEnabled: YES];
552     [o_submenu addItemWithTitle: _NS("Default") action:@selector(toggleFullscreenDevice:) keyEquivalent:@""];
553     o_mitem = [o_submenu itemAtIndex: 0];
554     [o_mitem setTag: 0];
555     [o_mitem setEnabled: YES];
556     [o_mitem setTarget: self];
557     NSRect s_rect;
558     for (NSUInteger i = 0; i < count; i++) {
559         s_rect = [[o_screens objectAtIndex: i] frame];
560         [o_submenu addItemWithTitle: [NSString stringWithFormat: @"%@ %li (%ix%i)", _NS("Screen"), i+1,
561                                       (int)s_rect.size.width, (int)s_rect.size.height] action:@selector(toggleFullscreenDevice:) keyEquivalent:@""];
562         o_mitem = [o_submenu itemAtIndex:i+1];
563         [o_mitem setTag: (int)[[o_screens objectAtIndex: i] displayID]];
564         [o_mitem setEnabled: YES];
565         [o_mitem setTarget: self];
566     }
567     [[o_submenu itemWithTag: var_InheritInteger(VLCIntf, "macosx-vdev")] setState: NSOnState];
568 }
569
570 - (void)setSubmenusEnabled:(BOOL)b_enabled
571 {
572     [o_mi_program setEnabled: b_enabled];
573     [o_mi_title setEnabled: b_enabled];
574     [o_mi_chapter setEnabled: b_enabled];
575     [o_mi_audiotrack setEnabled: b_enabled];
576     [o_mi_visual setEnabled: b_enabled];
577     [o_mi_videotrack setEnabled: b_enabled];
578     [o_mi_subtitle_track setEnabled: b_enabled];
579     [o_mi_channels setEnabled: b_enabled];
580     [o_mi_deinterlace setEnabled: b_enabled];
581     [o_mi_deinterlace_mode setEnabled: b_enabled];
582     [o_mi_ffmpeg_pp setEnabled: b_enabled];
583     [o_mi_screen setEnabled: b_enabled];
584     [o_mi_aspect_ratio setEnabled: b_enabled];
585     [o_mi_crop setEnabled: b_enabled];
586 }
587
588 - (void)setSubtitleMenuEnabled:(BOOL)b_enabled
589 {
590     [o_mi_openSubtitleFile setEnabled: b_enabled];
591     [o_mi_teletext setEnabled: b_enabled];
592 }
593
594 - (void)setRateControlsEnabled:(BOOL)b_enabled
595 {
596     NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
597     [o_mi_rate_sld setEnabled: b_enabled];
598     [o_mi_rate_sld setIntValue: [[VLCCoreInteraction sharedInstance] playbackRate]];
599     int i = [[VLCCoreInteraction sharedInstance] playbackRate];
600     double speed =  pow(2, (double)i / 17);
601     [o_mi_rate_fld setStringValue: [NSString stringWithFormat:@"%.2fx", speed]];
602     if (b_enabled) {
603         [o_mi_rate_lbl setHidden: NO];
604         [o_mi_rate_lbl_gray setHidden: YES];
605     } else {
606         [o_mi_rate_lbl setHidden: YES];
607         [o_mi_rate_lbl_gray setHidden: NO];
608     }
609     [self setSubtitleMenuEnabled: b_enabled];
610     [o_pool release];
611 }
612
613 #pragma mark -
614 #pragma mark Extensions
615
616 - (void)setupExtensionsMenu
617 {
618     /* Load extensions if needed */
619     // TODO: Implement preference for autoloading extensions on mac
620
621     // if (!var_InheritBool(p_intf, "qt-autoload-extensions")
622     //     && ![o_extMgr isLoaded])
623     // {
624     //     return;
625     // }
626
627     if (![o_extMgr isLoaded] && ![o_extMgr cannotLoad]) {
628         [o_extMgr loadExtensions];
629     }
630
631     /* Let the ExtensionsManager itself build the menu */
632     [o_extMgr buildMenu:o_mu_extensions];
633     [o_mi_extensions setEnabled: ([o_mu_extensions numberOfItems] > 0)];
634 }
635
636 #pragma mark -
637 #pragma mark View
638 - (IBAction)toggleJumpButtons:(id)sender
639 {
640     BOOL b_value = !config_GetInt(VLCIntf, "macosx-show-playback-buttons");
641     config_PutInt(VLCIntf, "macosx-show-playback-buttons", b_value);
642     [[[[VLCMain sharedInstance] mainWindow] controlsBar] toggleJumpButtons];
643     [o_mi_toggleJumpButtons setState: b_value];
644 }
645
646 - (IBAction)togglePlaymodeButtons:(id)sender
647 {
648     BOOL b_value = !config_GetInt(VLCIntf, "macosx-show-playmode-buttons");
649     config_PutInt(VLCIntf, "macosx-show-playmode-buttons", b_value);
650     [[[[VLCMain sharedInstance] mainWindow] controlsBar] togglePlaymodeButtons];
651     [o_mi_togglePlaymodeButtons setState: b_value];
652 }
653
654 - (IBAction)toggleSidebar:(id)sender
655 {
656     BOOL b_value = !config_GetInt(VLCIntf, "macosx-show-sidebar");
657     config_PutInt(VLCIntf, "macosx-show-sidebar", b_value);
658     [[[VLCMain sharedInstance] mainWindow] toggleLeftSubSplitView];
659     [o_mi_toggleSidebar setState: b_value];
660 }
661
662 - (void)updateSidebarMenuItem
663 {
664     [o_mi_toggleSidebar setState: config_GetInt(VLCIntf, "macosx-show-sidebar")];
665 }
666
667 - (IBAction)togglePlaylistColumnTable:(id)sender
668 {
669     NSInteger i_new_state = ![sender state];
670     NSInteger i_tag = [sender tag];
671     [[o_mu_playlistTableColumns            itemWithTag: i_tag] setState: i_new_state];
672     [[o_mu_playlistTableColumnsContextMenu itemWithTag: i_tag] setState: i_new_state];
673
674     NSString *o_column = [o_ptc_menuorder objectAtIndex: i_tag];
675     [[[VLCMain sharedInstance] playlist] setColumn: o_column state: i_new_state translationDict: o_ptc_translation_dict];
676 }
677
678 - (void)setPlaylistColumnTableState:(NSInteger)i_state forColumn:(NSString *)o_column
679 {
680     NSInteger i_tag = [o_ptc_menuorder indexOfObject: o_column];
681     [[o_mu_playlistTableColumns            itemWithTag: i_tag] setState: i_state];
682     [[o_mu_playlistTableColumnsContextMenu itemWithTag: i_tag] setState: i_state];
683     [[[VLCMain sharedInstance] playlist] setColumn: o_column state: i_state translationDict: o_ptc_translation_dict];
684 }
685
686 #pragma mark -
687 #pragma mark Playback
688 - (IBAction)toggleRecord:(id)sender
689 {
690     [[VLCCoreInteraction sharedInstance] toggleRecord];
691 }
692
693 - (void)updateRecordState:(BOOL)b_value
694 {
695     [o_mi_record setState:b_value];
696 }
697
698 - (IBAction)setPlaybackRate:(id)sender
699 {
700     [[VLCCoreInteraction sharedInstance] setPlaybackRate: [o_mi_rate_sld intValue]];
701     int i = [[VLCCoreInteraction sharedInstance] playbackRate];
702     double speed =  pow(2, (double)i / 17);
703     [o_mi_rate_fld setStringValue: [NSString stringWithFormat:@"%.2fx", speed]];
704 }
705
706 - (void)updatePlaybackRate
707 {
708     int i = [[VLCCoreInteraction sharedInstance] playbackRate];
709     double speed =  pow(2, (double)i / 17);
710     [o_mi_rate_fld setStringValue: [NSString stringWithFormat:@"%.2fx", speed]];
711     [o_mi_rate_sld setIntValue: i];
712 }
713
714 - (IBAction)toggleAtoBloop:(id)sender
715 {
716     [[VLCCoreInteraction sharedInstance] setAtoB];
717 }
718
719 #pragma mark -
720 #pragma mark audio menu
721 - (void)refreshAudioDeviceList
722 {
723     char **ids, **names;
724     char *currentDevice;
725
726     [o_mu_device removeAllItems];
727
728     audio_output_t * p_aout = getAout();
729     if (!p_aout)
730         return;
731
732     int n = aout_DevicesList(p_aout, &ids, &names);
733     if (n == -1) {
734         vlc_object_release(p_aout);
735         return;
736     }
737
738     currentDevice = aout_DeviceGet(p_aout);
739     NSMenuItem * o_mi_tmp;
740
741     for (NSUInteger x = 0; x < n; x++) {
742         o_mi_tmp = [o_mu_device addItemWithTitle:[NSString stringWithFormat:@"%s", names[x]] action:@selector(toggleAudioDevice:) keyEquivalent:@""];
743         [o_mi_tmp setTarget:self];
744         [o_mi_tmp setTag:[[NSString stringWithFormat:@"%s", ids[x]] intValue]];
745     }
746     vlc_object_release(p_aout);
747
748     [[o_mu_device itemWithTag:[[NSString stringWithFormat:@"%s", currentDevice] intValue]] setState:NSOnState];
749
750     for (NSUInteger x = 0; x < n; x++) {
751         free(ids[x]);
752         free(names[x]);
753     }
754     free(ids);
755     free(names);
756
757     [o_mu_device setAutoenablesItems:YES];
758     [o_mi_device setEnabled:YES];
759 }
760
761 - (IBAction)toggleAudioDevice:(id)sender
762 {
763     audio_output_t * p_aout = getAout();
764     if (!p_aout)
765         return;
766
767     int returnValue = 0;
768
769     if ([sender tag] > 0)
770         returnValue = aout_DeviceSet(p_aout, [[NSString stringWithFormat:@"%li", [sender tag]] UTF8String]);
771     else
772         returnValue = aout_DeviceSet(p_aout, NULL);
773
774     if (returnValue != 0)
775         msg_Warn(VLCIntf, "failed to set audio device %li", [sender tag]);
776
777     vlc_object_release(p_aout);
778     [self refreshAudioDeviceList];
779 }
780
781 #pragma mark -
782 #pragma mark video menu
783
784 - (IBAction)toggleFullscreen:(id)sender
785 {
786     [[VLCCoreInteraction sharedInstance] toggleFullscreen];
787 }
788
789 - (IBAction)resizeVideoWindow:(id)sender
790 {
791     input_thread_t *p_input = pl_CurrentInput(VLCIntf);
792     if (p_input) {
793         vout_thread_t *p_vout = getVoutForActiveWindow();
794         if (p_vout) {
795             if (sender == o_mi_half_window)
796                 var_SetFloat(p_vout, "zoom", 0.5);
797             else if (sender == o_mi_normal_window)
798                 var_SetFloat(p_vout, "zoom", 1.0);
799             else if (sender == o_mi_double_window)
800                 var_SetFloat(p_vout, "zoom", 2.0);
801             else
802             {
803                 [[NSApp keyWindow] performZoom:sender];
804             }
805             vlc_object_release(p_vout);
806         }
807         vlc_object_release(p_input);
808     }
809 }
810
811 - (IBAction)floatOnTop:(id)sender
812 {
813     input_thread_t *p_input = pl_CurrentInput(VLCIntf);
814     if (p_input) {
815         vout_thread_t *p_vout = getVoutForActiveWindow();
816         if (p_vout) {
817             var_ToggleBool(p_vout, "video-on-top");
818             vlc_object_release(p_vout);
819         }
820         vlc_object_release(p_input);
821     }
822 }
823
824 - (IBAction)createVideoSnapshot:(id)sender
825 {
826     input_thread_t *p_input = pl_CurrentInput(VLCIntf);
827     if (p_input) {
828         vout_thread_t *p_vout = getVoutForActiveWindow();
829         if (p_vout) {
830             var_TriggerCallback(p_vout, "video-snapshot");
831             vlc_object_release(p_vout);
832         }
833         vlc_object_release(p_input);
834     }
835 }
836
837 - (IBAction)toggleFullscreenDevice:(id)sender
838 {
839     config_PutInt(VLCIntf, "macosx-vdev", [sender tag]);
840     [self refreshVoutDeviceMenu: nil];
841 }
842
843 - (id)voutMenu
844 {
845     return o_vout_menu;
846 }
847
848 #pragma mark - Subtitles Menu
849 - (IBAction)addSubtitleFile:(id)sender
850 {
851     NSInteger i_returnValue = 0;
852     input_thread_t * p_input = pl_CurrentInput(VLCIntf);
853     if (!p_input)
854         return;
855
856     input_item_t *p_item = input_GetItem(p_input);
857     if (!p_item) {
858         vlc_object_release(p_input);
859         return;
860     }
861
862     char *path = input_item_GetURI(p_item);
863     if (!path)
864         path = strdup("");
865
866     NSOpenPanel * openPanel = [NSOpenPanel openPanel];
867     [openPanel setCanChooseFiles: YES];
868     [openPanel setCanChooseDirectories: NO];
869     [openPanel setAllowsMultipleSelection: YES];
870     [openPanel setAllowedFileTypes: [NSArray arrayWithObjects: @"cdg",@"@idx",@"srt",@"sub",@"utf",@"ass",@"ssa",@"aqt",@"jss",@"psb",@"rt",@"smi",@"txt",@"smil", nil]];
871     [openPanel setDirectoryURL:[NSURL fileURLWithPath:[[NSString stringWithUTF8String:path] stringByExpandingTildeInPath]]];
872     i_returnValue = [openPanel runModal];
873     free(path);
874
875     if (i_returnValue == NSOKButton) {
876         NSUInteger c = 0;
877         if (!p_input)
878             return;
879
880         c = [[openPanel URLs] count];
881
882         for (int i = 0; i < c ; i++) {
883             msg_Dbg(VLCIntf, "loading subs from %s", [[[[openPanel URLs] objectAtIndex: i] path] UTF8String]);
884             if (input_AddSubtitle(p_input, [[[[openPanel URLs] objectAtIndex: i] path] UTF8String], TRUE))
885                 msg_Warn(VLCIntf, "unable to load subtitles from '%s'",
886                          [[[[openPanel URLs] objectAtIndex: i] path] UTF8String]);
887         }
888     }
889     vlc_object_release(p_input);
890 }
891
892 - (IBAction)telxTransparent:(id)sender
893 {
894     vlc_object_t *p_vbi;
895     p_vbi = (vlc_object_t *) vlc_object_find_name(pl_Get(VLCIntf), "zvbi");
896     if (p_vbi) {
897         var_SetBool(p_vbi, "vbi-opaque", [sender state]);
898         [sender setState: ![sender state]];
899         vlc_object_release(p_vbi);
900     }
901 }
902
903 - (IBAction)telxNavLink:(id)sender
904 {
905     intf_thread_t * p_intf = VLCIntf;
906     vlc_object_t *p_vbi;
907     int i_page = 0;
908
909     if ([[sender title] isEqualToString: _NS("Index")])
910         i_page = 'i' << 16;
911     else if ([[sender title] isEqualToString: _NS("Red")])
912         i_page = 'r' << 16;
913     else if ([[sender title] isEqualToString: _NS("Green")])
914         i_page = 'g' << 16;
915     else if ([[sender title] isEqualToString: _NS("Yellow")])
916         i_page = 'y' << 16;
917     else if ([[sender title] isEqualToString: _NS("Blue")])
918         i_page = 'b' << 16;
919     if (i_page == 0) return;
920
921     p_vbi = (vlc_object_t *) vlc_object_find_name(pl_Get(VLCIntf), "zvbi");
922     if (p_vbi) {
923         var_SetInteger(p_vbi, "vbi-page", i_page);
924         vlc_object_release(p_vbi);
925     }
926 }
927
928 #pragma mark -
929 #pragma mark Panels
930
931 - (IBAction)intfOpenFile:(id)sender
932 {
933     [[[VLCMain sharedInstance] open] openFile];
934 }
935
936 - (IBAction)intfOpenFileGeneric:(id)sender
937 {
938     [[[VLCMain sharedInstance] open] openFileGeneric];
939 }
940
941 - (IBAction)intfOpenDisc:(id)sender
942 {
943     [[[VLCMain sharedInstance] open] openDisc];
944 }
945
946 - (IBAction)intfOpenNet:(id)sender
947 {
948     [[[VLCMain sharedInstance] open] openNet];
949 }
950
951 - (IBAction)intfOpenCapture:(id)sender
952 {
953     [[[VLCMain sharedInstance] open] openCapture];
954 }
955
956 - (IBAction)showWizard:(id)sender
957 {
958     [[[VLCMain sharedInstance] wizard] resetWizard];
959     [[[VLCMain sharedInstance] wizard] showWizard];
960 }
961
962 - (IBAction)showConvertAndSave:(id)sender
963 {
964     if (o_convertandsave == nil)
965         o_convertandsave = [[VLCConvertAndSave alloc] init];
966
967     if (!b_nib_convertandsave_loaded)
968         b_nib_convertandsave_loaded = [NSBundle loadNibNamed:@"ConvertAndSave" owner: NSApp];
969
970     [o_convertandsave toggleWindow];
971 }
972
973 - (IBAction)showVideoEffects:(id)sender
974 {
975     if (o_videoeffects == nil)
976         o_videoeffects = [[VLCVideoEffects alloc] init];
977
978     if (!b_nib_videoeffects_loaded)
979         b_nib_videoeffects_loaded = [NSBundle loadNibNamed:@"VideoEffects" owner: NSApp];
980
981     [o_videoeffects toggleWindow:sender];
982 }
983
984 - (IBAction)showTrackSynchronization:(id)sender
985 {
986     if (!o_trackSynchronization)
987         o_trackSynchronization = [[VLCTrackSynchronization alloc] init];
988
989     if (!b_nib_tracksynchro_loaded)
990         b_nib_tracksynchro_loaded = [NSBundle loadNibNamed:@"SyncTracks" owner:NSApp];
991
992     [o_trackSynchronization toggleWindow:sender];
993 }
994
995 - (IBAction)showAudioEffects:(id)sender
996 {
997     if (!o_audioeffects)
998         o_audioeffects = [[VLCAudioEffects alloc] init];
999
1000     if (!b_nib_audioeffects_loaded)
1001         b_nib_audioeffects_loaded = [NSBundle loadNibNamed:@"AudioEffects" owner:NSApp];
1002
1003     [o_audioeffects toggleWindow:sender];
1004 }
1005
1006 - (IBAction)showBookmarks:(id)sender
1007 {
1008     [[[VLCMain sharedInstance] bookmarks] showBookmarks];
1009 }
1010
1011 - (IBAction)viewPreferences:(id)sender
1012 {
1013     NSInteger i_level = [[[VLCMain sharedInstance] voutController] currentWindowLevel];
1014     [[[VLCMain sharedInstance] simplePreferences] showSimplePrefsWithLevel:i_level];
1015 }
1016
1017 #pragma mark -
1018 #pragma mark Help and Docs
1019
1020 - (void)initAbout
1021 {
1022     if (! o_about)
1023         o_about = [[VLAboutBox alloc] init];
1024
1025     if (!b_nib_about_loaded)
1026         b_nib_about_loaded = [NSBundle loadNibNamed:@"About" owner: NSApp];
1027 }
1028
1029 - (IBAction)viewAbout:(id)sender
1030 {
1031     [self initAbout];
1032     [o_about showAbout];
1033 }
1034
1035 - (IBAction)showLicense:(id)sender
1036 {
1037     [self initAbout];
1038     [o_about showGPL: sender];
1039 }
1040
1041 - (IBAction)viewHelp:(id)sender
1042 {
1043     [self initAbout];
1044     [o_about showHelp];
1045 }
1046
1047 - (IBAction)openReadMe:(id)sender
1048 {
1049     NSString * o_path = [[NSBundle mainBundle] pathForResource: @"README.MacOSX" ofType: @"rtf"];
1050
1051     [[NSWorkspace sharedWorkspace] openFile: o_path withApplication: @"TextEdit"];
1052 }
1053
1054 - (IBAction)openDocumentation:(id)sender
1055 {
1056     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/doc/"];
1057
1058     [[NSWorkspace sharedWorkspace] openURL: o_url];
1059 }
1060
1061 - (IBAction)openWebsite:(id)sender
1062 {
1063     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/"];
1064
1065     [[NSWorkspace sharedWorkspace] openURL: o_url];
1066 }
1067
1068 - (IBAction)openForum:(id)sender
1069 {
1070     NSURL * o_url = [NSURL URLWithString: @"http://forum.videolan.org/"];
1071
1072     [[NSWorkspace sharedWorkspace] openURL: o_url];
1073 }
1074
1075 - (IBAction)openDonate:(id)sender
1076 {
1077     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
1078
1079     [[NSWorkspace sharedWorkspace] openURL: o_url];
1080 }
1081
1082 #pragma mark -
1083 #pragma mark Errors, warnings and messages
1084
1085 - (IBAction)viewErrorsAndWarnings:(id)sender
1086 {
1087     [[[[VLCMain sharedInstance] coreDialogProvider] errorPanel] showPanel];
1088 }
1089
1090 - (IBAction)showInformationPanel:(id)sender
1091 {
1092     [[[VLCMain sharedInstance] info] initPanel];
1093 }
1094
1095 #pragma mark -
1096 #pragma mark convinience stuff for other objects
1097 - (void)setPlay
1098 {
1099     [o_mi_play setTitle: _NS("Play")];
1100     [o_dmi_play setTitle: _NS("Play")];
1101     [o_vmi_play setTitle: _NS("Play")];
1102 }
1103
1104 - (void)setPause
1105 {
1106     [o_mi_play setTitle: _NS("Pause")];
1107     [o_dmi_play setTitle: _NS("Pause")];
1108     [o_vmi_play setTitle: _NS("Pause")];
1109 }
1110
1111 - (void)setRepeatOne
1112 {
1113     [o_mi_repeat setState: NSOnState];
1114     [o_mi_loop setState: NSOffState];
1115 }
1116
1117 - (void)setRepeatAll
1118 {
1119     [o_mi_repeat setState: NSOffState];
1120     [o_mi_loop setState: NSOnState];
1121 }
1122
1123 - (void)setRepeatOff
1124 {
1125     [o_mi_repeat setState: NSOffState];
1126     [o_mi_loop setState: NSOffState];
1127 }
1128
1129 - (void)setShuffle
1130 {
1131     bool b_value;
1132     playlist_t *p_playlist = pl_Get(VLCIntf);
1133     b_value = var_GetBool(p_playlist, "random");
1134
1135     [o_mi_random setState: b_value];
1136 }
1137
1138 #pragma mark -
1139 #pragma mark Dynamic menu creation and validation
1140
1141 - (void)setupVarMenuItem:(NSMenuItem *)o_mi
1142                   target:(vlc_object_t *)p_object
1143                      var:(const char *)psz_variable
1144                 selector:(SEL)pf_callback
1145 {
1146     vlc_value_t val, text;
1147     int i_type = var_Type(p_object, psz_variable);
1148
1149     switch(i_type & VLC_VAR_TYPE) {
1150         case VLC_VAR_VOID:
1151         case VLC_VAR_BOOL:
1152         case VLC_VAR_VARIABLE:
1153         case VLC_VAR_STRING:
1154         case VLC_VAR_INTEGER:
1155             break;
1156         default:
1157             /* Variable doesn't exist or isn't handled */
1158             return;
1159     }
1160
1161     /* Get the descriptive name of the variable */
1162     var_Change(p_object, psz_variable, VLC_VAR_GETTEXT, &text, NULL);
1163     [o_mi setTitle: _NS(text.psz_string ? text.psz_string : psz_variable)];
1164
1165     if (i_type & VLC_VAR_HASCHOICE) {
1166         NSMenu *o_menu = [o_mi submenu];
1167
1168         [self setupVarMenu: o_menu forMenuItem: o_mi target:p_object
1169                        var:psz_variable selector:pf_callback];
1170
1171         free(text.psz_string);
1172         return;
1173     }
1174
1175     if (var_Get(p_object, psz_variable, &val) < 0) {
1176         return;
1177     }
1178
1179     VLCAutoGeneratedMenuContent *o_data;
1180     switch(i_type & VLC_VAR_TYPE) {
1181         case VLC_VAR_VOID:
1182             o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
1183                                                                       andValue: val ofType: i_type];
1184             [o_mi setRepresentedObject: [o_data autorelease]];
1185             break;
1186
1187         case VLC_VAR_BOOL:
1188             o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
1189                                                                       andValue: val ofType: i_type];
1190             [o_mi setRepresentedObject: [o_data autorelease]];
1191             if (!(i_type & VLC_VAR_ISCOMMAND))
1192                 [o_mi setState: val.b_bool ? TRUE : FALSE ];
1193             break;
1194
1195         default:
1196             break;
1197     }
1198
1199     if ((i_type & VLC_VAR_TYPE) == VLC_VAR_STRING) free(val.psz_string);
1200     free(text.psz_string);
1201 }
1202
1203
1204 - (void)setupVarMenu:(NSMenu *)o_menu
1205          forMenuItem: (NSMenuItem *)o_parent
1206               target:(vlc_object_t *)p_object
1207                  var:(const char *)psz_variable
1208             selector:(SEL)pf_callback
1209 {
1210     vlc_value_t val, val_list, text_list;
1211     int i_type, i;
1212
1213     /* remove previous items */
1214     [o_menu removeAllItems];
1215
1216     /* we disable everything here, and enable it again when needed, below */
1217     [o_parent setEnabled:NO];
1218
1219     /* Aspect Ratio */
1220     if ([[o_parent title] isEqualToString: _NS("Aspect-ratio")] == YES) {
1221         NSMenuItem *o_lmi_tmp2;
1222         o_lmi_tmp2 = [o_menu addItemWithTitle: _NS("Lock Aspect Ratio") action: @selector(lockVideosAspectRatio:) keyEquivalent: @""];
1223         [o_lmi_tmp2 setTarget: [[VLCMain sharedInstance] controls]];
1224         [o_lmi_tmp2 setEnabled: YES];
1225         [o_lmi_tmp2 setState: [[VLCCoreInteraction sharedInstance] aspectRatioIsLocked]];
1226         [o_parent setEnabled: YES];
1227         [o_menu addItem: [NSMenuItem separatorItem]];
1228     }
1229
1230     /* Check the type of the object variable */
1231     i_type = var_Type(p_object, psz_variable);
1232
1233     /* Make sure we want to display the variable */
1234     if (i_type & VLC_VAR_HASCHOICE) {
1235         var_Change(p_object, psz_variable, VLC_VAR_CHOICESCOUNT, &val, NULL);
1236         if (val.i_int == 0)
1237             return;
1238         if ((i_type & VLC_VAR_TYPE) != VLC_VAR_VARIABLE && val.i_int == 1)
1239             return;
1240     }
1241     else
1242         return;
1243
1244     switch(i_type & VLC_VAR_TYPE) {
1245         case VLC_VAR_VOID:
1246         case VLC_VAR_BOOL:
1247         case VLC_VAR_VARIABLE:
1248         case VLC_VAR_STRING:
1249         case VLC_VAR_INTEGER:
1250             break;
1251         default:
1252             /* Variable doesn't exist or isn't handled */
1253             return;
1254     }
1255
1256     if (var_Get(p_object, psz_variable, &val) < 0) {
1257         return;
1258     }
1259
1260     if (var_Change(p_object, psz_variable, VLC_VAR_GETLIST,
1261                    &val_list, &text_list) < 0) {
1262         if ((i_type & VLC_VAR_TYPE) == VLC_VAR_STRING) free(val.psz_string);
1263         return;
1264     }
1265
1266     /* make (un)sensitive */
1267     [o_parent setEnabled: (val_list.p_list->i_count > 1)];
1268
1269     for (i = 0; i < val_list.p_list->i_count; i++) {
1270         NSMenuItem * o_lmi;
1271         NSString *o_title = @"";
1272         VLCAutoGeneratedMenuContent *o_data;
1273
1274         switch(i_type & VLC_VAR_TYPE) {
1275             case VLC_VAR_STRING:
1276
1277                 o_title = _NS(text_list.p_list->p_values[i].psz_string ? text_list.p_list->p_values[i].psz_string : val_list.p_list->p_values[i].psz_string);
1278
1279                 o_lmi = [o_menu addItemWithTitle: o_title action: pf_callback keyEquivalent: @""];
1280                 o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
1281                                                                           andValue: val_list.p_list->p_values[i] ofType: i_type];
1282                 [o_lmi setRepresentedObject: [o_data autorelease]];
1283                 [o_lmi setTarget: self];
1284
1285                 if (!strcmp(val.psz_string, val_list.p_list->p_values[i].psz_string) && !(i_type & VLC_VAR_ISCOMMAND))
1286                     [o_lmi setState: TRUE ];
1287
1288                 break;
1289
1290             case VLC_VAR_INTEGER:
1291
1292                 o_title = text_list.p_list->p_values[i].psz_string ?
1293                 _NS(text_list.p_list->p_values[i].psz_string) : [NSString stringWithFormat: @"%"PRId64, val_list.p_list->p_values[i].i_int];
1294
1295                 o_lmi = [o_menu addItemWithTitle: o_title action: pf_callback keyEquivalent: @""];
1296                 o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
1297                                                                           andValue: val_list.p_list->p_values[i] ofType: i_type];
1298                 [o_lmi setRepresentedObject: [o_data autorelease]];
1299                 [o_lmi setTarget: self];
1300
1301                 if (val_list.p_list->p_values[i].i_int == val.i_int && !(i_type & VLC_VAR_ISCOMMAND))
1302                     [o_lmi setState: TRUE ];
1303                 break;
1304
1305             default:
1306                 break;
1307         }
1308     }
1309
1310     /* clean up everything */
1311     if ((i_type & VLC_VAR_TYPE) == VLC_VAR_STRING) free(val.psz_string);
1312     var_FreeList(&val_list, &text_list);
1313 }
1314
1315 - (IBAction)toggleVar:(id)sender
1316 {
1317     NSMenuItem *o_mi = (NSMenuItem *)sender;
1318     VLCAutoGeneratedMenuContent *o_data = [o_mi representedObject];
1319     [NSThread detachNewThreadSelector: @selector(toggleVarThread:)
1320                              toTarget: self withObject: o_data];
1321
1322     return;
1323 }
1324
1325 - (int)toggleVarThread: (id)data
1326 {
1327     vlc_object_t *p_object;
1328     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
1329
1330     assert([data isKindOfClass:[VLCAutoGeneratedMenuContent class]]);
1331     VLCAutoGeneratedMenuContent *menuContent = (VLCAutoGeneratedMenuContent *)data;
1332
1333     /* Preserve settings across vouts via the playlist object: */
1334     if (!strcmp([menuContent name], "fullscreen") || !strcmp([menuContent name], "video-on-top"))
1335         var_Set(pl_Get(VLCIntf), [menuContent name] , [menuContent value]);
1336
1337     p_object = [menuContent vlcObject];
1338
1339     if (p_object != NULL) {
1340         var_Set(p_object, [menuContent name], [menuContent value]);
1341         vlc_object_release(p_object);
1342         [o_pool release];
1343         return true;
1344     }
1345     [o_pool release];
1346     return VLC_EGENERIC;
1347 }
1348
1349 @end
1350
1351 @implementation VLCMainMenu (NSMenuValidation)
1352
1353 - (BOOL)validateMenuItem:(NSMenuItem *)o_mi
1354 {
1355     NSString *o_title = [o_mi title];
1356     BOOL bEnabled = TRUE;
1357     vlc_value_t val;
1358     playlist_t * p_playlist = pl_Get(p_intf);
1359     input_thread_t * p_input = playlist_CurrentInput(p_playlist);
1360
1361     if ([o_title isEqualToString: _NS("Stop")]) {
1362         if (!p_input)
1363             bEnabled = FALSE;
1364         [self setupMenus]; /* Make sure input menu is up to date */
1365     } else if ([o_title isEqualToString: _NS("Previous")] ||
1366             [o_title isEqualToString: _NS("Next")]) {
1367         PL_LOCK;
1368         bEnabled = playlist_CurrentSize(p_playlist) > 1;
1369         PL_UNLOCK;
1370     } else if ([o_title isEqualToString: _NS("Random")]) {
1371         int i_state;
1372         var_Get(p_playlist, "random", &val);
1373         i_state = val.b_bool ? NSOnState : NSOffState;
1374         [o_mi setState: i_state];
1375     } else if ([o_title isEqualToString: _NS("Repeat One")]) {
1376         int i_state;
1377         var_Get(p_playlist, "repeat", &val);
1378         i_state = val.b_bool ? NSOnState : NSOffState;
1379         [o_mi setState: i_state];
1380     } else if ([o_title isEqualToString: _NS("Repeat All")]) {
1381         int i_state;
1382         var_Get(p_playlist, "loop", &val);
1383         i_state = val.b_bool ? NSOnState : NSOffState;
1384         [o_mi setState: i_state];
1385     } else if ([o_title isEqualToString: _NS("Quit after Playback")]) {
1386         int i_state;
1387         var_Get(p_playlist, "play-and-exit", &val);
1388         i_state = val.b_bool ? NSOnState : NSOffState;
1389         [o_mi setState: i_state];
1390     } else if ([o_title isEqualToString: _NS("Step Forward")] ||
1391                [o_title isEqualToString: _NS("Step Backward")] ||
1392                [o_title isEqualToString: _NS("Jump To Time")]) {
1393         if (p_input != NULL) {
1394             var_Get(p_input, "can-seek", &val);
1395             bEnabled = val.b_bool;
1396         }
1397         else bEnabled = FALSE;
1398     } else if ([o_title isEqualToString: _NS("Mute")]) {
1399         [o_mi setState: [[VLCCoreInteraction sharedInstance] mute] ? NSOnState : NSOffState];
1400         [self setupMenus]; /* Make sure audio menu is up to date */
1401         [self refreshAudioDeviceList];
1402     } else if ([o_title isEqualToString: _NS("Half Size")] ||
1403                [o_title isEqualToString: _NS("Normal Size")] ||
1404                [o_title isEqualToString: _NS("Double Size")] ||
1405                [o_title isEqualToString: _NS("Fit to Screen")] ||
1406                [o_title isEqualToString: _NS("Snapshot")] ||
1407                [o_title isEqualToString: _NS("Fullscreen")] ||
1408                [o_title isEqualToString: _NS("Float on Top")]) {
1409         bEnabled = FALSE;
1410
1411         if (p_input != NULL) {
1412             vout_thread_t *p_vout = getVoutForActiveWindow();
1413             if (p_vout != NULL) {
1414                 if ([o_title isEqualToString: _NS("Float on Top")])
1415                     [o_mi setState: var_GetBool(p_vout, "video-on-top")];
1416
1417                 if ([o_title isEqualToString: _NS("Fullscreen")])
1418                     [o_mi setState: var_GetBool(p_vout, "fullscreen")];
1419
1420                 bEnabled = TRUE;
1421                 vlc_object_release(p_vout);
1422             }
1423         }
1424
1425         [self setupMenus]; /* Make sure video menu is up to date */
1426     }
1427
1428     /* Special case for telx menu */
1429     if ([o_title isEqualToString: _NS("Normal Size")]) {
1430         NSMenuItem *item = [[o_mi menu] itemWithTitle:_NS("Teletext")];
1431         bool b_telx = p_input && var_GetInteger(p_input, "teletext-es") >= 0;
1432
1433         [[item submenu] setAutoenablesItems:NO];
1434
1435         for (int k=0; k < [[item submenu] numberOfItems]; k++)
1436             [[[item submenu] itemAtIndex:k] setEnabled: b_telx];
1437     }
1438
1439     if (p_input)
1440         vlc_object_release(p_input);
1441
1442     return bEnabled;
1443 }
1444
1445 @end
1446
1447
1448 /*****************************************************************************
1449  * VLCAutoGeneratedMenuContent implementation
1450  *****************************************************************************
1451  * Object connected to a playlistitem which remembers the data belonging to
1452  * the variable of the autogenerated menu
1453  *****************************************************************************/
1454 @implementation VLCAutoGeneratedMenuContent
1455
1456 -(id) initWithVariableName:(const char *)name ofObject:(vlc_object_t *)object
1457                   andValue:(vlc_value_t)val ofType:(int)type
1458 {
1459     self = [super init];
1460
1461     if (self != nil) {
1462         _vlc_object = vlc_object_hold(object);
1463         psz_name = strdup(name);
1464         i_type = type;
1465         value = val;
1466         if ((i_type & VLC_VAR_TYPE) == VLC_VAR_STRING)
1467             value.psz_string = strdup(val.psz_string);
1468     }
1469
1470     return(self);
1471 }
1472
1473 - (void)dealloc
1474 {
1475     if (_vlc_object)
1476         vlc_object_release(_vlc_object);
1477     if ((i_type & VLC_VAR_TYPE) == VLC_VAR_STRING)
1478         free(value.psz_string);
1479     free(psz_name);
1480     [super dealloc];
1481 }
1482
1483 - (const char *)name
1484 {
1485     return psz_name;
1486 }
1487
1488 - (vlc_value_t)value
1489 {
1490     return value;
1491 }
1492
1493 - (vlc_object_t *)vlcObject
1494 {
1495     return vlc_object_hold(_vlc_object);
1496 }
1497
1498
1499 - (int)type
1500 {
1501     return i_type;
1502 }
1503
1504 @end