]> git.sesse.net Git - vlc/blob - modules/gui/macosx/simple_prefs.m
macosx: improve main menu handling for autogenerated items
[vlc] / modules / gui / macosx / simple_prefs.m
1 /*****************************************************************************
2 * simple_prefs.m: Simple Preferences for Mac OS X
3 *****************************************************************************
4 * Copyright (C) 2008-2012 VLC authors and VideoLAN
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 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #import "CompatibilityFixes.h"
28 #import "simple_prefs.h"
29 #import "prefs.h"
30 #import <vlc_keys.h>
31 #import <vlc_interface.h>
32 #import <vlc_aout_intf.h>
33 #import <vlc_dialog.h>
34 #import <vlc_modules.h>
35 #import <vlc_plugin.h>
36 #import <vlc_config_cat.h>
37 #import "misc.h"
38 #import "intf.h"
39 #import "AppleRemote.h"
40 #import "CoreInteraction.h"
41
42 #import <Sparkle/Sparkle.h>                        //for o_intf_last_update_lbl
43
44 static NSString* VLCSPrefsToolbarIdentifier = @"Our Simple Preferences Toolbar Identifier";
45 static NSString* VLCIntfSettingToolbarIdentifier = @"Intf Settings Item Identifier";
46 static NSString* VLCAudioSettingToolbarIdentifier = @"Audio Settings Item Identifier";
47 static NSString* VLCVideoSettingToolbarIdentifier = @"Video Settings Item Identifier";
48 static NSString* VLCOSDSettingToolbarIdentifier = @"Subtitles Settings Item Identifier";
49 static NSString* VLCInputSettingToolbarIdentifier = @"Input Settings Item Identifier";
50 static NSString* VLCHotkeysSettingToolbarIdentifier = @"Hotkeys Settings Item Identifier";
51
52 @implementation VLCSimplePrefs
53
54 static VLCSimplePrefs *_o_sharedInstance = nil;
55
56 #pragma mark Initialisation
57
58 + (VLCSimplePrefs *)sharedInstance
59 {
60     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
61 }
62
63 - (id)init
64 {
65     if (_o_sharedInstance) {
66         [self dealloc];
67     } else {
68         _o_sharedInstance = [super init];
69         p_intf = VLCIntf;
70     }
71
72     return _o_sharedInstance;
73 }
74
75 - (void)dealloc
76 {
77     [o_currentlyShownCategoryView release];
78
79     [o_hotkeySettings release];
80     [o_hotkeyDescriptions release];
81     [o_hotkeyNames release];
82     [o_hotkeysNonUseableKeys release];
83
84     [o_keyInTransition release];
85
86     [super dealloc];
87 }
88
89 - (NSString *)OSXStringKeyToString:(NSString *)theString
90 {
91     if (![theString isEqualToString:@""]) {
92         /* remove cruft */
93         if ([theString characterAtIndex:([theString length] - 1)] != 0x2b)
94             theString = [theString stringByReplacingOccurrencesOfString:@"+" withString:@""];
95         else
96         {
97             theString = [theString stringByReplacingOccurrencesOfString:@"+" withString:@""];
98             theString = [NSString stringWithFormat:@"%@+", theString];
99         }
100         if ([theString characterAtIndex:([theString length] - 1)] != 0x2d)
101             theString = [theString stringByReplacingOccurrencesOfString:@"-" withString:@""];
102         else
103         {
104             theString = [theString stringByReplacingOccurrencesOfString:@"-" withString:@""];
105             theString = [NSString stringWithFormat:@"%@-", theString];
106         }
107         /* modifiers */
108         theString = [theString stringByReplacingOccurrencesOfString:@"Command" withString: [NSString stringWithUTF8String: "\xE2\x8C\x98"]];
109         theString = [theString stringByReplacingOccurrencesOfString:@"Alt" withString: [NSString stringWithUTF8String: "\xE2\x8C\xA5"]];
110         theString = [theString stringByReplacingOccurrencesOfString:@"Shift" withString: [NSString stringWithUTF8String: "\xE2\x87\xA7"]];
111         theString = [theString stringByReplacingOccurrencesOfString:@"Ctrl" withString: [NSString stringWithUTF8String: "\xE2\x8C\x83"]];
112         /* show non-character keys correctly */
113         theString = [theString stringByReplacingOccurrencesOfString:@"Right" withString:[NSString stringWithUTF8String:"\xE2\x86\x92"]];
114         theString = [theString stringByReplacingOccurrencesOfString:@"Left" withString:[NSString stringWithUTF8String:"\xE2\x86\x90"]];
115         theString = [theString stringByReplacingOccurrencesOfString:@"Up" withString:[NSString stringWithUTF8String:"\xE2\x86\x91"]];
116         theString = [theString stringByReplacingOccurrencesOfString:@"Down" withString:[NSString stringWithUTF8String:"\xE2\x86\x93"]];
117         theString = [theString stringByReplacingOccurrencesOfString:@"Enter" withString:[NSString stringWithUTF8String:"\xe2\x86\xb5"]];
118         theString = [theString stringByReplacingOccurrencesOfString:@"Tab" withString:[NSString stringWithUTF8String:"\xe2\x87\xa5"]];
119         theString = [theString stringByReplacingOccurrencesOfString:@"Delete" withString:[NSString stringWithUTF8String:"\xe2\x8c\xab"]];        /* capitalize plain characters to suit the menubar's look */
120         theString = [theString capitalizedString];
121     }
122     else
123         theString = [NSString stringWithString:_NS("Not Set")];
124     return theString;
125 }
126
127 - (void)awakeFromNib
128 {
129     [self initStrings];
130
131     /* setup the toolbar */
132     NSToolbar * o_sprefs_toolbar = [[[NSToolbar alloc] initWithIdentifier: VLCSPrefsToolbarIdentifier] autorelease];
133     [o_sprefs_toolbar setAllowsUserCustomization: NO];
134     [o_sprefs_toolbar setAutosavesConfiguration: NO];
135     [o_sprefs_toolbar setDisplayMode: NSToolbarDisplayModeIconAndLabel];
136     [o_sprefs_toolbar setSizeMode: NSToolbarSizeModeRegular];
137     [o_sprefs_toolbar setDelegate: self];
138     [o_sprefs_win setToolbar: o_sprefs_toolbar];
139
140     if (OSX_LION)
141         [o_sprefs_win setCollectionBehavior: NSWindowCollectionBehaviorFullScreenAuxiliary];
142
143     [o_hotkeys_listbox setTarget:self];
144     [o_hotkeys_listbox setDoubleAction:@selector(hotkeyTableDoubleClick:)];
145
146     /* setup useful stuff */
147     o_hotkeysNonUseableKeys = [[NSArray arrayWithObjects: @"Command-c", @"Command-x", @"Command-v", @"Command-a", @"Command-," , @"Command-h", @"Command-Alt-h", @"Command-Shift-o", @"Command-o", @"Command-d", @"Command-n", @"Command-s", @"Command-z", @"Command-l", @"Command-r", @"Command-3", @"Command-m", @"Command-w", @"Command-Shift-w", @"Command-Shift-c", @"Command-Shift-p", @"Command-i", @"Command-e", @"Command-Shift-e", @"Command-b", @"Command-Shift-m", @"Command-Ctrl-m", @"Command-?", @"Command-Alt-?", nil] retain];
148 }
149
150 #define CreateToolbarItem( o_name, o_desc, o_img, sel ) \
151     o_toolbarItem = create_toolbar_item(o_itemIdent, o_name, o_desc, o_img, self, @selector(sel));
152 static inline NSToolbarItem *
153 create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_desc, NSString * o_img, id target, SEL selector )
154 {
155     NSToolbarItem *o_toolbarItem = [[[NSToolbarItem alloc] initWithItemIdentifier: o_itemIdent] autorelease]; \
156
157     [o_toolbarItem setLabel: o_name];
158     [o_toolbarItem setPaletteLabel: o_desc];
159
160     [o_toolbarItem setToolTip: o_desc];
161     [o_toolbarItem setImage: [NSImage imageNamed: o_img]];
162
163     [o_toolbarItem setTarget: target];
164     [o_toolbarItem setAction: selector];
165
166     [o_toolbarItem setEnabled: YES];
167     [o_toolbarItem setAutovalidates: YES];
168
169     return o_toolbarItem;
170 }
171
172 - (NSToolbarItem *) toolbar: (NSToolbar *)o_sprefs_toolbar
173       itemForItemIdentifier: (NSString *)o_itemIdent
174   willBeInsertedIntoToolbar: (BOOL)b_willBeInserted
175 {
176     NSToolbarItem *o_toolbarItem = nil;
177
178     if( [o_itemIdent isEqual: VLCIntfSettingToolbarIdentifier] )
179     {
180         CreateToolbarItem( _NS("Interface"), _NS("Interface Settings"), @"spref_cone_Interface_64", showInterfaceSettings );
181     }
182     else if( [o_itemIdent isEqual: VLCAudioSettingToolbarIdentifier] )
183     {
184         CreateToolbarItem( _NS("Audio"), _NS("General Audio Settings"), @"spref_cone_Audio_64", showAudioSettings );
185     }
186     else if( [o_itemIdent isEqual: VLCVideoSettingToolbarIdentifier] )
187     {
188         CreateToolbarItem( _NS("Video"), _NS("General Video Settings"), @"spref_cone_Video_64", showVideoSettings );
189     }
190     else if( [o_itemIdent isEqual: VLCOSDSettingToolbarIdentifier] )
191     {
192         CreateToolbarItem( _NS(SUBPIC_TITLE), _NS("Subtitles & On Screen Display Settings"), @"spref_cone_Subtitles_64", showOSDSettings );
193     }
194     else if( [o_itemIdent isEqual: VLCInputSettingToolbarIdentifier] )
195     {
196         CreateToolbarItem( _NS(INPUT_TITLE), _NS("Input & Codec settings"), @"spref_cone_Input_64", showInputSettings );
197     }
198     else if( [o_itemIdent isEqual: VLCHotkeysSettingToolbarIdentifier] )
199     {
200         CreateToolbarItem( _NS("Hotkeys"), _NS("Hotkeys settings"), @"spref_cone_Hotkeys_64", showHotkeySettings );
201     }
202
203     return o_toolbarItem;
204 }
205
206 - (NSArray *)toolbarDefaultItemIdentifiers: (NSToolbar *)toolbar
207 {
208     return [NSArray arrayWithObjects: VLCIntfSettingToolbarIdentifier, VLCAudioSettingToolbarIdentifier, VLCVideoSettingToolbarIdentifier,
209         VLCOSDSettingToolbarIdentifier, VLCInputSettingToolbarIdentifier, VLCHotkeysSettingToolbarIdentifier, NSToolbarFlexibleSpaceItemIdentifier, nil];
210 }
211
212 - (NSArray *)toolbarAllowedItemIdentifiers: (NSToolbar *)toolbar
213 {
214     return [NSArray arrayWithObjects: VLCIntfSettingToolbarIdentifier, VLCAudioSettingToolbarIdentifier, VLCVideoSettingToolbarIdentifier,
215         VLCOSDSettingToolbarIdentifier, VLCInputSettingToolbarIdentifier, VLCHotkeysSettingToolbarIdentifier, NSToolbarFlexibleSpaceItemIdentifier, nil];
216 }
217
218 - (NSArray *)toolbarSelectableItemIdentifiers:(NSToolbar *)toolbar
219 {
220     return [NSArray arrayWithObjects: VLCIntfSettingToolbarIdentifier, VLCAudioSettingToolbarIdentifier, VLCVideoSettingToolbarIdentifier,
221         VLCOSDSettingToolbarIdentifier, VLCInputSettingToolbarIdentifier, VLCHotkeysSettingToolbarIdentifier, nil];
222 }
223
224 - (void)initStrings
225 {
226     /* audio */
227     [o_audio_dolby_txt setStringValue: _NS("Force detection of Dolby Surround")];
228     [o_audio_effects_box setTitle: _NS("Effects")];
229     [o_audio_enable_ckb setTitle: _NS("Enable Audio")];
230     [o_audio_general_box setTitle: _NS("General Audio")];
231     [o_audio_lang_txt setStringValue: _NS("Preferred Audio language")];
232     [o_audio_last_ckb setTitle: _NS("Enable Last.fm submissions")];
233     [o_audio_lastpwd_txt setStringValue: _NS("Password")];
234     [o_audio_lastuser_txt setStringValue: _NS("User name")];
235     [o_audio_spdif_ckb setTitle: _NS("Use S/PDIF when available")];
236     [o_audio_visual_txt setStringValue: _NS("Visualization")];
237     [o_audio_autosavevol_yes_bcell setTitle: _NS("Keep audio level between sessions")];
238     [o_audio_autosavevol_no_bcell setTitle: _NS("Always reset audio start level to:")];
239
240     /* hotkeys */
241     [o_hotkeys_change_btn setTitle: _NS("Change")];
242     [o_hotkeys_change_win setTitle: _NS("Change Hotkey")];
243     [o_hotkeys_change_cancel_btn setTitle: _NS("Cancel")];
244     [o_hotkeys_change_ok_btn setTitle: _NS("OK")];
245     [o_hotkeys_clear_btn setTitle: _NS("Clear")];
246     [o_hotkeys_lbl setStringValue: _NS("Select an action to change the associated hotkey:")];
247     [[[o_hotkeys_listbox tableColumnWithIdentifier: @"action"] headerCell] setStringValue: _NS("Action")];
248     [[[o_hotkeys_listbox tableColumnWithIdentifier: @"shortcut"] headerCell] setStringValue: _NS("Shortcut")];
249
250     /* input */
251     [o_input_record_box setTitle: _NS("Record directory or filename")];
252     [o_input_record_btn setTitle: _NS("Browse...")];
253     [o_input_record_btn setToolTip: _NS("Directory or filename where the records will be stored")];
254     [o_input_avi_txt setStringValue: _NS("Repair AVI Files")];
255     [o_input_cachelevel_txt setStringValue: _NS("Default Caching Level")];
256     [o_input_caching_box setTitle: _NS("Caching")];
257     [o_input_cachelevel_custom_txt setStringValue: _NS("Use the complete preferences to configure custom caching values for each access module.")];
258     [o_input_httpproxy_txt setStringValue: _NS("HTTP Proxy")];
259     [o_input_httpproxypwd_txt setStringValue: _NS("Password for HTTP Proxy")];
260     [o_input_mux_box setTitle: _NS("Codecs / Muxers")];
261     [o_input_net_box setTitle: _NS("Network")];
262     [o_input_postproc_txt setStringValue: _NS("Post-Processing Quality")];
263     [o_input_rtsp_ckb setTitle: _NS("Use RTP over RTSP (TCP)")];
264     [o_input_skipLoop_txt setStringValue: _NS("Skip the loop filter for H.264 decoding")];
265     [o_input_mkv_preload_dir_ckb setTitle: _NS("Preload MKV files in the same directory")];
266
267     /* interface */
268     [o_intf_style_txt setStringValue: _NS("Interface style")];
269     [o_intf_style_dark_bcell setTitle: _NS("Dark")];
270     [o_intf_style_bright_bcell setTitle: _NS("Bright")];
271     [o_intf_art_txt setStringValue: _NS("Album art download policy")];
272     [o_intf_embedded_ckb setTitle: _NS("Show video within the main window")];
273     [o_intf_nativefullscreen_ckb setTitle: _NS("Use the native fullscreen mode on OS X Lion")];
274     [o_intf_fspanel_ckb setTitle: _NS("Show Fullscreen Controller")];
275     [o_intf_lang_txt setStringValue: _NS("Language")];
276     [o_intf_network_box setTitle: _NS("Privacy / Network Interaction")];
277
278     [o_intf_appleremote_ckb setTitle: _NS("Control playback with the Apple Remote")];
279
280     [o_intf_mediakeys_ckb setTitle: _NS("Control playback with media keys")];
281     [o_intf_update_ckb setTitle: _NS("Automatically check for updates")];
282     [o_intf_last_update_lbl setStringValue: @""];
283     [o_intf_enableGrowl_ckb setTitle: _NS("Enable Growl notifications (on playlist item change)")];
284     [o_intf_autoresize_ckb setTitle: _NS("Resize interface to the native video size")];
285     [o_intf_pauseminimized_ckb setTitle: _NS("Pause the video playback when minimized")];
286
287     /* Subtitles and OSD */
288     [o_osd_encoding_txt setStringValue: _NS("Default Encoding")];
289     [o_osd_font_box setTitle: _NS("Display Settings")];
290     [o_osd_font_btn setTitle: _NS("Choose...")];
291     [o_osd_font_color_txt setStringValue: _NS("Font Color")];
292     [o_osd_font_size_txt setStringValue: _NS("Font Size")];
293     [o_osd_font_txt setStringValue: _NS("Font")];
294     [o_osd_lang_box setTitle: _NS("Subtitle Languages")];
295     [o_osd_lang_txt setStringValue: _NS("Preferred Subtitle Language")];
296     [o_osd_osd_box setTitle: _NS("On Screen Display")];
297     [o_osd_osd_ckb setTitle: _NS("Enable OSD")];
298     [o_osd_opacity_txt setStringValue: _NS("Opacity")];
299     [o_osd_forcebold_ckb setTitle: _NS("Force Bold")];
300     [o_osd_outline_color_txt setStringValue: _NS("Outline Color")];
301     [o_osd_outline_thickness_txt setStringValue: _NS("Outline Thickness")];
302
303     /* video */
304     [o_video_black_ckb setTitle: _NS("Black screens in Fullscreen mode")];
305     [o_video_device_txt setStringValue: _NS("Fullscreen Video Device")];
306     [o_video_display_box setTitle: _NS("Display")];
307     [o_video_enable_ckb setTitle: _NS("Enable Video")];
308     [o_video_fullscreen_ckb setTitle: _NS("Fullscreen")];
309     [o_video_videodeco_ckb setTitle: _NS("Window decorations")];
310     [o_video_onTop_ckb setTitle: _NS("Always on top")];
311     [o_video_output_txt setStringValue: _NS("Output module")];
312     [o_video_skipFrames_ckb setTitle: _NS("Skip frames")];
313     [o_video_snap_box setTitle: _NS("Video snapshots")];
314     [o_video_snap_folder_btn setTitle: _NS("Browse...")];
315     [o_video_snap_folder_txt setStringValue: _NS("Folder")];
316     [o_video_snap_format_txt setStringValue: _NS("Format")];
317     [o_video_snap_prefix_txt setStringValue: _NS("Prefix")];
318     [o_video_snap_seqnum_ckb setTitle: _NS("Sequential numbering")];
319     [o_video_deinterlace_txt setStringValue: _NS("Deinterlace")];
320     [o_video_deinterlace_mode_txt setStringValue: _NS("Deinterlace mode")];
321     [o_video_video_box setTitle: _NS("Video")];
322
323     /* generic stuff */
324     [o_sprefs_showAll_btn setTitle: _NS("Show All")];
325     [o_sprefs_cancel_btn setTitle: _NS("Cancel")];
326     [o_sprefs_reset_btn setTitle: _NS("Reset All")];
327     [o_sprefs_save_btn setTitle: _NS("Save")];
328     [o_sprefs_win setTitle: _NS("Preferences")];
329 }
330
331 /* TODO: move this part to core */
332 #define config_GetLabel(a,b) __config_GetLabel(VLC_OBJECT(a),b)
333 static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_name )
334 {
335     module_config_t *p_config;
336
337     p_config = config_FindConfig( p_this, psz_name );
338
339     /* sanity checks */
340     if( !p_config )
341     {
342         msg_Err( p_this, "option %s does not exist", psz_name );
343         return NULL;
344     }
345
346     if ( p_config->psz_longtext )
347         return p_config->psz_longtext;
348     else if( p_config->psz_text )
349         return p_config->psz_text;
350     else
351         msg_Warn( p_this, "option %s does not include any help", psz_name );
352
353     return NULL;
354 }
355
356 #pragma mark -
357 #pragma mark Setup controls
358
359 - (void)setupButton: (NSPopUpButton *)object forStringList: (const char *)name
360 {
361     module_config_t *p_item;
362
363     [object removeAllItems];
364     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
365
366     /* serious problem, if no item found */
367     assert( p_item );
368
369     for( int i = 0; i < p_item->i_list; i++ )
370     {
371         NSMenuItem *mi;
372         if( p_item->ppsz_list_text != NULL )
373             mi = [[NSMenuItem alloc] initWithTitle: _NS( p_item->ppsz_list_text[i] ) action:NULL keyEquivalent: @""];
374         else if( p_item->ppsz_list[i] && strcmp(p_item->ppsz_list[i],"") == 0 )
375         {
376             [[object menu] addItem: [NSMenuItem separatorItem]];
377             continue;
378         }
379         else if( p_item->ppsz_list[i] )
380             mi = [[NSMenuItem alloc] initWithTitle: [NSString stringWithUTF8String: p_item->ppsz_list[i]] action:NULL keyEquivalent: @""];
381         else
382             msg_Err( p_intf, "item %d of pref %s failed to be created", i, name );
383         [mi setRepresentedObject:[NSString stringWithUTF8String: p_item->ppsz_list[i]]];
384         [[object menu] addItem: [mi autorelease]];
385         if( p_item->value.psz && !strcmp( p_item->value.psz, p_item->ppsz_list[i] ) )
386             [object selectItem:[object lastItem]];
387     }
388     [object setToolTip: _NS( p_item->psz_longtext )];
389 }
390
391 - (void)setupButton: (NSPopUpButton *)object forIntList: (const char *)name
392 {
393     module_config_t *p_item;
394
395     [object removeAllItems];
396     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
397
398     /* serious problem, if no item found */
399     assert( p_item );
400
401     for( int i = 0; i < p_item->i_list; i++ )
402     {
403         NSMenuItem *mi;
404         if( p_item->ppsz_list_text != NULL)
405             mi = [[NSMenuItem alloc] initWithTitle: _NS( p_item->ppsz_list_text[i] ) action:NULL keyEquivalent: @""];
406         else if( p_item->pi_list[i] )
407             mi = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"%d", p_item->pi_list[i]] action:NULL keyEquivalent: @""];
408         else
409             msg_Err( p_intf, "item %d of pref %s failed to be created", i, name);
410         [mi setRepresentedObject:[NSNumber numberWithInt: p_item->pi_list[i]]];
411         [[object menu] addItem: [mi autorelease]];
412         if( p_item->value.i == p_item->pi_list[i] )
413             [object selectItem:[object lastItem]];
414     }
415     [object setToolTip: _NS( p_item->psz_longtext )];
416 }
417
418 - (void)setupButton: (NSPopUpButton *)object forModuleList: (const char *)name
419 {
420     module_config_t *p_item;
421     module_t *p_parser, **p_list;
422     int y = 0;
423
424     [object removeAllItems];
425
426     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
427     p_list = module_list_get( NULL );
428     if( !p_item ||!p_list )
429     {
430         if( p_list ) module_list_free(p_list);
431         msg_Err( p_intf, "serious problem, item or list not found" );
432         return;
433     }
434
435     [object addItemWithTitle: _NS("Default")];
436     for( size_t i_index = 0; p_list[i_index]; i_index++ )
437     {
438         p_parser = p_list[i_index];
439         if( module_provides( p_parser, p_item->psz_type ) )
440         {
441             [object addItemWithTitle: [NSString stringWithUTF8String: _(module_GetLongName( p_parser )) ?: ""]];
442             if( p_item->value.psz && !strcmp( p_item->value.psz, module_get_object( p_parser ) ) )
443                 [object selectItem: [object lastItem]];
444         }
445     }
446     module_list_free( p_list );
447     [object setToolTip: _NS(p_item->psz_longtext)];
448 }
449
450 - (void)setupButton: (NSButton *)object forBoolValue: (const char *)name
451 {
452     [object setState: config_GetInt( p_intf, name )];
453     [object setToolTip: _NS(config_GetLabel( p_intf, name ) ?: "")];
454 }
455
456 - (void)setupField:(NSTextField *)o_object forOption:(const char *)psz_option
457 {
458     char *psz_tmp = config_GetPsz( p_intf, psz_option );
459     [o_object setStringValue: [NSString stringWithUTF8String: psz_tmp ?: ""]];
460     [o_object setToolTip: _NS(config_GetLabel( p_intf, psz_option ))];
461     free( psz_tmp );
462 }
463
464 - (void)resetControls
465 {
466     module_config_t *p_item;
467     int i, y = 0;
468     char *psz_tmp;
469
470     /**********************
471      * interface settings *
472      **********************/
473     [self setupButton: o_intf_lang_pop forStringList: "language"];
474     [self setupButton: o_intf_art_pop forIntList: "album-art"];
475
476     [self setupButton: o_intf_fspanel_ckb forBoolValue: "macosx-fspanel"];
477
478     [self setupButton: o_intf_nativefullscreen_ckb forBoolValue: "macosx-nativefullscreenmode"];
479     BOOL b_correct_sdk = NO;
480 #ifdef MAC_OS_X_VERSION_10_7
481     b_correct_sdk = YES;
482 #endif
483     if( !( b_correct_sdk && OSX_LION ))
484     {
485         [o_intf_nativefullscreen_ckb setState: NSOffState];
486         [o_intf_nativefullscreen_ckb setEnabled: NO];
487     }
488
489     [self setupButton: o_intf_embedded_ckb forBoolValue: "embedded-video"];
490
491     [self setupButton: o_intf_appleremote_ckb forBoolValue: "macosx-appleremote"];
492
493     [self setupButton: o_intf_mediakeys_ckb forBoolValue: "macosx-mediakeys"];
494     if( [[SUUpdater sharedUpdater] lastUpdateCheckDate] != NULL )
495         [o_intf_last_update_lbl setStringValue: [NSString stringWithFormat: _NS("Last check on: %@"), [[[SUUpdater sharedUpdater] lastUpdateCheckDate] descriptionWithLocale: [[NSUserDefaults standardUserDefaults] dictionaryRepresentation]]]];
496     else
497         [o_intf_last_update_lbl setStringValue: _NS("No check was performed yet.")];
498     psz_tmp = config_GetPsz( p_intf, "control" );
499     if (psz_tmp) {
500         [o_intf_enableGrowl_ckb setState: (NSInteger)strstr( psz_tmp, "growl")];
501         free( psz_tmp );
502     }
503     else
504         [o_intf_enableGrowl_ckb setState: NSOffState];
505     if (config_GetInt( p_intf, "macosx-interfacestyle" ))
506     {
507         [o_intf_style_dark_bcell setState: YES];
508         [o_intf_style_bright_bcell setState: NO];
509     }
510     else
511     {
512         [o_intf_style_dark_bcell setState: NO];
513         [o_intf_style_bright_bcell setState: YES];
514     }
515     [self setupButton: o_intf_autoresize_ckb forBoolValue: "macosx-video-autoresize"];
516     [self setupButton: o_intf_pauseminimized_ckb forBoolValue: "macosx-pause-minimized"];
517
518     /******************
519      * audio settings *
520      ******************/
521     [self setupButton: o_audio_enable_ckb forBoolValue: "audio"];
522
523     if ( config_GetInt( p_intf, "volume-save" ))
524     {
525         [o_audio_autosavevol_yes_bcell setState: NSOnState];
526         [o_audio_autosavevol_no_bcell setState: NSOffState];
527         [o_audio_vol_fld setEnabled: NO];
528         [o_audio_vol_sld setEnabled: NO];
529
530         [o_audio_vol_sld setIntValue: 100];
531         [o_audio_vol_fld setIntValue: 100];
532     }
533     else
534     {
535         [o_audio_autosavevol_yes_bcell setState: NSOffState];
536         [o_audio_autosavevol_no_bcell setState: NSOnState];
537         [o_audio_vol_fld setEnabled: YES];
538         [o_audio_vol_sld setEnabled: YES];
539
540         i = config_GetInt( p_intf, "volume" );
541         i = i * 200.0 / AOUT_VOLUME_MAX + 0.5;
542         [o_audio_vol_sld setIntValue: i];
543         [o_audio_vol_fld setIntValue: i];
544     }
545
546     [self setupButton: o_audio_spdif_ckb forBoolValue: "spdif"];
547
548     [self setupButton: o_audio_dolby_pop forIntList: "force-dolby-surround"];
549     [self setupField: o_audio_lang_fld forOption: "audio-language"];
550
551     [self setupButton: o_audio_visual_pop forModuleList: "audio-visual"];
552
553     /* Last.FM is optional */
554     if( module_exists( "audioscrobbler" ) )
555     {
556         [self setupField: o_audio_lastuser_fld forOption:"lastfm-username"];
557         [self setupField: o_audio_lastpwd_sfld forOption:"lastfm-password"];
558
559         if( config_ExistIntf( VLC_OBJECT( p_intf ), "audioscrobbler" ) )
560         {
561             [o_audio_last_ckb setState: NSOnState];
562             [o_audio_lastuser_fld setEnabled: YES];
563             [o_audio_lastpwd_sfld setEnabled: YES];
564         }
565         else
566         {
567             [o_audio_last_ckb setState: NSOffState];
568             [o_audio_lastuser_fld setEnabled: NO];
569             [o_audio_lastpwd_sfld setEnabled: NO];
570         }
571     }
572     else
573         [o_audio_last_ckb setEnabled: NO];
574
575     /******************
576      * video settings *
577      ******************/
578     [self setupButton: o_video_enable_ckb forBoolValue: "video"];
579     [self setupButton: o_video_fullscreen_ckb forBoolValue: "fullscreen"];
580     [self setupButton: o_video_onTop_ckb forBoolValue: "video-on-top"];
581     [self setupButton: o_video_skipFrames_ckb forBoolValue: "skip-frames"];
582     [self setupButton: o_video_black_ckb forBoolValue: "macosx-black"];
583     [self setupButton: o_video_videodeco_ckb forBoolValue: "video-deco"];
584
585     [self setupButton: o_video_output_pop forModuleList: "vout"];
586
587     [o_video_device_pop removeAllItems];
588     i = 0;
589     y = [[NSScreen screens] count];
590     [o_video_device_pop addItemWithTitle: _NS("Default")];
591     [[o_video_device_pop lastItem] setTag: 0];
592     while( i < y )
593     {
594         NSRect s_rect = [[[NSScreen screens] objectAtIndex: i] frame];
595         [o_video_device_pop addItemWithTitle:
596          [NSString stringWithFormat: @"%@ %i (%ix%i)", _NS("Screen"), i+1,
597                    (int)s_rect.size.width, (int)s_rect.size.height]];
598         [[o_video_device_pop lastItem] setTag: (int)[[[NSScreen screens] objectAtIndex: i] displayID]];
599         i++;
600     }
601     [o_video_device_pop selectItemAtIndex: 0];
602     [o_video_device_pop selectItemWithTag: config_GetInt( p_intf, "macosx-vdev" )];
603
604     [self setupField: o_video_snap_folder_fld forOption:"snapshot-path"];
605     [self setupField: o_video_snap_prefix_fld forOption:"snapshot-prefix"];
606     [self setupButton: o_video_snap_seqnum_ckb forBoolValue: "snapshot-sequential"];
607     [self setupButton: o_video_snap_format_pop forStringList: "snapshot-format"];
608     [self setupButton: o_video_deinterlace_pop forIntList: "deinterlace"];
609     [self setupButton: o_video_deinterlace_mode_pop forStringList: "deinterlace-mode"];
610
611     /***************************
612      * input & codecs settings *
613      ***************************/
614     [self setupField: o_input_record_fld forOption:"input-record-path"];
615     [self setupField: o_input_httpproxy_fld forOption:"http-proxy"];
616     [self setupField: o_input_httpproxypwd_sfld forOption:"http-proxy-pwd"];
617     [o_input_postproc_fld setIntValue: config_GetInt( p_intf, "postproc-q")];
618     [o_input_postproc_fld setToolTip: _NS(config_GetLabel( p_intf, "postproc-q"))];
619
620     [self setupButton: o_input_avi_pop forIntList: "avi-index"];
621
622     [self setupButton: o_input_rtsp_ckb forBoolValue: "rtsp-tcp"];
623     [self setupButton: o_input_skipLoop_pop forIntList: "avcodec-skiploopfilter"];
624
625     [self setupButton: o_input_mkv_preload_dir_ckb forBoolValue: "mkv-preload-local-dir"];
626
627     [o_input_cachelevel_pop removeAllItems];
628     [o_input_cachelevel_pop addItemsWithTitles:
629         [NSArray arrayWithObjects: _NS("Custom"), _NS("Lowest latency"), _NS("Low latency"), _NS("Normal"),
630             _NS("High latency"), _NS("Higher latency"), nil]];
631     [[o_input_cachelevel_pop itemAtIndex: 0] setTag: 0];
632     [[o_input_cachelevel_pop itemAtIndex: 1] setTag: 100];
633     [[o_input_cachelevel_pop itemAtIndex: 2] setTag: 200];
634     [[o_input_cachelevel_pop itemAtIndex: 3] setTag: 300];
635     [[o_input_cachelevel_pop itemAtIndex: 4] setTag: 500];
636     [[o_input_cachelevel_pop itemAtIndex: 5] setTag: 1000];
637
638     #define TestCaC( name, factor ) \
639     b_cache_equal =  b_cache_equal && \
640     ( i_cache * factor == config_GetInt( p_intf, name ) );
641
642     /* Select the accurate value of the PopupButton */
643     bool b_cache_equal = true;
644     int i_cache = config_GetInt( p_intf, "file-caching");
645
646     TestCaC( "network-caching", 10/3 );
647     TestCaC( "disc-caching", 1 );
648     TestCaC( "live-caching", 1 );
649     if( b_cache_equal )
650     {
651         [o_input_cachelevel_pop selectItemWithTag: i_cache];
652         [o_input_cachelevel_custom_txt setHidden: YES];
653     }
654     else
655     {
656         [o_input_cachelevel_pop selectItemWithTitle: _NS("Custom")];
657         [o_input_cachelevel_custom_txt setHidden: NO];
658     }
659     #undef TestCaC
660
661     /*********************
662      * subtitle settings *
663      *********************/
664     [self setupButton: o_osd_osd_ckb forBoolValue: "osd"];
665
666     [self setupButton: o_osd_encoding_pop forStringList: "subsdec-encoding"];
667     [self setupField: o_osd_lang_fld forOption: "sub-language" ];
668
669     [self setupField: o_osd_font_fld forOption: "freetype-font"];
670     [self setupButton: o_osd_font_color_pop forIntList: "freetype-color"];
671     [self setupButton: o_osd_font_size_pop forIntList: "freetype-rel-fontsize"];
672     i = config_GetInt( p_intf, "freetype-opacity" ) * 100.0 / 255.0 + 0.5;
673     [o_osd_opacity_fld setIntValue: i];
674     [o_osd_opacity_sld setIntValue: i];
675     [o_osd_opacity_sld setToolTip: _NS(config_GetLabel( p_intf, "freetype-opacity"))];
676     [o_osd_opacity_fld setToolTip: [o_osd_opacity_sld toolTip]];
677     [self setupButton: o_osd_forcebold_ckb forBoolValue: "freetype-bold"];
678     [self setupButton: o_osd_outline_color_pop forIntList: "freetype-outline-color"];
679     [self setupButton: o_osd_outline_thickness_pop forIntList: "freetype-outline-thickness"];
680
681     /********************
682      * hotkeys settings *
683      ********************/
684     const struct hotkey *p_hotkeys = p_intf->p_libvlc->p_hotkeys;
685     [o_hotkeySettings release];
686     o_hotkeySettings = [[NSMutableArray alloc] init];
687     NSMutableArray *o_tempArray_desc = [[NSMutableArray alloc] init];
688     NSMutableArray *o_tempArray_names = [[NSMutableArray alloc] init];
689
690     /* Get the main Module */
691     module_t *p_main = module_get_main();
692     assert( p_main );
693     unsigned confsize;
694     module_config_t *p_config;
695
696     p_config = module_config_get (p_main, &confsize);
697
698     for (size_t i = 0; i < confsize; i++)
699     {
700         module_config_t *p_item = p_config + i;
701
702         if( CONFIG_ITEM(p_item->i_type) && p_item->psz_name != NULL
703            && !strncmp( p_item->psz_name , "key-", 4 )
704            && !EMPTY_STR( p_item->psz_text ) )
705         {
706             [o_tempArray_desc addObject: _NS( p_item->psz_text )];
707             [o_tempArray_names addObject: [NSString stringWithUTF8String:p_item->psz_name]];
708             if (p_item->value.psz)
709                 [o_hotkeySettings addObject: [NSString stringWithUTF8String:p_item->value.psz]];
710             else
711                 [o_hotkeySettings addObject: [NSString string]];
712         }
713     }
714     module_config_free (p_config);
715
716     [o_hotkeyDescriptions release];
717     o_hotkeyDescriptions = [[NSArray alloc] initWithArray: o_tempArray_desc copyItems: YES];
718     [o_tempArray_desc release];
719     [o_hotkeyNames release];
720     o_hotkeyNames = [[NSArray alloc] initWithArray: o_tempArray_names copyItems: YES];
721     [o_tempArray_names release];
722     [o_hotkeys_listbox reloadData];
723 }
724
725 #pragma mark -
726 #pragma mark General actions
727
728 - (void)showSimplePrefs
729 {
730     /* we want to show the interface settings, if no category was chosen */
731     if( [[o_sprefs_win toolbar] selectedItemIdentifier] == nil )
732     {
733         [[o_sprefs_win toolbar] setSelectedItemIdentifier: VLCIntfSettingToolbarIdentifier];
734         [self showInterfaceSettings];
735     }
736
737     [self resetControls];
738
739     [o_sprefs_win center];
740     [o_sprefs_win makeKeyAndOrderFront: self];
741 }
742
743 - (void)showSimplePrefsWithLevel:(NSInteger)i_window_level
744 {
745     [o_sprefs_win setLevel: i_window_level];
746     [self showSimplePrefs];
747 }
748
749 - (IBAction)buttonAction:(id)sender
750 {
751     if( sender == o_sprefs_cancel_btn )
752     {
753         [[NSFontPanel sharedFontPanel] close];
754         [o_sprefs_win orderOut: sender];
755     }
756     else if( sender == o_sprefs_save_btn )
757     {
758         [self saveChangedSettings];
759         [[NSFontPanel sharedFontPanel] close];
760         [o_sprefs_win orderOut: sender];
761     }
762     else if( sender == o_sprefs_reset_btn )
763         NSBeginInformationalAlertSheet( _NS("Reset Preferences"), _NS("Cancel"),
764                                         _NS("Continue"), nil, o_sprefs_win, self,
765                                         @selector(sheetDidEnd: returnCode: contextInfo:), NULL, nil,
766                                         _NS("Beware this will reset the VLC media player preferences.\n"
767                                             "Are you sure you want to continue?") );
768     else if( sender == o_sprefs_showAll_btn )
769     {
770         [o_sprefs_win orderOut: self];
771         [[[VLCMain sharedInstance] preferences] showPrefsWithLevel:[o_sprefs_win level]];
772     }
773     else
774         msg_Warn( p_intf, "unknown buttonAction sender" );
775 }
776
777 - (void)sheetDidEnd:(NSWindow *)o_sheet
778          returnCode:(int)i_return
779         contextInfo:(void *)o_context
780 {
781     if( i_return == NSAlertAlternateReturn )
782     {
783         config_ResetAll( p_intf );
784         [self resetControls];
785         config_SaveConfigFile( p_intf );
786     }
787 }
788
789 static inline void save_int_list( intf_thread_t * p_intf, id object, const char * name )
790 {
791     NSNumber *p_valueobject;
792     module_config_t *p_item;
793     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
794     p_valueobject = (NSNumber *)[[object selectedItem] representedObject];
795     assert([p_valueobject isKindOfClass:[NSNumber class]]);
796     if( p_valueobject) config_PutInt( p_intf, name, [p_valueobject intValue] );
797 }
798
799 static inline void save_string_list( intf_thread_t * p_intf, id object, const char * name )
800 {
801     NSString *p_stringobject;
802     module_config_t *p_item;
803     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
804     p_stringobject = (NSString *)[[object selectedItem] representedObject];
805     assert([p_stringobject isKindOfClass:[NSString class]]);
806     if( p_stringobject )
807     {
808         config_PutPsz( p_intf, name, [p_stringobject UTF8String] );
809     }
810 }
811
812 static inline void save_module_list( intf_thread_t * p_intf, id object, const char * name )
813 {
814     module_config_t *p_item;
815     module_t *p_parser, **p_list;
816     NSString * objectTitle = [[object selectedItem] title];
817
818     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
819
820     p_list = module_list_get( NULL );
821     for( size_t i_module_index = 0; p_list[i_module_index]; i_module_index++ )
822     {
823         p_parser = p_list[i_module_index];
824
825         if( p_item->i_type == CONFIG_ITEM_MODULE && module_provides( p_parser, p_item->psz_type ) )
826         {
827             if( [objectTitle isEqualToString: _NS( module_GetLongName( p_parser ) )] )
828             {
829                 config_PutPsz( p_intf, name, strdup( module_get_object( p_parser )));
830                 break;
831             }
832         }
833     }
834     module_list_free( p_list );
835     if( [objectTitle isEqualToString: _NS( "Default" )] )
836         config_PutPsz( p_intf, name, "" );
837 }
838
839 - (void)saveChangedSettings
840 {
841     NSString *tmpString;
842     NSRange tmpRange;
843
844 #define SaveIntList( object, name ) save_int_list( p_intf, object, name )
845
846 #define SaveStringList( object, name ) save_string_list( p_intf, object, name )
847
848 #define SaveModuleList( object, name ) save_module_list( p_intf, object, name )
849
850 #define getString( name ) [NSString stringWithFormat:@"%s", config_GetPsz( p_intf, name )]
851
852     /**********************
853      * interface settings *
854      **********************/
855     if( b_intfSettingChanged )
856     {
857         SaveStringList( o_intf_lang_pop, "language" );
858         SaveIntList( o_intf_art_pop, "album-art" );
859
860         config_PutInt( p_intf, "macosx-fspanel", [o_intf_fspanel_ckb state] );
861         config_PutInt( p_intf, "embedded-video", [o_intf_embedded_ckb state] );
862
863         config_PutInt( p_intf, "macosx-appleremote", [o_intf_appleremote_ckb state] );
864         config_PutInt( p_intf, "macosx-mediakeys", [o_intf_mediakeys_ckb state] );
865         config_PutInt( p_intf, "macosx-interfacestyle", [o_intf_style_dark_bcell state] );
866         config_PutInt( p_intf, "macosx-nativefullscreenmode", [o_intf_nativefullscreen_ckb state] );
867         config_PutInt( p_intf, "macosx-pause-minimized", [o_intf_pauseminimized_ckb state] );
868         config_PutInt( p_intf, "macosx-video-autoresize", [o_intf_autoresize_ckb state] );
869         if( [o_intf_enableGrowl_ckb state] == NSOnState )
870         {
871             tmpString = getString( "control" );
872             tmpRange = [tmpString rangeOfString:@"growl"];
873             if( [tmpString length] > 0 && tmpRange.location == NSNotFound )
874             {
875                 tmpString = [tmpString stringByAppendingString: @":growl"];
876                 config_PutPsz( p_intf, "control", [tmpString UTF8String] );
877             }
878             else
879                 config_PutPsz( p_intf, "control", "growl" );
880         }
881         else
882         {
883             tmpString = getString( "control" );
884             if(! [tmpString isEqualToString:@""] )
885             {
886                 tmpString = [tmpString stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@":growl"]];
887                 tmpString = [tmpString stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@"growl:"]];
888                 tmpString = [tmpString stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@"growl"]];
889                 config_PutPsz( p_intf, "control", [tmpString UTF8String] );
890             }
891         }
892
893         /* activate stuff without restart */
894         if( [o_intf_appleremote_ckb state] == YES )
895             [[[VLCMain sharedInstance] appleRemoteController] startListening: [VLCMain sharedInstance]];
896         else
897             [[[VLCMain sharedInstance] appleRemoteController] stopListening: [VLCMain sharedInstance]];
898         b_intfSettingChanged = NO;
899     }
900
901     /******************
902      * audio settings *
903      ******************/
904     if( b_audioSettingChanged )
905     {
906         config_PutInt( p_intf, "audio", [o_audio_enable_ckb state] );
907         if( [o_audio_vol_fld isEnabled] )
908             config_PutInt( p_intf, "volume", [o_audio_vol_fld intValue] * AOUT_VOLUME_MAX / 200.0 + 0.5 );
909         config_PutInt( p_intf, "volume-save", [o_audio_autosavevol_yes_bcell state] );
910         config_PutInt( p_intf, "spdif", [o_audio_spdif_ckb state] );
911
912         SaveIntList( o_audio_dolby_pop, "force-dolby-surround" );
913
914         config_PutPsz( p_intf, "audio-language", [[o_audio_lang_fld stringValue] UTF8String] );
915
916         SaveModuleList( o_audio_visual_pop, "audio-visual" );
917
918         /* Last.FM is optional */
919         if( module_exists( "audioscrobbler" ) )
920         {
921             [o_audio_last_ckb setEnabled: YES];
922             if( [o_audio_last_ckb state] == NSOnState )
923                 config_AddIntf( p_intf, "audioscrobbler" );
924             else
925                 config_RemoveIntf( p_intf, "audioscrobbler" );
926
927             config_PutPsz( p_intf, "lastfm-username", [[o_audio_lastuser_fld stringValue] UTF8String] );
928             config_PutPsz( p_intf, "lastfm-password", [[o_audio_lastpwd_sfld stringValue] UTF8String] );
929         }
930         else
931             [o_audio_last_ckb setEnabled: NO];
932         b_audioSettingChanged = NO;
933     }
934
935     /******************
936      * video settings *
937      ******************/
938     if( b_videoSettingChanged )
939     {
940         config_PutInt( p_intf, "video", [o_video_enable_ckb state] );
941         config_PutInt( p_intf, "fullscreen", [o_video_fullscreen_ckb state] );
942         config_PutInt( p_intf, "video-deco", [o_video_videodeco_ckb state] );
943         config_PutInt( p_intf, "video-on-top", [o_video_onTop_ckb state] );
944         config_PutInt( p_intf, "skip-frames", [o_video_skipFrames_ckb state] );
945         config_PutInt( p_intf, "macosx-black", [o_video_black_ckb state] );
946
947         SaveModuleList( o_video_output_pop, "vout" );
948         config_PutInt( p_intf, "macosx-vdev", [[o_video_device_pop selectedItem] tag] );
949
950         config_PutPsz( p_intf, "snapshot-path", [[o_video_snap_folder_fld stringValue] UTF8String] );
951         config_PutPsz( p_intf, "snapshot-prefix", [[o_video_snap_prefix_fld stringValue] UTF8String] );
952         config_PutInt( p_intf, "snapshot-sequential", [o_video_snap_seqnum_ckb state] );
953         SaveStringList( o_video_snap_format_pop, "snapshot-format" );
954         SaveIntList( o_video_deinterlace_pop, "deinterlace" );
955         SaveStringList( o_video_deinterlace_mode_pop, "deinterlace-mode" );
956         b_videoSettingChanged = NO;
957     }
958
959     /***************************
960      * input & codecs settings *
961      ***************************/
962     if( b_inputSettingChanged )
963     {
964         config_PutPsz( p_intf, "input-record-path", [[o_input_record_fld stringValue] UTF8String] );
965         config_PutPsz( p_intf, "http-proxy", [[o_input_httpproxy_fld stringValue] UTF8String] );
966         config_PutPsz( p_intf, "http-proxy-pwd", [[o_input_httpproxypwd_sfld stringValue] UTF8String] );
967         config_PutInt( p_intf, "postproc-q", [o_input_postproc_fld intValue] );
968
969         SaveIntList( o_input_avi_pop, "avi-index" );
970
971         config_PutInt( p_intf, "rtsp-tcp", [o_input_rtsp_ckb state] );
972         SaveIntList( o_input_skipLoop_pop, "avcodec-skiploopfilter" );
973
974         config_PutInt( p_intf, "mkv-preload-local-dir", [o_input_mkv_preload_dir_ckb state] );
975
976         #define CaC( name, factor ) config_PutInt( p_intf, name, [[o_input_cachelevel_pop selectedItem] tag] * factor )
977         if ( [[o_input_cachelevel_pop selectedItem] tag] == 0 )
978         {
979             msg_Dbg( p_intf, "Custom chosen, not adjusting cache values" );
980         }
981         else
982         {
983             msg_Dbg( p_intf, "Adjusting all cache values to: %i", (int)[[o_input_cachelevel_pop selectedItem] tag] );
984             CaC( "file-caching", 1 );
985             CaC( "network-caching", 10/3 );
986             CaC( "disc-caching", 1 );
987             CaC( "live-caching", 1 );
988         }
989         #undef CaC
990         b_inputSettingChanged = NO;
991     }
992
993     /**********************
994      * subtitles settings *
995      **********************/
996     if( b_osdSettingChanged )
997     {
998         config_PutInt( p_intf, "osd", [o_osd_osd_ckb state] );
999
1000         if( [o_osd_encoding_pop indexOfSelectedItem] >= 0 )
1001             SaveStringList( o_osd_encoding_pop, "subsdec-encoding" );
1002         else
1003             config_PutPsz( p_intf, "subsdec-encoding", "" );
1004
1005         config_PutPsz( p_intf, "sub-language", [[o_osd_lang_fld stringValue] UTF8String] );
1006
1007         config_PutPsz( p_intf, "freetype-font", [[o_osd_font_fld stringValue] UTF8String] );
1008         SaveIntList( o_osd_font_color_pop, "freetype-color" );
1009         SaveIntList( o_osd_font_size_pop, "freetype-rel-fontsize" );
1010         config_PutInt( p_intf, "freetype-opacity", [o_osd_opacity_fld intValue] * 255.0 / 100.0 + 0.5 );
1011         config_PutInt( p_intf, "freetype-bold", [o_osd_forcebold_ckb state] );
1012         SaveIntList( o_osd_outline_color_pop, "freetype-outline-color" );
1013         SaveIntList( o_osd_outline_thickness_pop, "freetype-outline-thickness" );
1014         b_osdSettingChanged = NO;
1015     }
1016
1017     /********************
1018      * hotkeys settings *
1019      ********************/
1020     if( b_hotkeyChanged )
1021     {
1022         NSUInteger hotKeyCount = [o_hotkeySettings count];
1023         for( NSUInteger i = 0; i < hotKeyCount; i++ )
1024             config_PutPsz( p_intf, [[o_hotkeyNames objectAtIndex:i] UTF8String], [[o_hotkeySettings objectAtIndex:i]UTF8String] );
1025         b_hotkeyChanged = NO;
1026     }
1027
1028     [[VLCCoreInteraction sharedInstance] fixPreferences];
1029
1030     /* okay, let's save our changes to vlcrc */
1031     config_SaveConfigFile( p_intf );
1032
1033     [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCMediaKeySupportSettingChanged"
1034                                                             object: nil
1035                                                           userInfo: nil];
1036 }
1037
1038 - (void)showSettingsForCategory: (id)o_new_category_view
1039 {
1040     NSRect o_win_rect, o_view_rect, o_old_view_rect;
1041     o_win_rect = [o_sprefs_win frame];
1042     o_view_rect = [o_new_category_view frame];
1043
1044     if( o_currentlyShownCategoryView != nil )
1045     {
1046         /* restore our window's height, if we've shown another category previously */
1047         o_old_view_rect = [o_currentlyShownCategoryView frame];
1048         o_win_rect.size.height = o_win_rect.size.height - o_old_view_rect.size.height;
1049         o_win_rect.origin.y = ( o_win_rect.origin.y + o_old_view_rect.size.height ) - o_view_rect.size.height;
1050     }
1051
1052     o_win_rect.size.height = o_win_rect.size.height + o_view_rect.size.height;
1053
1054     [o_new_category_view setFrame: NSMakeRect( 0,
1055                                                [o_sprefs_controls_box frame].size.height,
1056                                                o_view_rect.size.width,
1057                                                o_view_rect.size.height )];
1058     [o_new_category_view setAutoresizesSubviews: YES];
1059     if (o_currentlyShownCategoryView)
1060     {
1061         [[[o_sprefs_win contentView] animator] replaceSubview: o_currentlyShownCategoryView with: o_new_category_view];
1062         [o_currentlyShownCategoryView release];
1063         [[o_sprefs_win animator] setFrame: o_win_rect display:YES];
1064     }
1065     else
1066     {
1067         [[o_sprefs_win contentView] addSubview: o_new_category_view];
1068         [o_sprefs_win setFrame: o_win_rect display:YES animate:NO];
1069     }
1070
1071     /* keep our current category for further reference */
1072     o_currentlyShownCategoryView = o_new_category_view;
1073     [o_currentlyShownCategoryView retain];
1074 }
1075
1076 #pragma mark -
1077 #pragma mark Specific actions
1078
1079 - (IBAction)interfaceSettingChanged:(id)sender
1080 {
1081     if( sender == o_intf_embedded_ckb && [o_intf_embedded_ckb state] == NSOffState )
1082         [o_intf_nativefullscreen_ckb setState: NSOffState];
1083
1084     if( sender == o_intf_nativefullscreen_ckb && [o_intf_nativefullscreen_ckb state] == NSOnState )
1085         [o_intf_embedded_ckb setState: NSOnState];
1086
1087     if( sender == o_intf_embedded_ckb )
1088         [[VLCCoreInteraction sharedInstance] stop];
1089
1090     b_intfSettingChanged = YES;
1091 }
1092
1093 - (void)showInterfaceSettings
1094 {
1095     [self showSettingsForCategory: o_intf_view];
1096 }
1097
1098 - (IBAction)audioSettingChanged:(id)sender
1099 {
1100     if( sender == o_audio_vol_sld )
1101         [o_audio_vol_fld setIntValue: [o_audio_vol_sld intValue]];
1102
1103     if( sender == o_audio_vol_fld )
1104         [o_audio_vol_sld setIntValue: [o_audio_vol_fld intValue]];
1105
1106     if( sender == o_audio_last_ckb )
1107     {
1108         if( [o_audio_last_ckb state] == NSOnState )
1109         {
1110             [o_audio_lastpwd_sfld setEnabled: YES];
1111             [o_audio_lastuser_fld setEnabled: YES];
1112         }
1113         else
1114         {
1115             [o_audio_lastpwd_sfld setEnabled: NO];
1116             [o_audio_lastuser_fld setEnabled: NO];
1117         }
1118     }
1119
1120     if( sender == o_audio_autosavevol_matrix )
1121     {
1122         BOOL enableVolumeSlider = [o_audio_autosavevol_matrix selectedTag] == 1;
1123         [o_audio_vol_fld setEnabled: enableVolumeSlider];
1124         [o_audio_vol_sld setEnabled: enableVolumeSlider];
1125     }
1126
1127     b_audioSettingChanged = YES;
1128 }
1129
1130 - (void)showAudioSettings
1131 {
1132     [self showSettingsForCategory: o_audio_view];
1133 }
1134
1135 - (IBAction)videoSettingChanged:(id)sender
1136 {
1137     if( sender == o_video_snap_folder_btn )
1138     {
1139         o_selectFolderPanel = [[NSOpenPanel alloc] init];
1140         [o_selectFolderPanel setCanChooseDirectories: YES];
1141         [o_selectFolderPanel setCanChooseFiles: NO];
1142         [o_selectFolderPanel setResolvesAliases: YES];
1143         [o_selectFolderPanel setAllowsMultipleSelection: NO];
1144         [o_selectFolderPanel setMessage: _NS("Choose the folder to save your video snapshots to.")];
1145         [o_selectFolderPanel setCanCreateDirectories: YES];
1146         [o_selectFolderPanel setPrompt: _NS("Choose")];
1147         [o_selectFolderPanel beginSheetForDirectory: nil file: nil modalForWindow: o_sprefs_win
1148                                       modalDelegate: self
1149                                      didEndSelector: @selector(savePanelDidEnd:returnCode:contextInfo:)
1150                                         contextInfo: o_video_snap_folder_btn];
1151     }
1152     else
1153         b_videoSettingChanged = YES;
1154 }
1155
1156 - (void)savePanelDidEnd:(NSOpenPanel * )panel returnCode: (int)returnCode contextInfo: (void *)contextInfo
1157 {
1158     if( returnCode == NSOKButton )
1159     {
1160         if( contextInfo == o_video_snap_folder_btn )
1161         {
1162             [o_video_snap_folder_fld setStringValue: [[o_selectFolderPanel URL] path]];
1163             b_videoSettingChanged = YES;
1164         }
1165         else if( contextInfo == o_input_record_btn )
1166         {
1167             [o_input_record_fld setStringValue: [[o_selectFolderPanel URL] path]];
1168             b_inputSettingChanged = YES;
1169         }
1170     }
1171
1172     [o_selectFolderPanel release];
1173 }
1174
1175 - (void)showVideoSettings
1176 {
1177     [self showSettingsForCategory: o_video_view];
1178 }
1179
1180 - (IBAction)osdSettingChanged:(id)sender
1181 {
1182     if( sender == o_osd_opacity_fld )
1183         [o_osd_opacity_sld setIntValue: [o_osd_opacity_fld intValue]];
1184
1185     if( sender == o_osd_opacity_sld )
1186         [o_osd_opacity_fld setIntValue: [o_osd_opacity_sld intValue]];
1187
1188     b_osdSettingChanged = YES;
1189 }
1190
1191 - (void)showOSDSettings
1192 {
1193     [self showSettingsForCategory: o_osd_view];
1194 }
1195
1196 - (void)controlTextDidChange:(NSNotification *)o_notification
1197 {
1198     id notificationObject = [o_notification object];
1199     if( notificationObject == o_audio_lang_fld ||
1200        notificationObject ==  o_audio_lastpwd_sfld ||
1201        notificationObject ==  o_audio_lastuser_fld ||
1202        notificationObject == o_audio_vol_fld )
1203         b_audioSettingChanged = YES;
1204     else if( notificationObject == o_input_record_fld ||
1205              notificationObject == o_input_httpproxy_fld ||
1206             notificationObject == o_input_httpproxypwd_sfld ||
1207             notificationObject == o_input_postproc_fld )
1208         b_inputSettingChanged = YES;
1209     else if( notificationObject == o_osd_font_fld ||
1210             notificationObject == o_osd_lang_fld ||
1211             notificationObject == o_osd_opacity_fld)
1212         b_osdSettingChanged = YES;
1213     else if( notificationObject == o_video_snap_folder_fld ||
1214             notificationObject == o_video_snap_prefix_fld )
1215         b_videoSettingChanged = YES;
1216 }
1217
1218 - (IBAction)showFontPicker:(id)sender
1219 {
1220     char * font = config_GetPsz( p_intf, "freetype-font" );
1221     NSString * fontName = font ? [NSString stringWithUTF8String: font] : nil;
1222     free(font);
1223     if( fontName )
1224     {
1225         NSFont * font = [NSFont fontWithName:fontName size:0.0];
1226         [[NSFontManager sharedFontManager] setSelectedFont:font isMultiple:NO];
1227     }
1228     [[NSFontManager sharedFontManager] setTarget: self];
1229     [[NSFontPanel sharedFontPanel] orderFront:self];
1230 }
1231
1232 - (void)changeFont:(id)sender
1233 {
1234     NSFont * font = [sender convertFont:[[NSFontManager sharedFontManager] selectedFont]];
1235     [o_osd_font_fld setStringValue:[font fontName]];
1236     [self osdSettingChanged:self];
1237 }
1238
1239 - (IBAction)inputSettingChanged:(id)sender
1240 {
1241     if( sender == o_input_cachelevel_pop )
1242     {
1243         if( [[[o_input_cachelevel_pop selectedItem] title] isEqualToString: _NS("Custom")] )
1244             [o_input_cachelevel_custom_txt setHidden: NO];
1245         else
1246             [o_input_cachelevel_custom_txt setHidden: YES];
1247     }
1248     else if( sender == o_input_record_btn )
1249     {
1250         o_selectFolderPanel = [[NSOpenPanel alloc] init];
1251         [o_selectFolderPanel setCanChooseDirectories: YES];
1252         [o_selectFolderPanel setCanChooseFiles: YES];
1253         [o_selectFolderPanel setResolvesAliases: YES];
1254         [o_selectFolderPanel setAllowsMultipleSelection: NO];
1255         [o_selectFolderPanel setMessage: _NS("Choose the directory or filename where the records will be stored.")];
1256         [o_selectFolderPanel setCanCreateDirectories: YES];
1257         [o_selectFolderPanel setPrompt: _NS("Choose")];
1258         [o_selectFolderPanel beginSheetForDirectory: nil file: nil modalForWindow: o_sprefs_win
1259                                       modalDelegate: self
1260                                      didEndSelector: @selector(savePanelDidEnd:returnCode:contextInfo:)
1261                                         contextInfo: o_input_record_btn];
1262         return;
1263     }
1264
1265     b_inputSettingChanged = YES;
1266 }
1267
1268 - (void)showInputSettings
1269 {
1270     [self showSettingsForCategory: o_input_view];
1271 }
1272
1273 #pragma mark -
1274 #pragma mark Hotkey actions
1275
1276 - (void)hotkeyTableDoubleClick:(id)object
1277 {
1278     // -1 is header
1279     if( [o_hotkeys_listbox clickedRow] >= 0 )
1280         [self hotkeySettingChanged:o_hotkeys_listbox];
1281 }
1282
1283 - (IBAction)hotkeySettingChanged:(id)sender
1284 {
1285     if( sender == o_hotkeys_change_btn || sender == o_hotkeys_listbox )
1286     {
1287         [o_hotkeys_change_lbl setStringValue: [NSString stringWithFormat: _NS("Press new keys for\n\"%@\""),
1288                                                [o_hotkeyDescriptions objectAtIndex: [o_hotkeys_listbox selectedRow]]]];
1289         [o_hotkeys_change_keys_lbl setStringValue: [self OSXStringKeyToString:[o_hotkeySettings objectAtIndex: [o_hotkeys_listbox selectedRow]]]];
1290         [o_hotkeys_change_taken_lbl setStringValue: @""];
1291         [o_hotkeys_change_win setInitialFirstResponder: [o_hotkeys_change_win contentView]];
1292         [o_hotkeys_change_win makeFirstResponder: [o_hotkeys_change_win contentView]];
1293         [NSApp runModalForWindow: o_hotkeys_change_win];
1294     }
1295     else if( sender == o_hotkeys_change_cancel_btn )
1296     {
1297         [NSApp stopModal];
1298         [o_hotkeys_change_win close];
1299     }
1300     else if( sender == o_hotkeys_change_ok_btn )
1301     {
1302         NSInteger i_returnValue;
1303         if(! o_keyInTransition )
1304         {
1305             [NSApp stopModal];
1306             [o_hotkeys_change_win close];
1307             msg_Err( p_intf, "internal error prevented the hotkey switch" );
1308             return;
1309         }
1310
1311         b_hotkeyChanged = YES;
1312
1313         i_returnValue = [o_hotkeySettings indexOfObject: o_keyInTransition];
1314         if( i_returnValue != NSNotFound )
1315             [o_hotkeySettings replaceObjectAtIndex: i_returnValue withObject: [NSString string]];
1316         NSString *tempString;
1317         tempString = [o_keyInTransition stringByReplacingOccurrencesOfString:@"-" withString:@"+"];
1318         i_returnValue = [o_hotkeySettings indexOfObject: tempString];
1319         if( i_returnValue != NSNotFound )
1320             [o_hotkeySettings replaceObjectAtIndex: i_returnValue withObject: [NSString string]];
1321
1322         [o_hotkeySettings replaceObjectAtIndex: [o_hotkeys_listbox selectedRow] withObject: [o_keyInTransition retain]];
1323
1324         [NSApp stopModal];
1325         [o_hotkeys_change_win close];
1326
1327         [o_hotkeys_listbox reloadData];
1328     }
1329     else if( sender == o_hotkeys_clear_btn )
1330     {
1331         [o_hotkeySettings replaceObjectAtIndex: [o_hotkeys_listbox selectedRow] withObject: [NSString string]];
1332         [o_hotkeys_listbox reloadData];
1333         b_hotkeyChanged = YES;
1334     }
1335
1336     [[NSNotificationCenter defaultCenter] postNotificationName: @"VLCMediaKeySupportSettingChanged"
1337                                                         object: nil
1338                                                       userInfo: nil];
1339 }
1340
1341 - (void)showHotkeySettings
1342 {
1343     [self showSettingsForCategory: o_hotkeys_view];
1344 }
1345
1346 - (int)numberOfRowsInTableView:(NSTableView *)aTableView
1347 {
1348     return [o_hotkeySettings count];
1349 }
1350
1351 - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex
1352 {
1353     NSString * identifier = [aTableColumn identifier];
1354
1355     if( [identifier isEqualToString: @"action"] )
1356         return [o_hotkeyDescriptions objectAtIndex: rowIndex];
1357     else if( [identifier isEqualToString: @"shortcut"] )
1358         return [self OSXStringKeyToString:[o_hotkeySettings objectAtIndex: rowIndex]];
1359     else
1360     {
1361         msg_Err( p_intf, "unknown TableColumn identifier (%s)!", [identifier UTF8String] );
1362         return NULL;
1363     }
1364 }
1365
1366 - (BOOL)changeHotkeyTo: (NSString *)theKey
1367 {
1368     NSInteger i_returnValue, i_returnValue2;
1369     i_returnValue = [o_hotkeysNonUseableKeys indexOfObject: theKey];
1370
1371     if( i_returnValue != NSNotFound || [theKey isEqualToString:@""] )
1372     {
1373         [o_hotkeys_change_keys_lbl setStringValue: _NS("Invalid combination")];
1374         [o_hotkeys_change_taken_lbl setStringValue: _NS("Regrettably, these keys cannot be assigned as hotkey shortcuts.")];
1375         [o_hotkeys_change_ok_btn setEnabled: NO];
1376         return NO;
1377     }
1378     else
1379     {
1380         [o_hotkeys_change_keys_lbl setStringValue: [self OSXStringKeyToString:theKey]];
1381
1382         i_returnValue = [o_hotkeySettings indexOfObject: theKey];
1383         i_returnValue2 = [o_hotkeySettings indexOfObject: [theKey stringByReplacingOccurrencesOfString:@"-" withString:@"+"]];
1384         if( i_returnValue != NSNotFound )
1385             [o_hotkeys_change_taken_lbl setStringValue: [NSString stringWithFormat:
1386                                                          _NS("This combination is already taken by \"%@\"."),
1387                                                          [o_hotkeyDescriptions objectAtIndex: i_returnValue]]];
1388         else if( i_returnValue2 != NSNotFound )
1389             [o_hotkeys_change_taken_lbl setStringValue: [NSString stringWithFormat:
1390                                                          _NS("This combination is already taken by \"%@\"."),
1391                                                          [o_hotkeyDescriptions objectAtIndex: i_returnValue2]]];
1392         else
1393             [o_hotkeys_change_taken_lbl setStringValue: @""];
1394
1395         [o_hotkeys_change_ok_btn setEnabled: YES];
1396         [o_keyInTransition release];
1397         o_keyInTransition = theKey;
1398         [o_keyInTransition retain];
1399         return YES;
1400     }
1401 }
1402
1403 @end
1404
1405 /********************
1406  * hotkeys settings *
1407  ********************/
1408
1409 @implementation VLCHotkeyChangeWindow
1410
1411 - (BOOL)acceptsFirstResponder
1412 {
1413     return YES;
1414 }
1415
1416 - (BOOL)becomeFirstResponder
1417 {
1418     return YES;
1419 }
1420
1421 - (BOOL)resignFirstResponder
1422 {
1423     /* We need to stay the first responder or we'll miss the user's input */
1424     return NO;
1425 }
1426
1427 - (BOOL)performKeyEquivalent:(NSEvent *)o_theEvent
1428 {
1429     NSMutableString *tempString = [[[NSMutableString alloc] init] autorelease];
1430     NSString *keyString = [o_theEvent characters];
1431
1432     unichar key = [keyString characterAtIndex:0];
1433     NSUInteger i_modifiers = [o_theEvent modifierFlags];
1434
1435     /* modifiers */
1436     if( i_modifiers & NSControlKeyMask )
1437         [tempString appendString:@"Ctrl-"];
1438     if( i_modifiers & NSAlternateKeyMask  )
1439         [tempString appendString:@"Alt-"];
1440     if( i_modifiers & NSShiftKeyMask )
1441         [tempString appendString:@"Shift-"];
1442     if( i_modifiers & NSCommandKeyMask )
1443         [tempString appendString:@"Command-"];
1444
1445     /* non character keys */
1446     if( key == NSUpArrowFunctionKey )
1447         [tempString appendString:@"Up"];
1448     else if( key == NSDownArrowFunctionKey )
1449         [tempString appendString:@"Down"];
1450     else if( key == NSLeftArrowFunctionKey )
1451         [tempString appendString:@"Left"];
1452     else if( key == NSRightArrowFunctionKey )
1453         [tempString appendString:@"Right"];
1454     else if( key == NSF1FunctionKey )
1455         [tempString appendString:@"F1"];
1456     else if( key == NSF2FunctionKey )
1457         [tempString appendString:@"F2"];
1458     else if( key == NSF3FunctionKey )
1459         [tempString appendString:@"F3"];
1460     else if( key == NSF4FunctionKey )
1461         [tempString appendString:@"F4"];
1462     else if( key == NSF5FunctionKey )
1463         [tempString appendString:@"F5"];
1464     else if( key == NSF6FunctionKey )
1465         [tempString appendString:@"F6"];
1466     else if( key == NSF7FunctionKey )
1467         [tempString appendString:@"F7"];
1468     else if( key == NSF8FunctionKey )
1469         [tempString appendString:@"F8"];
1470     else if( key == NSF9FunctionKey )
1471         [tempString appendString:@"F9"];
1472     else if( key == NSF10FunctionKey )
1473         [tempString appendString:@"F10"];
1474     else if( key == NSF11FunctionKey )
1475         [tempString appendString:@"F11"];
1476     else if( key == NSF12FunctionKey )
1477         [tempString appendString:@"F12"];
1478     else if( key == NSInsertFunctionKey )
1479         [tempString appendString:@"Insert"];
1480     else if( key == NSHomeFunctionKey )
1481         [tempString appendString:@"Home"];
1482     else if( key == NSEndFunctionKey )
1483         [tempString appendString:@"End"];
1484     else if( key == NSPageUpFunctionKey )
1485         [tempString appendString:@"Pageup"];
1486     else if( key == NSPageDownFunctionKey )
1487         [tempString appendString:@"Pagedown"];
1488     else if( key == NSMenuFunctionKey )
1489         [tempString appendString:@"Menu"];
1490     else if( key == NSTabCharacter )
1491         [tempString appendString:@"Tab"];
1492     else if( key == NSCarriageReturnCharacter )
1493         [tempString appendString:@"Enter"];
1494     else if( key == NSEnterCharacter )
1495         [tempString appendString:@"Enter"];
1496     else if( key == NSDeleteCharacter )
1497         [tempString appendString:@"Delete"];
1498     else if( key == NSBackspaceCharacter )
1499         [tempString appendString:@"Backspace"];
1500     else if (![[[o_theEvent charactersIgnoringModifiers] lowercaseString] isEqualToString:@""]) //plain characters
1501         [tempString appendString:[[o_theEvent charactersIgnoringModifiers] lowercaseString]];
1502     else
1503         return NO;
1504
1505     return [[[VLCMain sharedInstance] simplePreferences] changeHotkeyTo: tempString];
1506 }
1507
1508 @end
1509
1510 @implementation VLCSimplePrefsWindow
1511
1512 - (BOOL)acceptsFirstResponder
1513 {
1514     return YES;
1515 }
1516
1517 - (void)changeFont:(id)sender
1518 {
1519     [[[VLCMain sharedInstance] simplePreferences] changeFont: sender];
1520 }
1521 @end