]> git.sesse.net Git - vlc/blob - modules/gui/macosx/simple_prefs.m
macosx: fallback on freetype if quartztext isn't present
[vlc] / modules / gui / macosx / simple_prefs.m
1 /*****************************************************************************
2 * simple_prefs.m: Simple Preferences for Mac OS X
3 *****************************************************************************
4 * Copyright (C) 2008 the VideoLAN team
5 * $Id$
6 *
7 * Authors: Felix Paul Kühne <fkuehne at videolan dot org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
23
24 #import "simple_prefs.h"
25 #import "prefs.h"
26 #import <vlc_keys.h>
27 #import <vlc_interface.h>
28 #import <vlc_dialog.h>
29 #import "misc.h"
30
31 static NSString* VLCSPrefsToolbarIdentifier = @"Our Simple Preferences Toolbar Identifier";
32 static NSString* VLCIntfSettingToolbarIdentifier = @"Intf Settings Item Identifier";
33 static NSString* VLCAudioSettingToolbarIdentifier = @"Audio Settings Item Identifier";
34 static NSString* VLCVideoSettingToolbarIdentifier = @"Video Settings Item Identifier";
35 static NSString* VLCOSDSettingToolbarIdentifier = @"Subtitles Settings Item Identifier";
36 static NSString* VLCInputSettingToolbarIdentifier = @"Input Settings Item Identifier";
37 static NSString* VLCHotkeysSettingToolbarIdentifier = @"Hotkeys Settings Item Identifier";
38
39 @implementation VLCSimplePrefs
40
41 static VLCSimplePrefs *_o_sharedInstance = nil;
42
43 + (VLCSimplePrefs *)sharedInstance
44 {
45     return _o_sharedInstance ? _o_sharedInstance : [[self alloc] init];
46 }
47
48 - (id)init
49 {
50     if (_o_sharedInstance) {
51         [self dealloc];
52     } else {
53         _o_sharedInstance = [super init];
54         p_intf = VLCIntf;
55     }
56
57     return _o_sharedInstance;
58 }
59
60 - (void)dealloc
61 {
62     [o_currentlyShownCategoryView release];
63
64     [o_hotkeySettings release];
65     [o_hotkeyDescriptions release];
66     [o_hotkeysNonUseableKeys release];
67
68     [o_keyInTransition release];
69
70     [super dealloc];
71 }
72
73
74 - (NSString *)OSXKeyToString:(int)val
75 {
76     NSMutableString *o_temp_str = [[[NSMutableString alloc] init] autorelease];
77     if( val & KEY_MODIFIER_CTRL )
78         [o_temp_str appendString: [NSString stringWithUTF8String: "\xE2\x8C\x83"]];
79     if( val & KEY_MODIFIER_ALT )
80         [o_temp_str appendString: [NSString stringWithUTF8String: "\xE2\x8C\xA5"]];
81     if( val & KEY_MODIFIER_SHIFT )
82         [o_temp_str appendString: [NSString stringWithUTF8String: "\xE2\x87\xA7"]];
83     if( val & KEY_MODIFIER_COMMAND )
84         [o_temp_str appendString: [NSString stringWithUTF8String: "\xE2\x8C\x98"]];
85
86     const char *base = KeyToString( val & ~KEY_MODIFIER );
87     if( base )
88         [o_temp_str appendString: [NSString stringWithUTF8String: base]];
89     else
90         o_temp_str = [NSMutableString stringWithString:_NS("Not Set")];
91     return o_temp_str;
92 }
93
94 - (void)awakeFromNib
95 {
96     [self initStrings];
97     
98     /* setup the toolbar */
99     NSToolbar * o_sprefs_toolbar = [[[NSToolbar alloc] initWithIdentifier: VLCSPrefsToolbarIdentifier] autorelease];
100     [o_sprefs_toolbar setAllowsUserCustomization: NO];
101     [o_sprefs_toolbar setAutosavesConfiguration: NO];
102     [o_sprefs_toolbar setDisplayMode: NSToolbarDisplayModeIconAndLabel];
103     [o_sprefs_toolbar setSizeMode: NSToolbarSizeModeRegular];
104     [o_sprefs_toolbar setDelegate: self];
105     [o_sprefs_win setToolbar: o_sprefs_toolbar];
106     
107     /* setup useful stuff */
108     o_hotkeysNonUseableKeys = [[NSArray arrayWithObjects:
109                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'c'],
110                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'x'],
111                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'v'],
112                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'a'],
113                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|','],
114                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'h'],
115                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|'h'],
116                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'o'],
117                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'o'],
118                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'d'],
119                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'n'],
120                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'s'],
121                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'z'],
122                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'l'],
123                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'r'],
124                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'0'],
125                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'1'],
126                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'2'],
127                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'3'],
128                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'m'],
129                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'w'],
130                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'w'],
131                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'c'],
132                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'p'],
133                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'i'],
134                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'e'],
135                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'e'],
136                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'b'],
137                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'m'],
138                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|KEY_MODIFIER_CTRL|'m'],
139                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|'?'],
140                                 [NSNumber numberWithInt: KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|'?'],
141                                 nil] retain];
142 }
143
144 #define CreateToolbarItem( o_name, o_desc, o_img, sel ) \
145     o_toolbarItem = create_toolbar_item(o_itemIdent, o_name, o_desc, o_img, self, @selector(sel));
146 static inline NSToolbarItem *
147 create_toolbar_item( NSString * o_itemIdent, NSString * o_name, NSString * o_desc, NSString * o_img, id target, SEL selector )
148 {
149     NSToolbarItem *o_toolbarItem = [[[NSToolbarItem alloc] initWithItemIdentifier: o_itemIdent] autorelease]; \
150
151     [o_toolbarItem setLabel: o_name];
152     [o_toolbarItem setPaletteLabel: o_desc];
153
154     [o_toolbarItem setToolTip: o_desc];
155     [o_toolbarItem setImage: [NSImage imageNamed: o_img]];
156
157     [o_toolbarItem setTarget: target];
158     [o_toolbarItem setAction: selector];
159
160     [o_toolbarItem setEnabled: YES];
161     [o_toolbarItem setAutovalidates: YES];
162
163     return o_toolbarItem;
164 }
165
166 - (NSToolbarItem *) toolbar: (NSToolbar *)o_sprefs_toolbar 
167       itemForItemIdentifier: (NSString *)o_itemIdent 
168   willBeInsertedIntoToolbar: (BOOL)b_willBeInserted
169 {
170     NSToolbarItem *o_toolbarItem = nil;
171
172     if( [o_itemIdent isEqual: VLCIntfSettingToolbarIdentifier] )
173     {
174         CreateToolbarItem( _NS("Interface"), _NS("Interface Settings"), @"spref_cone_Interface_64", showInterfaceSettings );
175     }
176     else if( [o_itemIdent isEqual: VLCAudioSettingToolbarIdentifier] )
177     {
178         CreateToolbarItem( _NS("Audio"), _NS("General Audio Settings"), @"spref_cone_Audio_64", showAudioSettings );
179     }
180     else if( [o_itemIdent isEqual: VLCVideoSettingToolbarIdentifier] )
181     {
182         CreateToolbarItem( _NS("Video"), _NS("General Video Settings"), @"spref_cone_Video_64", showVideoSettings );
183     }
184     else if( [o_itemIdent isEqual: VLCOSDSettingToolbarIdentifier] )
185     {
186         CreateToolbarItem( _NS("Subtitles & OSD"), _NS("Subtitles & On Screen Display Settings"), @"spref_cone_Subtitles_64", showOSDSettings );
187     }
188     else if( [o_itemIdent isEqual: VLCInputSettingToolbarIdentifier] )
189     {
190         CreateToolbarItem( _NS("Input & Codecs"), _NS("Input & Codec settings"), @"spref_cone_Input_64", showInputSettings );
191     }
192     else if( [o_itemIdent isEqual: VLCHotkeysSettingToolbarIdentifier] )
193     {
194         CreateToolbarItem( _NS("Hotkeys"), _NS("Hotkeys settings"), @"spref_cone_Hotkeys_64", showHotkeySettings );
195     }
196
197     return o_toolbarItem;
198 }
199
200 - (NSArray *)toolbarDefaultItemIdentifiers: (NSToolbar *)toolbar
201 {
202     return [NSArray arrayWithObjects: VLCIntfSettingToolbarIdentifier, VLCAudioSettingToolbarIdentifier, VLCVideoSettingToolbarIdentifier, 
203         VLCOSDSettingToolbarIdentifier, VLCInputSettingToolbarIdentifier, VLCHotkeysSettingToolbarIdentifier, NSToolbarFlexibleSpaceItemIdentifier, nil];
204 }
205
206 - (NSArray *)toolbarAllowedItemIdentifiers: (NSToolbar *)toolbar
207 {
208     return [NSArray arrayWithObjects: VLCIntfSettingToolbarIdentifier, VLCAudioSettingToolbarIdentifier, VLCVideoSettingToolbarIdentifier, 
209         VLCOSDSettingToolbarIdentifier, VLCInputSettingToolbarIdentifier, VLCHotkeysSettingToolbarIdentifier, NSToolbarFlexibleSpaceItemIdentifier, nil];
210 }
211
212 - (NSArray *)toolbarSelectableItemIdentifiers:(NSToolbar *)toolbar
213 {
214     return [NSArray arrayWithObjects: VLCIntfSettingToolbarIdentifier, VLCAudioSettingToolbarIdentifier, VLCVideoSettingToolbarIdentifier, 
215         VLCOSDSettingToolbarIdentifier, VLCInputSettingToolbarIdentifier, VLCHotkeysSettingToolbarIdentifier, nil];
216 }
217
218 - (void)initStrings
219 {
220     /* audio */
221     [o_audio_dolby_txt setStringValue: _NS("Force detection of Dolby Surround")];
222     [o_audio_effects_box setTitle: _NS("Effects")];
223     [o_audio_enable_ckb setTitle: _NS("Enable Audio")];
224     [o_audio_general_box setTitle: _NS("General Audio")];
225     [o_audio_headphone_ckb setTitle: _NS("Headphone surround effect")];
226     [o_audio_lang_txt setStringValue: _NS("Preferred Audio language")];
227     [o_audio_last_ckb setTitle: _NS("Enable Last.fm submissions")];
228     [o_audio_lastpwd_txt setStringValue: _NS("Password")];
229     [o_audio_lastuser_txt setStringValue: _NS("User name")];
230     [o_audio_norm_ckb setTitle: _NS("Volume normalizer")];
231     [o_audio_spdif_ckb setTitle: _NS("Use S/PDIF when available")];
232     [o_audio_visual_txt setStringValue: _NS("Visualization")];
233     [o_audio_vol_txt setStringValue: _NS("Default Volume")];
234
235     /* hotkeys */
236     [o_hotkeys_change_btn setTitle: _NS("Change")];
237     [o_hotkeys_change_win setTitle: _NS("Change Hotkey")];
238     [o_hotkeys_change_cancel_btn setTitle: _NS("Cancel")];
239     [o_hotkeys_change_ok_btn setTitle: _NS("OK")];
240     [o_hotkeys_clear_btn setTitle: _NS("Clear")];
241     [o_hotkeys_lbl setStringValue: _NS("Select an action to change the associated hotkey:")];
242     [[[o_hotkeys_listbox tableColumnWithIdentifier: @"action"] headerCell] setStringValue: _NS("Action")];
243     [[[o_hotkeys_listbox tableColumnWithIdentifier: @"shortcut"] headerCell] setStringValue: _NS("Shortcut")];
244
245     /* input */
246     [o_input_avi_txt setStringValue: _NS("Repair AVI Files")];
247     [o_input_cachelevel_txt setStringValue: _NS("Default Caching Level")];
248     [o_input_caching_box setTitle: _NS("Caching")];
249     [o_input_cachelevel_custom_txt setStringValue: _NS("Use the complete preferences to configure custom caching values for each access module.")];
250     [o_input_httpproxy_txt setStringValue: _NS("HTTP Proxy")];
251     [o_input_httpproxypwd_txt setStringValue: _NS("Password for HTTP Proxy")];
252     [o_input_mux_box setTitle: _NS("Codecs / Muxers")];
253     [o_input_net_box setTitle: _NS("Network")];
254     [o_input_postproc_txt setStringValue: _NS("Post-Processing Quality")];
255     [o_input_rtsp_ckb setTitle: _NS("Use RTP over RTSP (TCP)")];
256     [o_input_skipLoop_txt setStringValue: _NS("Skip the loop filter for H.264 decoding")];
257     [o_input_serverport_txt setStringValue: _NS("Default Server Port")];
258
259     /* interface */
260     [o_intf_art_txt setStringValue: _NS("Album art download policy")];
261     [o_intf_embedded_ckb setTitle: _NS("Add controls to the video window")];
262     [o_intf_fspanel_ckb setTitle: _NS("Show Fullscreen Controller")];
263     [o_intf_lang_txt setStringValue: _NS("Language")];
264     [o_intf_network_box setTitle: _NS("Privacy / Network Interaction")];
265     
266     /* Subtitles and OSD */
267     [o_osd_encoding_txt setStringValue: _NS("Default Encoding")];
268     [o_osd_font_box setTitle: _NS("Display Settings")];
269     [o_osd_font_btn setTitle: _NS("Choose...")];
270     [o_osd_font_color_txt setStringValue: _NS("Font Color")];
271     [o_osd_font_size_txt setStringValue: _NS("Font Size")];
272     [o_osd_font_txt setStringValue: _NS("Font")];
273     [o_osd_lang_box setTitle: _NS("Subtitle Languages")];
274     [o_osd_lang_txt setStringValue: _NS("Preferred Subtitle Language")];
275     [o_osd_osd_box setTitle: _NS("On Screen Display")];
276     [o_osd_osd_ckb setTitle: _NS("Enable OSD")];
277
278     /* video */
279     [o_video_black_ckb setTitle: _NS("Black screens in Fullscreen mode")];
280     [o_video_device_txt setStringValue: _NS("Fullscreen Video Device")];
281     [o_video_display_box setTitle: _NS("Display")];
282     [o_video_enable_ckb setTitle: _NS("Enable Video")];
283     [o_video_fullscreen_ckb setTitle: _NS("Fullscreen")];
284     [o_video_onTop_ckb setTitle: _NS("Always on top")];
285     [o_video_output_txt setStringValue: _NS("Output module")];
286     [o_video_skipFrames_ckb setTitle: _NS("Skip frames")];
287     [o_video_snap_box setTitle: _NS("Video snapshots")];
288     [o_video_snap_folder_btn setTitle: _NS("Browse...")];
289     [o_video_snap_folder_txt setStringValue: _NS("Folder")];
290     [o_video_snap_format_txt setStringValue: _NS("Format")];
291     [o_video_snap_prefix_txt setStringValue: _NS("Prefix")];
292     [o_video_snap_seqnum_ckb setTitle: _NS("Sequential numbering")];
293     
294     /* generic stuff */
295     [[o_sprefs_basicFull_matrix cellAtRow: 0 column: 0] setStringValue: _NS("Basic")];
296     [[o_sprefs_basicFull_matrix cellAtRow: 0 column: 1] setStringValue: _NS("All")];
297     [o_sprefs_cancel_btn setTitle: _NS("Cancel")];
298     [o_sprefs_reset_btn setTitle: _NS("Reset All")];
299     [o_sprefs_save_btn setTitle: _NS("Save")];
300     [o_sprefs_win setTitle: _NS("Preferences")];
301 }
302
303 - (void)setupButton: (NSPopUpButton *)object forStringList: (const char *)name
304 {
305     module_config_t *p_item;
306
307     [object removeAllItems];
308     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
309
310     /* serious problem, if no item found */
311     assert( p_item );
312
313     for( int i = 0; i < p_item->i_list; i++ )
314     {
315         NSMenuItem *mi;
316         if( p_item->ppsz_list_text != NULL )
317             mi = [[NSMenuItem alloc] initWithTitle: _NS( p_item->ppsz_list_text[i] ) action:NULL keyEquivalent: @""];
318         else if( p_item->ppsz_list[i] && strcmp(p_item->ppsz_list[i],"") == 0 )
319         {
320             [[object menu] addItem: [NSMenuItem separatorItem]];
321             continue;
322         }
323         else if( p_item->ppsz_list[i] )
324             mi = [[NSMenuItem alloc] initWithTitle: [NSString stringWithUTF8String: p_item->ppsz_list[i]] action:NULL keyEquivalent: @""];
325         else NSLog( @"item %d of pref %s failed to be created", i, name);
326         [mi setRepresentedObject:[NSString stringWithUTF8String: p_item->ppsz_list[i]]];
327         [[object menu] addItem: [mi autorelease]];
328         if( p_item->value.psz && !strcmp( p_item->value.psz, p_item->ppsz_list[i] ) )
329             [object selectItem:[object lastItem]];
330     }
331     [object setToolTip: _NS( p_item->psz_longtext )];
332 }
333
334 - (void)setupButton: (NSPopUpButton *)object forIntList: (const char *)name
335 {
336     module_config_t *p_item;
337
338     [object removeAllItems];
339     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
340
341     /* serious problem, if no item found */
342     assert( p_item );
343
344     for( int i = 0; i < p_item->i_list; i++ )
345     {
346         NSMenuItem *mi;
347         if( p_item->ppsz_list_text != NULL)
348             mi = [[NSMenuItem alloc] initWithTitle: _NS( p_item->ppsz_list_text[i] ) action:NULL keyEquivalent: @""];
349         else if( p_item->pi_list[i] )
350             mi = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"%d", p_item->pi_list[i]] action:NULL keyEquivalent: @""];
351         else NSLog( @"item %d of pref %s failed to be created", i, name);
352         [mi setRepresentedObject:[NSNumber numberWithInt: p_item->pi_list[i]]];
353         [[object menu] addItem: [mi autorelease]];
354         if( p_item->value.i == p_item->pi_list[i] )
355             [object selectItem:[object lastItem]];
356     }
357     [object setToolTip: _NS( p_item->psz_longtext )];
358 }
359
360 - (void)setupButton: (NSPopUpButton *)object forModuleList: (const char *)name
361 {
362     module_config_t *p_item;
363     module_t *p_parser, **p_list;
364     int y = 0;
365     
366     [object removeAllItems];
367     
368     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
369     p_list = module_list_get( NULL );
370     if( !p_item ||!p_list )
371     {
372         if( p_list ) module_list_free(p_list);
373         NSLog( @"serious problem, item or list not found" );
374         return;
375     }
376
377     [object addItemWithTitle: _NS("Default")];
378     for( size_t i_index = 0; p_list[i_index]; i_index++ )
379     {
380         p_parser = p_list[i_index];
381         if( module_provides( p_parser, p_item->psz_type ) )
382         {
383             [object addItemWithTitle: [NSString stringWithUTF8String: module_GetLongName( p_parser ) ?: ""]];
384             if( p_item->value.psz && !strcmp( p_item->value.psz, module_get_object( p_parser ) ) )
385                 [object selectItem: [object lastItem]];
386         }
387     }
388     module_list_free( p_list );
389     [object setToolTip: _NS(p_item->psz_longtext)];
390 }
391
392 - (void)setupField:(NSTextField *)o_object forOption:(const char *)psz_option
393 {
394     char *psz_tmp = config_GetPsz( p_intf, psz_option );
395     [o_object setStringValue: [NSString stringWithUTF8String: psz_tmp ?: ""]];
396     free( psz_tmp );
397 }
398
399 - (void)resetControls
400 {
401     module_config_t *p_item;
402     int i, y = 0;
403     char *psz_tmp;
404
405     [[o_sprefs_basicFull_matrix cellAtRow:0 column:0] setState: NSOnState];
406     [[o_sprefs_basicFull_matrix cellAtRow:0 column:1] setState: NSOffState];
407     
408     /**********************
409      * interface settings *
410      **********************/
411     [self setupButton: o_intf_lang_pop forStringList: "language"];
412     [self setupButton: o_intf_art_pop forIntList: "album-art"];
413
414     [o_intf_fspanel_ckb setState: config_GetInt( p_intf, "macosx-fspanel" )];
415     [o_intf_embedded_ckb setState: config_GetInt( p_intf, "embedded-video" )];
416
417     /******************
418      * audio settings *
419      ******************/
420     [o_audio_enable_ckb setState: config_GetInt( p_intf, "audio" )];
421     i = (config_GetInt( p_intf, "volume" ) * 0.390625);
422     [o_audio_vol_fld setIntValue: i];
423     [o_audio_vol_sld setIntValue: i];
424
425     [o_audio_spdif_ckb setState: config_GetInt( p_intf, "spdif" )];
426
427     [self setupButton: o_audio_dolby_pop forIntList: "force-dolby-surround"];
428     [self setupField: o_audio_lang_fld forOption: "audio-language"];
429
430     [o_audio_headphone_ckb setState: config_GetInt( p_intf, "headphone-dolby" )];
431     
432     psz_tmp = config_GetPsz( p_intf, "audio-filter" );
433     if( psz_tmp )
434     {
435         [o_audio_norm_ckb setState: (NSInteger)strstr( psz_tmp, "volnorm" )];
436         [o_audio_norm_fld setEnabled: [o_audio_norm_ckb state]];
437         [o_audio_norm_stepper setEnabled: [o_audio_norm_ckb state]];
438         free( psz_tmp );
439     }
440     [o_audio_norm_fld setFloatValue: config_GetFloat( p_intf, "norm-max-level" )];
441
442     [self setupButton: o_audio_visual_pop forModuleList: "audio-visual"];
443
444     /* Last.FM is optional */
445     if( module_exists( "audioscrobbler" ) )
446     {
447         [self setupField: o_audio_lastuser_fld forOption:"lastfm-username"];
448         [self setupField: o_audio_lastpwd_sfld forOption:"lastfm-password"];
449
450         if( config_ExistIntf( VLC_OBJECT( p_intf ), "audioscrobbler" ) )
451         {
452             [o_audio_last_ckb setState: NSOnState];
453             [o_audio_lastuser_fld setEnabled: YES];
454             [o_audio_lastpwd_sfld setEnabled: YES];
455         }
456         else
457         {
458             [o_audio_last_ckb setState: NSOffState];
459             [o_audio_lastuser_fld setEnabled: NO];
460             [o_audio_lastpwd_sfld setEnabled: NO];
461         }
462     }
463     else
464         [o_audio_last_ckb setEnabled: NO];
465
466     /******************
467      * video settings *
468      ******************/
469     [o_video_enable_ckb setState: config_GetInt( p_intf, "video" )];
470     [o_video_fullscreen_ckb setState: config_GetInt( p_intf, "fullscreen" )];
471     [o_video_onTop_ckb setState: config_GetInt( p_intf, "video-on-top" )];
472     [o_video_skipFrames_ckb setState: config_GetInt( p_intf, "skip-frames" )];
473     [o_video_black_ckb setState: config_GetInt( p_intf, "macosx-black" )];
474
475     [self setupButton: o_video_output_pop forModuleList: "vout"];
476
477     [o_video_device_pop removeAllItems];
478     i = 0;
479     y = [[NSScreen screens] count];
480     [o_video_device_pop addItemWithTitle: _NS("Default")];
481     [[o_video_device_pop lastItem] setTag: 0];
482     while( i < y )
483     {
484         NSRect s_rect = [[[NSScreen screens] objectAtIndex: i] frame];
485         [o_video_device_pop addItemWithTitle: 
486          [NSString stringWithFormat: @"%@ %i (%ix%i)", _NS("Screen"), i+1,
487                    (int)s_rect.size.width, (int)s_rect.size.height]];
488         [[o_video_device_pop lastItem] setTag: (int)[[[NSScreen screens] objectAtIndex: i] displayID]];
489         i++;
490     }
491     [o_video_device_pop selectItemAtIndex: 0];
492     [o_video_device_pop selectItemWithTag: config_GetInt( p_intf, "macosx-vdev" )];
493
494     [self setupField:o_video_snap_folder_fld forOption:"snapshot-path"];
495     [self setupField:o_video_snap_prefix_fld forOption:"snapshot-prefix"];
496     [o_video_snap_seqnum_ckb setState: config_GetInt( p_intf, "snapshot-sequential" )];
497     [self setupButton: o_video_snap_format_pop forStringList: "snapshot-format"];
498
499     /***************************
500      * input & codecs settings *
501      ***************************/
502     [o_input_serverport_fld setIntValue: config_GetInt( p_intf, "server-port" )];
503     [self setupField:o_input_httpproxy_fld forOption:"http-proxy"];
504     [self setupField:o_input_httpproxypwd_sfld forOption:"http-proxy-pwd"];
505     [o_input_postproc_fld setIntValue: config_GetInt( p_intf, "postproc-q" )];
506
507     [self setupButton: o_input_avi_pop forIntList: "avi-index"];
508
509     [o_input_rtsp_ckb setState: config_GetInt( p_intf, "rtsp-tcp" )];
510     [self setupButton: o_input_skipLoop_pop forIntList: "ffmpeg-skiploopfilter"];
511
512     [o_input_cachelevel_pop removeAllItems];
513     [o_input_cachelevel_pop addItemsWithTitles: 
514         [NSArray arrayWithObjects: _NS("Custom"), _NS("Lowest latency"), _NS("Low latency"), _NS("Normal"),
515             _NS("High latency"), _NS("Higher latency"), nil]];
516     [[o_input_cachelevel_pop itemAtIndex: 0] setTag: 0];
517     [[o_input_cachelevel_pop itemAtIndex: 1] setTag: 100];
518     [[o_input_cachelevel_pop itemAtIndex: 2] setTag: 200];
519     [[o_input_cachelevel_pop itemAtIndex: 3] setTag: 300];
520     [[o_input_cachelevel_pop itemAtIndex: 4] setTag: 400];
521     [[o_input_cachelevel_pop itemAtIndex: 5] setTag: 500];
522     
523 #define TestCaC( name ) \
524     b_cache_equal =  b_cache_equal && \
525         ( i_cache == config_GetInt( p_intf, name ) )
526
527 #define TestCaCi( name, int ) \
528         b_cache_equal = b_cache_equal &&  \
529         ( ( i_cache * int ) == config_GetInt( p_intf, name ) )
530
531     /* Select the accurate value of the PopupButton */
532     bool b_cache_equal = true;
533     int i_cache = config_GetInt( p_intf, "file-caching");
534     
535     TestCaC( "udp-caching" );
536     if( module_exists ("dvdread") )
537         TestCaC( "dvdread-caching" );
538     if( module_exists ("dvdnav") )
539         TestCaC( "dvdnav-caching" );
540     TestCaC( "tcp-caching" );
541     TestCaC( "fake-caching" );
542     TestCaC( "cdda-caching" );
543     TestCaC( "screen-caching" );
544     TestCaC( "vcd-caching" );
545     TestCaCi( "rtsp-caching", 4 );
546     TestCaCi( "ftp-caching", 2 );
547     TestCaCi( "http-caching", 4 );
548     if(module_exists ("access_realrtsp"))
549         TestCaCi( "realrtsp-caching", 10 );
550     TestCaCi( "mms-caching", 19 );
551     if( b_cache_equal )
552     {
553         [o_input_cachelevel_pop selectItemWithTag: i_cache];
554         [o_input_cachelevel_custom_txt setHidden: YES];
555     }
556     else
557     {
558         [o_input_cachelevel_pop selectItemWithTitle: _NS("Custom")];
559         [o_input_cachelevel_custom_txt setHidden: NO];
560     }
561
562     /*********************
563      * subtitle settings *
564      *********************/
565     [o_osd_osd_ckb setState: config_GetInt( p_intf, "osd" )];
566     
567     [self setupButton: o_osd_encoding_pop forStringList: "subsdec-encoding"];
568     [self setupField: o_osd_lang_fld forOption: "sub-language" ];
569         
570         if( module_exists( "quartztext" ) )
571         {
572                 [self setupField: o_osd_font_fld forOption: "quartztext-font"];
573                 [self setupButton: o_osd_font_color_pop forIntList: "quartztext-color"];
574                 [self setupButton: o_osd_font_size_pop forIntList: "quartztext-rel-fontsize"];
575         }
576         else 
577         {
578         /* fallback on freetype */
579                 [self setupField: o_osd_font_fld forOption: "freetype-font"];
580                 [self setupButton: o_osd_font_color_pop forIntList: "freetype-color"];
581                 [self setupButton: o_osd_font_size_pop forIntList: "freetype-rel-fontsize"];
582         }
583
584
585     /********************
586      * hotkeys settings *
587      ********************/
588     const struct hotkey *p_hotkeys = p_intf->p_libvlc->p_hotkeys;
589     [o_hotkeySettings release];
590     o_hotkeySettings = [[NSMutableArray alloc] init];
591     NSMutableArray *o_tempArray_desc = [[NSMutableArray alloc] init];
592     i = 1;
593
594     while( i < 100 )
595     {
596         p_item = config_FindConfig( VLC_OBJECT(p_intf), p_hotkeys[i].psz_action );
597         if( !p_item )
598             break;
599
600         [o_tempArray_desc addObject: _NS( p_item->psz_text )];
601         [o_hotkeySettings addObject: [NSNumber numberWithInt: p_item->value.i]];
602
603         i++;
604     }
605     [o_hotkeyDescriptions release];
606     o_hotkeyDescriptions = [[NSArray alloc] initWithArray: o_tempArray_desc copyItems: YES];
607     [o_tempArray_desc release];
608     [o_hotkeys_listbox reloadData];
609 }
610
611 - (void)showSimplePrefs
612 {
613     /* we want to show the interface settings, if no category was chosen */
614     if( [[o_sprefs_win toolbar] selectedItemIdentifier] == nil )
615     {
616         [[o_sprefs_win toolbar] setSelectedItemIdentifier: VLCIntfSettingToolbarIdentifier];
617         [self showInterfaceSettings];
618     }
619     
620     [self resetControls];
621
622     [o_sprefs_win center];
623     [o_sprefs_win makeKeyAndOrderFront: self];
624 }
625
626 - (IBAction)buttonAction:(id)sender
627 {
628     if( sender == o_sprefs_cancel_btn )
629         [o_sprefs_win orderOut: sender];
630     else if( sender == o_sprefs_save_btn )
631     {
632         [self saveChangedSettings];
633         [o_sprefs_win orderOut: sender];
634     }
635     else if( sender == o_sprefs_reset_btn )
636         NSBeginInformationalAlertSheet( _NS("Reset Preferences"), _NS("Cancel"),
637                                         _NS("Continue"), nil, o_sprefs_win, self,
638                                         @selector(sheetDidEnd: returnCode: contextInfo:), NULL, nil,
639                                         _NS("Beware this will reset the VLC media player preferences.\n"
640                                             "Are you sure you want to continue?") );
641     else if( sender == o_sprefs_basicFull_matrix )
642     {
643         [o_sprefs_win orderOut: self];
644         [[o_sprefs_basicFull_matrix cellAtRow:0 column:0] setState: NSOffState];
645         [[o_sprefs_basicFull_matrix cellAtRow:0 column:1] setState: NSOnState];
646         [[[VLCMain sharedInstance] preferences] showPrefs];
647     }
648     else
649         msg_Warn( p_intf, "unknown buttonAction sender" );
650 }
651
652 - (void)sheetDidEnd:(NSWindow *)o_sheet 
653          returnCode:(int)i_return
654         contextInfo:(void *)o_context
655 {
656     if( i_return == NSAlertAlternateReturn )
657     {
658         config_ResetAll( p_intf );
659         [self resetControls];
660         config_SaveConfigFile( p_intf, NULL );
661     }
662 }
663
664 static inline void save_int_list( intf_thread_t * p_intf, id object, const char * name )
665 {
666     NSNumber *p_valueobject;
667     module_config_t *p_item;
668     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
669     p_valueobject = (NSNumber *)[[object selectedItem] representedObject];
670     assert([p_valueobject isKindOfClass:[NSNumber class]]);
671     if( p_valueobject) config_PutInt( p_intf, name, [p_valueobject intValue] );
672 }
673
674 static inline void save_string_list( intf_thread_t * p_intf, id object, const char * name )
675 {
676     NSString *p_stringobject;
677     module_config_t *p_item;
678     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
679     p_stringobject = (NSString *)[[object selectedItem] representedObject];
680     assert([p_stringobject isKindOfClass:[NSString class]]);
681     if( p_stringobject ) 
682     {
683         config_PutPsz( p_intf, name, [p_stringobject UTF8String] );
684         [p_stringobject release];
685     }
686 }
687
688 static inline void save_module_list( intf_thread_t * p_intf, id object, const char * name )
689 {
690     module_config_t *p_item;
691     module_t *p_parser, **p_list;
692
693     p_item = config_FindConfig( VLC_OBJECT(p_intf), name );
694
695     p_list = module_list_get( NULL );
696     for( size_t i_module_index = 0; p_list[i_module_index]; i_module_index++ )
697     {
698         p_parser = p_list[i_module_index];
699
700         if( p_item->i_type == CONFIG_ITEM_MODULE && module_provides( p_parser, p_item->psz_type ) )
701         {
702             if( [[[object selectedItem] title] isEqualToString: _NS( module_GetLongName( p_parser ) )] )
703             {
704                 config_PutPsz( p_intf, name, strdup( module_get_object( p_parser )));
705                 break;
706             }
707         }
708     }
709     module_list_free( p_list );
710     if( [[[object selectedItem] title] isEqualToString: _NS( "Default" )] )
711         config_PutPsz( p_intf, name, "" );
712 }
713
714 - (void)saveChangedSettings
715 {
716     char *psz_tmp;
717     int i;
718     
719 #define SaveIntList( object, name ) save_int_list( p_intf, object, name )
720                     
721 #define SaveStringList( object, name ) save_string_list( p_intf, object, name )
722
723 #define SaveModuleList( object, name ) save_module_list( p_intf, object, name )
724
725     /**********************
726      * interface settings *
727      **********************/
728     if( b_intfSettingChanged )
729     {
730         SaveStringList( o_intf_lang_pop, "language" );
731         SaveIntList( o_intf_art_pop, "album-art" );
732
733         config_PutInt( p_intf, "macosx-fspanel", [o_intf_fspanel_ckb state] );
734         config_PutInt( p_intf, "embedded-video", [o_intf_embedded_ckb state] );
735
736         /* okay, let's save our changes to vlcrc */
737         i = config_SaveConfigFile( p_intf, "main" );
738         i = i + config_SaveConfigFile( p_intf, "macosx" );
739
740         if( i != 0 )
741         {
742             msg_Err( p_intf, "An error occurred while saving the Interface settings using SimplePrefs (%i)", i );
743             dialog_Fatal( p_intf, _("Interface Settings not saved"),
744                         _("An error occured while saving your settings via SimplePrefs (%i)."), i );
745             i = 0;
746         }
747
748         b_intfSettingChanged = NO;
749     }
750     
751     /******************
752      * audio settings *
753      ******************/
754     if( b_audioSettingChanged )
755     {
756         config_PutInt( p_intf, "audio", [o_audio_enable_ckb state] );
757         config_PutInt( p_intf, "volume", ([o_audio_vol_sld intValue] * 2.56));
758         NSLog( @"slider=%i, pref=%i", [o_audio_vol_sld intValue], config_GetInt( p_intf, "volume" ));
759         config_PutInt( p_intf, "spdif", [o_audio_spdif_ckb state] );
760
761         SaveIntList( o_audio_dolby_pop, "force-dolby-surround" );
762
763         config_PutPsz( p_intf, "audio-language", [[o_audio_lang_fld stringValue] UTF8String] );
764         config_PutInt( p_intf, "headphone-dolby", [o_audio_headphone_ckb state] );
765
766         if( [o_audio_norm_ckb state] == NSOnState )
767         {
768             psz_tmp = config_GetPsz( p_intf, "audio-filter" );
769             if(! psz_tmp)
770                 config_PutPsz( p_intf, "audio-filter", "volnorm" );
771             else if( (NSInteger)strstr( psz_tmp, "normvol" ) == NO )
772             {
773                 /* work-around a GCC 4.0.1 bug */
774                 psz_tmp = (char *)[[NSString stringWithFormat: @"%s:volnorm", psz_tmp] UTF8String];
775                 config_PutPsz( p_intf, "audio-filter", psz_tmp );
776                 free( psz_tmp );
777             }
778         }
779         else
780         {
781             psz_tmp = config_GetPsz( p_intf, "audio-filter" );
782             if( psz_tmp )
783             {
784                 char *psz_tmp2 = (char *)[[[NSString stringWithUTF8String: psz_tmp] stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@":volnorm"]] UTF8String];
785                 psz_tmp2 = (char *)[[[NSString stringWithUTF8String: psz_tmp2] stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@"volnorm:"]] UTF8String];
786                 psz_tmp2 = (char *)[[[NSString stringWithUTF8String: psz_tmp2] stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@"volnorm"]] UTF8String];
787                 config_PutPsz( p_intf, "audio-filter", psz_tmp );
788                 free( psz_tmp );
789             }
790         }
791         config_PutFloat( p_intf, "norm-max-level", [o_audio_norm_fld floatValue] );
792
793         SaveModuleList( o_audio_visual_pop, "audio-visual" );
794
795         /* Last.FM is optional */
796         if( module_exists( "audioscrobbler" ) )
797         {   
798             [o_audio_last_ckb setEnabled: YES];
799             if( [o_audio_last_ckb state] == NSOnState )
800                 config_AddIntf( p_intf, "audioscrobbler" );
801             else
802                 config_RemoveIntf( p_intf, "audioscrobbler" );
803
804             config_PutPsz( p_intf, "lastfm-username", [[o_audio_lastuser_fld stringValue] UTF8String] );
805             config_PutPsz( p_intf, "lastfm-password", [[o_audio_lastpwd_sfld stringValue] UTF8String] );
806         }
807         else
808             [o_audio_last_ckb setEnabled: NO];
809
810         /* okay, let's save our changes to vlcrc */
811         i = config_SaveConfigFile( p_intf, "main" );
812         i = i + config_SaveConfigFile( p_intf, "audioscrobbler" );
813         i = i + config_SaveConfigFile( p_intf, "volnorm" );
814
815         if( i != 0 )
816         {
817             msg_Err( p_intf, "An error occurred while saving the Audio settings using SimplePrefs (%i)", i );
818             dialog_Fatal( p_intf, _("Audio Settings not saved"),
819                         _("An error occured while saving your settings via SimplePrefs (%i)."), i );
820             
821             i = 0;
822         }
823         b_audioSettingChanged = NO;
824     }
825     
826     /******************
827      * video settings *
828      ******************/
829     if( b_videoSettingChanged )
830     {
831         config_PutInt( p_intf, "video", [o_video_enable_ckb state] );
832         config_PutInt( p_intf, "fullscreen", [o_video_fullscreen_ckb state] );
833         config_PutInt( p_intf, "video-on-top", [o_video_onTop_ckb state] );
834         config_PutInt( p_intf, "skip-frames", [o_video_skipFrames_ckb state] );
835         config_PutInt( p_intf, "macosx-black", [o_video_black_ckb state] );
836
837         SaveModuleList( o_video_output_pop, "vout" );
838         config_PutInt( p_intf, "macosx-vdev", [[o_video_device_pop selectedItem] tag] );
839
840         config_PutPsz( p_intf, "snapshot-path", [[o_video_snap_folder_fld stringValue] UTF8String] );
841         config_PutPsz( p_intf, "snapshot-prefix", [[o_video_snap_prefix_fld stringValue] UTF8String] );
842         config_PutInt( p_intf, "snapshot-sequential", [o_video_snap_seqnum_ckb state] );
843         SaveStringList( o_video_snap_format_pop, "snapshot-format" );
844
845         i = config_SaveConfigFile( p_intf, "main" );
846         i = i + config_SaveConfigFile( p_intf, "macosx" );
847
848         if( i != 0 )
849         {
850             msg_Err( p_intf, "An error occurred while saving the Video settings using SimplePrefs (%i)", i );
851             dialog_Fatal( p_intf, _("Video Settings not saved"),
852                         _("An error occured while saving your settings via SimplePrefs (%i)."), i );
853             i = 0;
854         }
855         b_videoSettingChanged = NO;
856     }
857     
858     /***************************
859      * input & codecs settings *
860      ***************************/
861     if( b_inputSettingChanged )
862     {
863         config_PutInt( p_intf, "server-port", [o_input_serverport_fld intValue] );
864         config_PutPsz( p_intf, "http-proxy", [[o_input_httpproxy_fld stringValue] UTF8String] );
865         config_PutPsz( p_intf, "http-proxy-pwd", [[o_input_httpproxypwd_sfld stringValue] UTF8String] );
866         config_PutInt( p_intf, "postproc-q", [o_input_postproc_fld intValue] );
867
868         SaveIntList( o_input_avi_pop, "avi-index" );
869
870         config_PutInt( p_intf, "rtsp-tcp", [o_input_rtsp_ckb state] );
871         SaveIntList( o_input_skipLoop_pop, "ffmpeg-skiploopfilter" );
872
873         #define CaCi( name, int ) config_PutInt( p_intf, name, int * [[o_input_cachelevel_pop selectedItem] tag] )
874         #define CaC( name ) CaCi( name, 1 )
875         msg_Dbg( p_intf, "Adjusting all cache values to: %i", (int)[[o_input_cachelevel_pop selectedItem] tag] );
876         CaC( "udp-caching" );
877         if( module_exists ( "dvdread" ) )
878         {
879             CaC( "dvdread-caching" );
880             i = i + config_SaveConfigFile( p_intf, "dvdread" );
881         }
882         if( module_exists ( "dvdnav" ) )
883         {
884             CaC( "dvdnav-caching" );
885             i = i + config_SaveConfigFile( p_intf, "dvdnav" );
886         }
887         CaC( "tcp-caching" ); CaC( "vcd-caching" );
888         CaC( "fake-caching" ); CaC( "cdda-caching" ); CaC( "file-caching" );
889         CaC( "screen-caching" );
890         CaCi( "rtsp-caching", 4 ); CaCi( "ftp-caching", 2 );
891         CaCi( "http-caching", 4 );
892         if( module_exists ( "access_realrtsp" ) )
893         {
894             CaCi( "realrtsp-caching", 10 );
895             i = i + config_SaveConfigFile( p_intf, "access_realrtsp" );
896         }
897         CaCi( "mms-caching", 19 );
898
899         i = config_SaveConfigFile( p_intf, "main" );
900         i = i + config_SaveConfigFile( p_intf, "avcodec" );
901         i = i + config_SaveConfigFile( p_intf, "postproc" );
902         i = i + config_SaveConfigFile( p_intf, "access_http" );
903         i = i + config_SaveConfigFile( p_intf, "access_file" );
904         i = i + config_SaveConfigFile( p_intf, "access_tcp" );
905         i = i + config_SaveConfigFile( p_intf, "access_fake" );
906         i = i + config_SaveConfigFile( p_intf, "cdda" );
907         i = i + config_SaveConfigFile( p_intf, "screen" );
908         i = i + config_SaveConfigFile( p_intf, "vcd" );
909         i = i + config_SaveConfigFile( p_intf, "access_ftp" );
910         i = i + config_SaveConfigFile( p_intf, "access_mms" );
911         i = i + config_SaveConfigFile( p_intf, "live555" );
912         i = i + config_SaveConfigFile( p_intf, "avi" );
913
914         if( i != 0 )
915         {
916             msg_Err( p_intf, "An error occurred while saving the Input settings using SimplePrefs (%i)", i );
917             dialog_Fatal( p_intf, _("Input Settings not saved"),
918                         _("An error occured while saving your settings via SimplePrefs (%i)."), i );
919             i = 0;
920         }
921         b_inputSettingChanged = NO;
922     }
923     
924     /**********************
925      * subtitles settings *
926      **********************/
927     if( b_osdSettingChanged )
928     {
929         config_PutInt( p_intf, "osd", [o_osd_osd_ckb state] );
930
931         if( [o_osd_encoding_pop indexOfSelectedItem] >= 0 )
932             config_PutPsz( p_intf, "subsdec-encoding", [[[o_osd_encoding_pop selectedItem] title] UTF8String] );
933
934         config_PutPsz( p_intf, "sub-language", [[o_osd_lang_fld stringValue] UTF8String] );
935         
936                 if( module_exists( "quartztext" ) )
937                 {
938                         config_PutPsz( p_intf, "quartztext-font", [[o_osd_font_fld stringValue] UTF8String] );
939                         SaveIntList( o_osd_font_color_pop, "quartztext-color" );
940                         SaveIntList( o_osd_font_size_pop, "quartztext-rel-fontsize" );
941                 }
942                 else
943                 {
944             /* fallback on freetype */
945                         config_PutPsz( p_intf, "freetype-font", [[o_osd_font_fld stringValue] UTF8String] );
946                         SaveIntList( o_osd_font_color_pop, "freetype-color" );
947                         SaveIntList( o_osd_font_size_pop, "freetype-rel-fontsize" );                
948                 }
949
950         i = config_SaveConfigFile( p_intf, NULL );
951
952         if( i != 0 )
953         {
954             msg_Err( p_intf, "An error occurred while saving the OSD/Subtitle settings using SimplePrefs (%i)", i );
955             dialog_Fatal( p_intf, _("On Screen Display/Subtitle Settings not saved"),
956                         _("An error occured while saving your settings via SimplePrefs (%i)."), i );
957             i = 0;
958         }
959         b_osdSettingChanged = NO;
960     }
961     
962     /********************
963      * hotkeys settings *
964      ********************/
965     if( b_hotkeyChanged )
966     {
967         const struct hotkey *p_hotkeys = p_intf->p_libvlc->p_hotkeys;
968         i = 1;
969         while( i < [o_hotkeySettings count] )
970         {
971             config_PutInt( p_intf, p_hotkeys[i].psz_action, [[o_hotkeySettings objectAtIndex: i-1] intValue] );
972             i++;
973         }        
974
975         i = config_SaveConfigFile( p_intf, "main" );
976
977         if( i != 0 )
978         {
979             msg_Err( p_intf, "An error occurred while saving the Hotkey settings using SimplePrefs (%i)", i );
980             dialog_Fatal( p_intf, _("Hotkeys not saved"),
981                         _("An error occured while saving your settings via SimplePrefs (%i)."), i );
982             i = 0;
983         }
984         b_hotkeyChanged = NO;
985     }
986 }
987
988 - (void)showSettingsForCategory: (id)o_new_category_view
989 {
990     NSRect o_win_rect, o_view_rect, o_old_view_rect;
991     o_win_rect = [o_sprefs_win frame];
992     o_view_rect = [o_new_category_view frame];
993     
994     if( o_currentlyShownCategoryView != nil )
995     {
996         /* restore our window's height, if we've shown another category previously */
997         o_old_view_rect = [o_currentlyShownCategoryView frame];
998         o_win_rect.size.height = o_win_rect.size.height - o_old_view_rect.size.height;
999         o_win_rect.origin.y = ( o_win_rect.origin.y + o_old_view_rect.size.height ) - o_view_rect.size.height;
1000
1001         /* remove our previous category view */
1002         [o_currentlyShownCategoryView removeFromSuperviewWithoutNeedingDisplay];
1003     }
1004     
1005     o_win_rect.size.height = o_win_rect.size.height + o_view_rect.size.height;
1006     
1007     [o_sprefs_win displayIfNeeded];
1008     [o_sprefs_win setFrame: o_win_rect display:YES animate: YES];
1009     
1010     [o_new_category_view setFrame: NSMakeRect( 0, 
1011                                                [o_sprefs_controls_box frame].size.height, 
1012                                                o_view_rect.size.width, 
1013                                                o_view_rect.size.height )];
1014     [o_new_category_view setNeedsDisplay: YES];
1015     [o_new_category_view setAutoresizesSubviews: YES];
1016     [[o_sprefs_win contentView] addSubview: o_new_category_view];
1017     
1018     /* keep our current category for further reference */
1019     [o_currentlyShownCategoryView release];
1020     o_currentlyShownCategoryView = o_new_category_view;
1021     [o_currentlyShownCategoryView retain];
1022 }
1023
1024 - (IBAction)interfaceSettingChanged:(id)sender
1025 {
1026     b_intfSettingChanged = YES;
1027 }
1028
1029 - (void)showInterfaceSettings
1030 {
1031     [self showSettingsForCategory: o_intf_view];
1032 }
1033
1034 - (IBAction)audioSettingChanged:(id)sender
1035 {
1036     if( sender == o_audio_vol_sld )
1037         [o_audio_vol_fld setIntValue: [o_audio_vol_sld intValue]];
1038
1039     if( sender == o_audio_vol_fld )
1040         [o_audio_vol_sld setIntValue: [o_audio_vol_fld intValue]];
1041
1042     if( sender == o_audio_norm_ckb )
1043     {
1044         [o_audio_norm_stepper setEnabled: [o_audio_norm_ckb state]];
1045         [o_audio_norm_fld setEnabled: [o_audio_norm_ckb state]];
1046     }    
1047     
1048     if( sender == o_audio_last_ckb )
1049     {
1050         if( [o_audio_last_ckb state] == NSOnState )
1051         {
1052             [o_audio_lastpwd_sfld setEnabled: YES];
1053             [o_audio_lastuser_fld setEnabled: YES];
1054         }
1055         else
1056         {
1057             [o_audio_lastpwd_sfld setEnabled: NO];
1058             [o_audio_lastuser_fld setEnabled: NO];
1059         }
1060     }
1061
1062     b_audioSettingChanged = YES;
1063 }
1064
1065 - (void)showAudioSettings
1066 {
1067     [self showSettingsForCategory: o_audio_view];
1068 }
1069
1070 - (IBAction)videoSettingChanged:(id)sender
1071 {
1072     if( sender == o_video_snap_folder_btn )
1073     {
1074         o_selectFolderPanel = [[NSOpenPanel alloc] init];
1075         [o_selectFolderPanel setCanChooseDirectories: YES];
1076         [o_selectFolderPanel setCanChooseFiles: NO];
1077         [o_selectFolderPanel setResolvesAliases: YES];
1078         [o_selectFolderPanel setAllowsMultipleSelection: NO];
1079         [o_selectFolderPanel setMessage: _NS("Choose the folder to save your video snapshots to.")];
1080         [o_selectFolderPanel setCanCreateDirectories: YES];
1081         [o_selectFolderPanel setPrompt: _NS("Choose")];
1082         [o_selectFolderPanel beginSheetForDirectory: nil file: nil modalForWindow: o_sprefs_win 
1083                                       modalDelegate: self 
1084                                      didEndSelector: @selector(savePanelDidEnd:returnCode:contextInfo:)
1085                                         contextInfo: o_video_snap_folder_btn];
1086     }
1087     else
1088         b_videoSettingChanged = YES;
1089 }
1090
1091 - (void)savePanelDidEnd:(NSOpenPanel * )panel returnCode: (int)returnCode contextInfo: (void *)contextInfo
1092 {
1093     if( returnCode == NSOKButton )
1094     {
1095         if( contextInfo == o_video_snap_folder_btn )
1096         {
1097             [o_video_snap_folder_fld setStringValue: [o_selectFolderPanel filename]];
1098             b_videoSettingChanged = YES;
1099         }
1100     }
1101
1102     [o_selectFolderPanel release];
1103 }
1104
1105 - (void)showVideoSettings
1106 {
1107     [self showSettingsForCategory: o_video_view];
1108 }
1109
1110 - (IBAction)osdSettingChanged:(id)sender
1111 {
1112     b_osdSettingChanged = YES;
1113 }
1114
1115 - (void)showOSDSettings
1116 {
1117     [self showSettingsForCategory: o_osd_view];
1118 }
1119
1120 - (IBAction)showFontPicker:(id)sender
1121 {
1122         if( module_exists( "quartztext" ) )
1123         {
1124                 char * font = config_GetPsz( p_intf, "quartztext-font" );
1125                 NSString * fontFamilyName = font ? [NSString stringWithUTF8String: font] : nil;
1126                 free(font);
1127                 if( fontFamilyName )
1128                 {
1129                         NSFontDescriptor * fd = [NSFontDescriptor fontDescriptorWithFontAttributes:nil];
1130                         NSFont * font = [NSFont fontWithDescriptor:[fd fontDescriptorWithFamily:fontFamilyName] textTransform:nil];
1131                         [[NSFontManager sharedFontManager] setSelectedFont:font isMultiple:NO];
1132                 }
1133                 [[NSFontManager sharedFontManager] setTarget: self];
1134                 [[NSFontPanel sharedFontPanel] orderFront:self];
1135         }
1136         else 
1137         {
1138                 [sender setEnabled: NO];
1139         }
1140 }
1141
1142 - (void)changeFont:(id)sender
1143 {
1144     NSFont * font = [sender convertFont:[[NSFontManager sharedFontManager] selectedFont]];
1145     [o_osd_font_fld setStringValue:[font familyName]];
1146     [self osdSettingChanged:self];
1147 }
1148
1149 - (IBAction)inputSettingChanged:(id)sender
1150 {
1151     if( sender == o_input_cachelevel_pop )
1152     {
1153         if( [[[o_input_cachelevel_pop selectedItem] title] isEqualToString: _NS("Custom")] )
1154             [o_input_cachelevel_custom_txt setHidden: NO];
1155         else
1156             [o_input_cachelevel_custom_txt setHidden: YES];
1157     }
1158
1159     b_inputSettingChanged = YES;
1160 }
1161
1162 - (void)showInputSettings
1163 {
1164     [self showSettingsForCategory: o_input_view];
1165 }
1166
1167 - (IBAction)hotkeySettingChanged:(id)sender
1168 {
1169     if( sender == o_hotkeys_change_btn || sender == o_hotkeys_listbox )
1170     {
1171         [o_hotkeys_change_lbl setStringValue: [NSString stringWithFormat: _NS("Press new keys for\n\"%@\""), 
1172                                                [o_hotkeyDescriptions objectAtIndex: [o_hotkeys_listbox selectedRow]]]];
1173         [o_hotkeys_change_keys_lbl setStringValue: [self OSXKeyToString:[[o_hotkeySettings objectAtIndex: [o_hotkeys_listbox selectedRow]] intValue]]];
1174         [o_hotkeys_change_taken_lbl setStringValue: @""];
1175         [o_hotkeys_change_win setInitialFirstResponder: [o_hotkeys_change_win contentView]];
1176         [o_hotkeys_change_win makeFirstResponder: [o_hotkeys_change_win contentView]];
1177         [NSApp runModalForWindow: o_hotkeys_change_win];
1178     }
1179     else if( sender == o_hotkeys_change_cancel_btn )
1180     {
1181         [NSApp stopModal];
1182         [o_hotkeys_change_win close];
1183     }
1184     else if( sender == o_hotkeys_change_ok_btn )
1185     {
1186         NSInteger i_returnValue;
1187         if(! o_keyInTransition )
1188         {
1189             [NSApp stopModal];
1190             [o_hotkeys_change_win close];
1191             msg_Err( p_intf, "internal error prevented the hotkey switch" );
1192             return;
1193         }
1194
1195         b_hotkeyChanged = YES;
1196
1197         i_returnValue = [o_hotkeySettings indexOfObject: o_keyInTransition];
1198         if( i_returnValue != NSNotFound )
1199             [o_hotkeySettings replaceObjectAtIndex: i_returnValue withObject: [[NSNumber numberWithInt: 0] retain]];
1200
1201         [o_hotkeySettings replaceObjectAtIndex: [o_hotkeys_listbox selectedRow] withObject: [o_keyInTransition retain]];
1202
1203         [NSApp stopModal];
1204         [o_hotkeys_change_win close];
1205
1206         [o_hotkeys_listbox reloadData];
1207     }
1208     else if( sender == o_hotkeys_clear_btn )
1209     {
1210         [o_hotkeySettings replaceObjectAtIndex: [o_hotkeys_listbox selectedRow] withObject: [NSNumber numberWithInt: 0]];
1211         [o_hotkeys_listbox reloadData];
1212         b_hotkeyChanged = YES;
1213     }
1214 }
1215
1216 - (void)showHotkeySettings
1217 {
1218     [self showSettingsForCategory: o_hotkeys_view];
1219 }
1220
1221 - (int)numberOfRowsInTableView:(NSTableView *)aTableView
1222 {
1223     return [o_hotkeySettings count];
1224 }
1225
1226 - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex
1227 {
1228     if( [[aTableColumn identifier] isEqualToString: @"action"] )
1229         return [o_hotkeyDescriptions objectAtIndex: rowIndex];
1230     else if( [[aTableColumn identifier] isEqualToString: @"shortcut"] )
1231         return [self OSXKeyToString: [[o_hotkeySettings objectAtIndex: rowIndex] intValue]];
1232     else
1233     {
1234         msg_Err( p_intf, "unknown TableColumn identifier (%s)!", [[aTableColumn identifier] UTF8String] );
1235         return NULL;
1236     }
1237 }
1238
1239 - (BOOL)changeHotkeyTo: (int)i_theNewKey
1240 {
1241     NSInteger i_returnValue;
1242     i_returnValue = [o_hotkeysNonUseableKeys indexOfObject: [NSNumber numberWithInt: i_theNewKey]];
1243     if( i_returnValue != NSNotFound || i_theNewKey == 0 )
1244     {
1245         [o_hotkeys_change_keys_lbl setStringValue: _NS("Invalid combination")];
1246         [o_hotkeys_change_taken_lbl setStringValue: _NS("Regrettably, these keys cannot be assigned as hotkey shortcuts.")];
1247         [o_hotkeys_change_ok_btn setEnabled: NO];
1248         return NO;
1249     }
1250     else
1251     {
1252         NSString *o_temp;
1253         if( o_keyInTransition )
1254             [o_keyInTransition release];
1255         o_keyInTransition = [[NSNumber numberWithInt: i_theNewKey] retain];
1256
1257         o_temp = [self OSXKeyToString: i_theNewKey];
1258
1259         [o_hotkeys_change_keys_lbl setStringValue: o_temp];
1260
1261         i_returnValue = [o_hotkeySettings indexOfObject: o_keyInTransition];
1262         if( i_returnValue != NSNotFound )
1263             [o_hotkeys_change_taken_lbl setStringValue: [NSString stringWithFormat:
1264                                                          _NS("This combination is already taken by \"%@\"."),
1265                                                          [o_hotkeyDescriptions objectAtIndex: i_returnValue]]];
1266         else
1267             [o_hotkeys_change_taken_lbl setStringValue: @""];
1268
1269         [o_hotkeys_change_ok_btn setEnabled: YES];
1270         return YES;
1271     }
1272 }
1273     
1274 @end
1275
1276 /********************
1277  * hotkeys settings *
1278  ********************/
1279
1280 @implementation VLCHotkeyChangeWindow
1281
1282 - (BOOL)acceptsFirstResponder
1283 {
1284     return YES;
1285 }
1286
1287 - (BOOL)becomeFirstResponder
1288 {
1289     return YES;
1290 }
1291
1292 - (BOOL)resignFirstResponder
1293 {
1294     /* We need to stay the first responder or we'll miss the user's input */
1295     return NO;
1296 }
1297
1298 - (BOOL)performKeyEquivalent:(NSEvent *)o_theEvent
1299 {
1300     unichar key;
1301     int i_key = 0;
1302
1303     if( [o_theEvent modifierFlags] & NSControlKeyMask )
1304         i_key |= KEY_MODIFIER_CTRL;
1305
1306     if( [o_theEvent modifierFlags] & NSAlternateKeyMask  )
1307         i_key |= KEY_MODIFIER_ALT;
1308
1309     if( [o_theEvent modifierFlags] & NSShiftKeyMask )
1310         i_key |= KEY_MODIFIER_SHIFT;
1311
1312     if( [o_theEvent modifierFlags] & NSCommandKeyMask )
1313         i_key |= KEY_MODIFIER_COMMAND;
1314
1315     key = [[[o_theEvent charactersIgnoringModifiers] lowercaseString] characterAtIndex: 0];
1316     if( key )
1317     {
1318         i_key |= CocoaKeyToVLC( key );
1319         return [[[VLCMain sharedInstance] simplePreferences] changeHotkeyTo: i_key];
1320     }
1321     return FALSE;
1322 }
1323
1324 @end
1325
1326 @implementation VLCSimplePrefsWindow
1327
1328 - (BOOL)acceptsFirstResponder
1329 {
1330     return YES;
1331 }
1332
1333 - (void)changeFont:(id)sender
1334 {
1335     [[[VLCMain sharedInstance] simplePreferences] changeFont: sender];
1336 }
1337 @end