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