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