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