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