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