]> git.sesse.net Git - vlc/blob - modules/gui/macosx/MainMenu.m
macosx: create new classes for all controls bar related code
[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: "audio-channels" 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 = input_GetVout(p_input);
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 - (IBAction)toggleFullscreen:(id)sender
699 {
700     [[VLCCoreInteraction sharedInstance] toggleFullscreen];
701 }
702
703 - (IBAction)resizeVideoWindow:(id)sender
704 {
705     input_thread_t *p_input = pl_CurrentInput(VLCIntf);
706     if (p_input) {
707         vout_thread_t *p_vout = getVout();
708         if (p_vout) {
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         vout_thread_t *p_vout = getVout();
730         if (p_vout) {
731             var_ToggleBool(p_vout, "video-on-top");
732             vlc_object_release(p_vout);
733         }
734         vlc_object_release(p_input);
735     }
736 }
737
738 - (IBAction)createVideoSnapshot:(id)sender
739 {
740     input_thread_t *p_input = pl_CurrentInput(VLCIntf);
741     if (p_input) {
742         vout_thread_t *p_vout = getVout();
743         if (p_vout) {
744             var_TriggerCallback(p_vout, "video-snapshot");
745             vlc_object_release(p_vout);
746         }
747         vlc_object_release(p_input);
748     }
749 }
750
751 - (IBAction)toggleFullscreenDevice:(id)sender
752 {
753     config_PutInt(VLCIntf, "macosx-vdev", [sender tag]);
754     [self refreshVoutDeviceMenu: nil];
755 }
756
757 - (id)voutMenu
758 {
759     return o_vout_menu;
760 }
761
762 #pragma mark -
763 #pragma mark Panels
764
765 - (IBAction)intfOpenFile:(id)sender
766 {
767     [[[VLCMain sharedInstance] open] openFile];
768 }
769
770 - (IBAction)intfOpenFileGeneric:(id)sender
771 {
772     [[[VLCMain sharedInstance] open] openFileGeneric];
773 }
774
775 - (IBAction)intfOpenDisc:(id)sender
776 {
777     [[[VLCMain sharedInstance] open] openDisc];
778 }
779
780 - (IBAction)intfOpenNet:(id)sender
781 {
782     [[[VLCMain sharedInstance] open] openNet];
783 }
784
785 - (IBAction)intfOpenCapture:(id)sender
786 {
787     [[[VLCMain sharedInstance] open] openCapture];
788 }
789
790 - (IBAction)showWizard:(id)sender
791 {
792     [[[VLCMain sharedInstance] wizard] resetWizard];
793     [[[VLCMain sharedInstance] wizard] showWizard];
794 }
795
796 - (IBAction)showConvertAndSave:(id)sender
797 {
798     if (o_convertandsave == nil)
799         o_convertandsave = [[VLCConvertAndSave alloc] init];
800
801     if (!b_nib_convertandsave_loaded)
802         b_nib_convertandsave_loaded = [NSBundle loadNibNamed:@"ConvertAndSave" owner: NSApp];
803
804     [o_convertandsave toggleWindow];
805 }
806
807 - (IBAction)showVideoEffects:(id)sender
808 {
809     if (o_videoeffects == nil)
810         o_videoeffects = [[VLCVideoEffects alloc] init];
811
812     if (!b_nib_videoeffects_loaded)
813         b_nib_videoeffects_loaded = [NSBundle loadNibNamed:@"VideoEffects" owner: NSApp];
814
815     [o_videoeffects toggleWindow:sender];
816 }
817
818 - (IBAction)showTrackSynchronization:(id)sender
819 {
820     if (!o_trackSynchronization)
821         o_trackSynchronization = [[VLCTrackSynchronization alloc] init];
822
823     if (!b_nib_tracksynchro_loaded)
824         b_nib_tracksynchro_loaded = [NSBundle loadNibNamed:@"SyncTracks" owner:NSApp];
825
826     [o_trackSynchronization toggleWindow:sender];
827 }
828
829 - (IBAction)showAudioEffects:(id)sender
830 {
831     if (!o_audioeffects)
832         o_audioeffects = [[VLCAudioEffects alloc] init];
833
834     if (!b_nib_audioeffects_loaded)
835         b_nib_audioeffects_loaded = [NSBundle loadNibNamed:@"AudioEffects" owner:NSApp];
836
837     [o_audioeffects toggleWindow:sender];
838 }
839
840 - (IBAction)showBookmarks:(id)sender
841 {
842     [[[VLCMain sharedInstance] bookmarks] showBookmarks];
843 }
844
845 - (IBAction)viewPreferences:(id)sender
846 {
847     NSInteger i_level = NSNormalWindowLevel;
848     NSInteger i_video_window_level = [[[[VLCMainWindow sharedInstance] videoView] window] level];
849     if (i_video_window_level == NSStatusWindowLevel)
850         i_level = NSStatusWindowLevel;
851     [[[VLCMain sharedInstance] simplePreferences] showSimplePrefsWithLevel:i_level];
852 }
853
854 #pragma mark -
855 #pragma mark Help and Docs
856
857 - (void)initAbout
858 {
859     if (! o_about)
860         o_about = [[VLAboutBox alloc] init];
861
862     if (!b_nib_about_loaded)
863         b_nib_about_loaded = [NSBundle loadNibNamed:@"About" owner: NSApp];
864 }
865
866 - (IBAction)viewAbout:(id)sender
867 {
868     [self initAbout];
869     [o_about showAbout];
870 }
871
872 - (IBAction)showLicense:(id)sender
873 {
874     [self initAbout];
875     [o_about showGPL: sender];
876 }
877
878 - (IBAction)viewHelp:(id)sender
879 {
880     [self initAbout];
881     [o_about showHelp];
882 }
883
884 - (IBAction)openReadMe:(id)sender
885 {
886     NSString * o_path = [[NSBundle mainBundle] pathForResource: @"README.MacOSX" ofType: @"rtf"];
887
888     [[NSWorkspace sharedWorkspace] openFile: o_path withApplication: @"TextEdit"];
889 }
890
891 - (IBAction)openDocumentation:(id)sender
892 {
893     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/doc/"];
894
895     [[NSWorkspace sharedWorkspace] openURL: o_url];
896 }
897
898 - (IBAction)openWebsite:(id)sender
899 {
900     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/"];
901
902     [[NSWorkspace sharedWorkspace] openURL: o_url];
903 }
904
905 - (IBAction)openForum:(id)sender
906 {
907     NSURL * o_url = [NSURL URLWithString: @"http://forum.videolan.org/"];
908
909     [[NSWorkspace sharedWorkspace] openURL: o_url];
910 }
911
912 - (IBAction)openDonate:(id)sender
913 {
914     NSURL * o_url = [NSURL URLWithString: @"http://www.videolan.org/contribute.html#paypal"];
915
916     [[NSWorkspace sharedWorkspace] openURL: o_url];
917 }
918
919 #pragma mark -
920 #pragma mark Errors, warnings and messages
921
922 - (IBAction)viewErrorsAndWarnings:(id)sender
923 {
924     [[[[VLCMain sharedInstance] coreDialogProvider] errorPanel] showPanel];
925 }
926
927 - (IBAction)showInformationPanel:(id)sender
928 {
929     [[[VLCMain sharedInstance] info] initPanel];
930 }
931
932 #pragma mark -
933 #pragma mark convinience stuff for other objects
934 - (void)setPlay
935 {
936     [o_mi_play setTitle: _NS("Play")];
937     [o_dmi_play setTitle: _NS("Play")];
938     [o_vmi_play setTitle: _NS("Play")];
939 }
940
941 - (void)setPause
942 {
943     [o_mi_play setTitle: _NS("Pause")];
944     [o_dmi_play setTitle: _NS("Pause")];
945     [o_vmi_play setTitle: _NS("Pause")];
946 }
947
948 - (void)setRepeatOne
949 {
950     [o_mi_repeat setState: NSOnState];
951     [o_mi_loop setState: NSOffState];
952 }
953
954 - (void)setRepeatAll
955 {
956     [o_mi_repeat setState: NSOffState];
957     [o_mi_loop setState: NSOnState];
958 }
959
960 - (void)setRepeatOff
961 {
962     [o_mi_repeat setState: NSOffState];
963     [o_mi_loop setState: NSOffState];
964 }
965
966 - (void)setShuffle
967 {
968     bool b_value;
969     playlist_t *p_playlist = pl_Get(VLCIntf);
970     b_value = var_GetBool(p_playlist, "random");
971
972     [o_mi_random setState: b_value];
973 }
974
975 #pragma mark -
976 #pragma mark Dynamic menu creation and validation
977
978 - (void)setupVarMenuItem:(NSMenuItem *)o_mi
979                   target:(vlc_object_t *)p_object
980                      var:(const char *)psz_variable
981                 selector:(SEL)pf_callback
982 {
983     vlc_value_t val, text;
984     int i_type = var_Type(p_object, psz_variable);
985
986     switch(i_type & VLC_VAR_TYPE) {
987         case VLC_VAR_VOID:
988         case VLC_VAR_BOOL:
989         case VLC_VAR_VARIABLE:
990         case VLC_VAR_STRING:
991         case VLC_VAR_INTEGER:
992             break;
993         default:
994             /* Variable doesn't exist or isn't handled */
995             return;
996     }
997
998     /* Get the descriptive name of the variable */
999     var_Change(p_object, psz_variable, VLC_VAR_GETTEXT, &text, NULL);
1000     [o_mi setTitle: _NS(text.psz_string ? text.psz_string : psz_variable)];
1001
1002     if (i_type & VLC_VAR_HASCHOICE) {
1003         NSMenu *o_menu = [o_mi submenu];
1004
1005         [self setupVarMenu: o_menu forMenuItem: o_mi target:p_object
1006                        var:psz_variable selector:pf_callback];
1007
1008         free(text.psz_string);
1009         return;
1010     }
1011
1012     if (var_Get(p_object, psz_variable, &val) < 0) {
1013         return;
1014     }
1015
1016     VLCAutoGeneratedMenuContent *o_data;
1017     switch(i_type & VLC_VAR_TYPE) {
1018         case VLC_VAR_VOID:
1019             o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
1020                                                                       andValue: val ofType: i_type];
1021             [o_mi setRepresentedObject: [o_data autorelease]];
1022             break;
1023
1024         case VLC_VAR_BOOL:
1025             o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
1026                                                                       andValue: val ofType: i_type];
1027             [o_mi setRepresentedObject: [o_data autorelease]];
1028             if (!(i_type & VLC_VAR_ISCOMMAND))
1029                 [o_mi setState: val.b_bool ? TRUE : FALSE ];
1030             break;
1031
1032         default:
1033             break;
1034     }
1035
1036     if ((i_type & VLC_VAR_TYPE) == VLC_VAR_STRING) free(val.psz_string);
1037     free(text.psz_string);
1038 }
1039
1040
1041 - (void)setupVarMenu:(NSMenu *)o_menu
1042          forMenuItem: (NSMenuItem *)o_parent
1043               target:(vlc_object_t *)p_object
1044                  var:(const char *)psz_variable
1045             selector:(SEL)pf_callback
1046 {
1047     vlc_value_t val, val_list, text_list;
1048     int i_type, i;
1049
1050     /* remove previous items */
1051     [o_menu removeAllItems];
1052
1053     /* we disable everything here, and enable it again when needed, below */
1054     [o_parent setEnabled:NO];
1055
1056     /* Aspect Ratio */
1057     if ([[o_parent title] isEqualToString: _NS("Aspect-ratio")] == YES) {
1058         NSMenuItem *o_lmi_tmp2;
1059         o_lmi_tmp2 = [o_menu addItemWithTitle: _NS("Lock Aspect Ratio") action: @selector(lockVideosAspectRatio:) keyEquivalent: @""];
1060         [o_lmi_tmp2 setTarget: [[VLCMain sharedInstance] controls]];
1061         [o_lmi_tmp2 setEnabled: YES];
1062         [o_lmi_tmp2 setState: [[VLCCoreInteraction sharedInstance] aspectRatioIsLocked]];
1063         [o_parent setEnabled: YES];
1064         [o_menu addItem: [NSMenuItem separatorItem]];
1065     }
1066
1067     /* special case for the subtitles item */
1068     if ([[o_parent title] isEqualToString: _NS("Subtitles Track")] == YES) {
1069         NSMenuItem * o_lmi_tmp;
1070         o_lmi_tmp = [o_menu addItemWithTitle: _NS("Open File...") action: @selector(addSubtitleFile:) keyEquivalent: @""];
1071         [o_lmi_tmp setTarget: [[VLCMain sharedInstance] controls]];
1072         [o_lmi_tmp setEnabled: YES];
1073         [o_parent setEnabled: YES];
1074     }
1075
1076     /* Check the type of the object variable */
1077     i_type = var_Type(p_object, psz_variable);
1078
1079     /* Make sure we want to display the variable */
1080     if (i_type & VLC_VAR_HASCHOICE) {
1081         var_Change(p_object, psz_variable, VLC_VAR_CHOICESCOUNT, &val, NULL);
1082         if (val.i_int == 0)
1083             return;
1084         if ((i_type & VLC_VAR_TYPE) != VLC_VAR_VARIABLE && val.i_int == 1)
1085             return;
1086     }
1087     else
1088         return;
1089
1090     switch(i_type & VLC_VAR_TYPE) {
1091         case VLC_VAR_VOID:
1092         case VLC_VAR_BOOL:
1093         case VLC_VAR_VARIABLE:
1094         case VLC_VAR_STRING:
1095         case VLC_VAR_INTEGER:
1096             break;
1097         default:
1098             /* Variable doesn't exist or isn't handled */
1099             return;
1100     }
1101
1102     if (var_Get(p_object, psz_variable, &val) < 0) {
1103         return;
1104     }
1105
1106     if (var_Change(p_object, psz_variable, VLC_VAR_GETLIST,
1107                    &val_list, &text_list) < 0) {
1108         if ((i_type & VLC_VAR_TYPE) == VLC_VAR_STRING) free(val.psz_string);
1109         return;
1110     }
1111
1112     /* make (un)sensitive */
1113     [o_parent setEnabled: (val_list.p_list->i_count > 1)];
1114
1115     /* another special case for the subtitles item */
1116     if ([[o_parent title] isEqualToString: _NS("Subtitles Track")] == YES)
1117         [o_menu addItem: [NSMenuItem separatorItem]];
1118
1119     for (i = 0; i < val_list.p_list->i_count; i++) {
1120         NSMenuItem * o_lmi;
1121         NSString *o_title = @"";
1122         VLCAutoGeneratedMenuContent *o_data;
1123
1124         switch(i_type & VLC_VAR_TYPE) {
1125             case VLC_VAR_STRING:
1126
1127                 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);
1128
1129                 o_lmi = [o_menu addItemWithTitle: o_title action: pf_callback keyEquivalent: @""];
1130                 o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
1131                                                                           andValue: val_list.p_list->p_values[i] ofType: i_type];
1132                 [o_lmi setRepresentedObject: [o_data autorelease]];
1133                 [o_lmi setTarget: self];
1134
1135                 if (!strcmp(val.psz_string, val_list.p_list->p_values[i].psz_string) && !(i_type & VLC_VAR_ISCOMMAND))
1136                     [o_lmi setState: TRUE ];
1137
1138                 break;
1139
1140             case VLC_VAR_INTEGER:
1141
1142                 o_title = text_list.p_list->p_values[i].psz_string ?
1143                 _NS(text_list.p_list->p_values[i].psz_string) : [NSString stringWithFormat: @"%"PRId64, val_list.p_list->p_values[i].i_int];
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 (val_list.p_list->p_values[i].i_int == val.i_int && !(i_type & VLC_VAR_ISCOMMAND))
1152                     [o_lmi setState: TRUE ];
1153                 break;
1154
1155             default:
1156                 break;
1157         }
1158     }
1159
1160     /* special case for the subtitles sub-menu
1161      * In case that we don't have any subs, we don't want a separator item at the end */
1162     if ([[o_parent title] isEqualToString: _NS("Subtitles Track")] == YES) {
1163         if ([o_menu numberOfItems] == 2)
1164             [o_menu removeItemAtIndex: 1];
1165     }
1166
1167     /* clean up everything */
1168     if ((i_type & VLC_VAR_TYPE) == VLC_VAR_STRING) free(val.psz_string);
1169     var_FreeList(&val_list, &text_list);
1170 }
1171
1172 - (IBAction)toggleVar:(id)sender
1173 {
1174     NSMenuItem *o_mi = (NSMenuItem *)sender;
1175     VLCAutoGeneratedMenuContent *o_data = [o_mi representedObject];
1176     [NSThread detachNewThreadSelector: @selector(toggleVarThread:)
1177                              toTarget: self withObject: o_data];
1178
1179     return;
1180 }
1181
1182 - (int)toggleVarThread: (id)data
1183 {
1184     vlc_object_t *p_object;
1185     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
1186
1187     assert([data isKindOfClass:[VLCAutoGeneratedMenuContent class]]);
1188     VLCAutoGeneratedMenuContent *menuContent = (VLCAutoGeneratedMenuContent *)data;
1189
1190     /* Preserve settings across vouts via the playlist object: */
1191     if (!strcmp([menuContent name], "fullscreen") || !strcmp([menuContent name], "video-on-top"))
1192         var_Set(pl_Get(VLCIntf), [menuContent name] , [menuContent value]);
1193
1194     /* save our audio device across multiple sessions */
1195     if (!strcmp([menuContent name], "audio-device"))
1196         config_PutInt(VLCIntf, "macosx-audio-device", [menuContent value].i_int);
1197
1198     p_object = [menuContent vlcObject];
1199
1200     if (p_object != NULL) {
1201         var_Set(p_object, [menuContent name], [menuContent value]);
1202         vlc_object_release(p_object);
1203         [o_pool release];
1204         return true;
1205     }
1206     [o_pool release];
1207     return VLC_EGENERIC;
1208 }
1209
1210 @end
1211
1212 @implementation VLCMainMenu (NSMenuValidation)
1213
1214 - (BOOL)validateMenuItem:(NSMenuItem *)o_mi
1215 {
1216     NSString *o_title = [o_mi title];
1217     BOOL bEnabled = TRUE;
1218     vlc_value_t val;
1219     playlist_t * p_playlist = pl_Get(p_intf);
1220     input_thread_t * p_input = playlist_CurrentInput(p_playlist);
1221
1222     if ([o_title isEqualToString: _NS("Stop")]) {
1223         if (p_input == NULL) {
1224             bEnabled = FALSE;
1225         }
1226         [self setupMenus]; /* Make sure input menu is up to date */
1227     } else if ([o_title isEqualToString: _NS("Previous")] ||
1228             [o_title isEqualToString: _NS("Next")]) {
1229         PL_LOCK;
1230         bEnabled = playlist_CurrentSize(p_playlist) > 1;
1231         PL_UNLOCK;
1232     } else if ([o_title isEqualToString: _NS("Random")]) {
1233         int i_state;
1234         var_Get(p_playlist, "random", &val);
1235         i_state = val.b_bool ? NSOnState : NSOffState;
1236         [o_mi setState: i_state];
1237     } else if ([o_title isEqualToString: _NS("Repeat One")]) {
1238         int i_state;
1239         var_Get(p_playlist, "repeat", &val);
1240         i_state = val.b_bool ? NSOnState : NSOffState;
1241         [o_mi setState: i_state];
1242     } else if ([o_title isEqualToString: _NS("Repeat All")]) {
1243         int i_state;
1244         var_Get(p_playlist, "loop", &val);
1245         i_state = val.b_bool ? NSOnState : NSOffState;
1246         [o_mi setState: i_state];
1247     } else if ([o_title isEqualToString: _NS("Quit after Playback")]) {
1248         int i_state;
1249         var_Get(p_playlist, "play-and-exit", &val);
1250         i_state = val.b_bool ? NSOnState : NSOffState;
1251         [o_mi setState: i_state];
1252     } else if ([o_title isEqualToString: _NS("Step Forward")] ||
1253                [o_title isEqualToString: _NS("Step Backward")] ||
1254                [o_title isEqualToString: _NS("Jump To Time")]) {
1255         if (p_input != NULL) {
1256             var_Get(p_input, "can-seek", &val);
1257             bEnabled = val.b_bool;
1258         }
1259         else bEnabled = FALSE;
1260     } else if ([o_title isEqualToString: _NS("Mute")]) {
1261         [o_mi setState: [[VLCCoreInteraction sharedInstance] mute] ? NSOnState : NSOffState];
1262         [self setupMenus]; /* Make sure audio menu is up to date */
1263     } else if ([o_title isEqualToString: _NS("Half Size")] ||
1264                [o_title isEqualToString: _NS("Normal Size")] ||
1265                [o_title isEqualToString: _NS("Double Size")] ||
1266                [o_title isEqualToString: _NS("Fit to Screen")] ||
1267                [o_title isEqualToString: _NS("Snapshot")] ||
1268                [o_title isEqualToString: _NS("Fullscreen")] ||
1269                [o_title isEqualToString: _NS("Float on Top")]) {
1270         bEnabled = FALSE;
1271
1272         if (p_input != NULL) {
1273             vout_thread_t *p_vout = input_GetVout(p_input);
1274             if (p_vout != NULL) {
1275                 if ([o_title isEqualToString: _NS("Float on Top")])
1276                     [o_mi setState: var_GetBool(p_vout, "video-on-top")];
1277
1278                 bEnabled = TRUE;
1279
1280                 vlc_object_release(p_vout);
1281             }
1282         }
1283         if ([o_title isEqualToString: _NS("Fullscreen")]) {
1284             [o_mi setState: var_GetBool(p_playlist, "fullscreen")];
1285             bEnabled = TRUE;
1286         }
1287         [self setupMenus]; /* Make sure video menu is up to date */
1288     }
1289
1290     /* Special case for telx menu */
1291     if ([o_title isEqualToString: _NS("Normal Size")]) {
1292         NSMenuItem *item = [[o_mi menu] itemWithTitle:_NS("Teletext")];
1293         bool b_telx = p_input && var_GetInteger(p_input, "teletext-es") >= 0;
1294
1295         [[item submenu] setAutoenablesItems:NO];
1296
1297         for (int k=0; k < [[item submenu] numberOfItems]; k++)
1298             [[[item submenu] itemAtIndex:k] setEnabled: b_telx];
1299     }
1300
1301     if (p_input)
1302         vlc_object_release(p_input);
1303
1304     return bEnabled ;
1305 }
1306
1307 @end
1308
1309
1310 /*****************************************************************************
1311  * VLCAutoGeneratedMenuContent implementation
1312  *****************************************************************************
1313  * Object connected to a playlistitem which remembers the data belonging to
1314  * the variable of the autogenerated menu
1315  *****************************************************************************/
1316 @implementation VLCAutoGeneratedMenuContent
1317
1318 -(id) initWithVariableName:(const char *)name ofObject:(vlc_object_t *)object
1319                   andValue:(vlc_value_t)val ofType:(int)type
1320 {
1321     self = [super init];
1322
1323     if (self != nil) {
1324         _vlc_object = vlc_object_hold(object);
1325         psz_name = strdup(name);
1326         i_type = type;
1327         value = val;
1328         if ((i_type & VLC_VAR_TYPE) == VLC_VAR_STRING)
1329             value.psz_string = strdup(val.psz_string);
1330     }
1331
1332     return(self);
1333 }
1334
1335 - (void)dealloc
1336 {
1337     if (_vlc_object)
1338         vlc_object_release(_vlc_object);
1339     if ((i_type & VLC_VAR_TYPE) == VLC_VAR_STRING)
1340         free(value.psz_string);
1341     free(psz_name);
1342     [super dealloc];
1343 }
1344
1345 - (const char *)name
1346 {
1347     return psz_name;
1348 }
1349
1350 - (vlc_value_t)value
1351 {
1352     return value;
1353 }
1354
1355 - (vlc_object_t *)vlcObject
1356 {
1357     return vlc_object_hold(_vlc_object);
1358 }
1359
1360
1361 - (int)type
1362 {
1363     return i_type;
1364 }
1365
1366 @end