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