]> git.sesse.net Git - vlc/blob - modules/gui/macosx/prefs.m
* If the "show advanced" option has been changed and you press the Apply
[vlc] / modules / gui / macosx / prefs.m
1 /*****************************************************************************
2  * prefs.m: MacOS X plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: prefs.m,v 1.15 2003/02/21 02:45:21 hartman Exp $
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <sys/param.h>                                    /* for MAXPATHLEN */
29 #include <string.h>
30
31 #include "intf.h"
32 #include "prefs.h"
33
34 /*****************************************************************************
35  * VLCPrefs implementation
36  *****************************************************************************/
37 @implementation VLCPrefs
38
39 - (id)init
40 {
41     self = [super init];
42
43     if( self != nil )
44     {
45         p_intf = [NSApp getIntf];
46
47         o_pref_panels = [[NSMutableDictionary alloc] init];
48         o_toolbars = [[NSMutableDictionary alloc] init];
49         o_scroll_views = [[NSMutableDictionary alloc] init];
50         o_panel_views = [[NSMutableDictionary alloc] init];
51         o_save_prefs = [[NSMutableDictionary alloc] init];
52     }
53
54     return( self );
55 }
56
57 - (void)dealloc
58 {
59     id v1, v2;
60     NSEnumerator *o_e1;
61     NSEnumerator *o_e2;
62
63 #define DIC_REL1(o_dic) \
64     { \
65     o_e1 = [o_dic objectEnumerator]; \
66     while( (v1 = [o_e1 nextObject]) ) \
67     { \
68         [v1 release]; \
69     } \
70     [o_dic removeAllObjects]; \
71     [o_dic release]; \
72     }
73
74 #define DIC_REL2(o_dic) \
75     { \
76         o_e2 = [o_dic objectEnumerator]; \
77         while( (v2 = [o_e2 nextObject]) ) \
78         { \
79             DIC_REL1(v2); \
80         } \
81         [o_dic removeAllObjects]; \
82     }
83
84     DIC_REL1(o_pref_panels);
85     DIC_REL2(o_toolbars);
86     DIC_REL1(o_scroll_views);
87     DIC_REL2(o_panel_views);
88     DIC_REL1(o_save_prefs);
89
90 #undef DIC_REL1
91 #undef DIC_REL2
92
93     [super dealloc];
94 }
95
96 - (BOOL)hasPrefs:(NSString *)o_module_name
97 {
98     module_t *p_parser;
99     vlc_list_t *p_list;
100     char *psz_module_name;
101     int i_index;
102
103     psz_module_name = (char *)[o_module_name lossyCString];
104
105     /* look for module */
106     p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
107
108     for( i_index = 0; i_index < p_list->i_count; i_index++ )
109     {
110         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
111
112         if( !strcmp( p_parser->psz_object_name, psz_module_name ) )
113         {
114             BOOL b_has_prefs = p_parser->i_config_items != 0;
115             vlc_list_release( p_list );
116             return( b_has_prefs );
117         }
118     }
119
120     vlc_list_release( p_list );
121
122     return( NO );
123 }
124
125 - (void)createPrefPanel:(NSString *)o_module_name
126 {
127     int i_pos;
128     int i_module_tag;
129
130     module_t *p_parser = NULL;
131     vlc_list_t *p_list;
132     module_config_t *p_item;
133     char *psz_module_name;
134     int i_index;
135
136     NSPanel *o_panel;                   /* panel                        */
137     NSRect s_panel_rc;                  /* panel rect                   */
138     NSView *o_panel_view;               /* panel view                   */
139     NSToolbar *o_toolbar;               /* panel toolbar                */
140     NSMutableDictionary *o_tb_items;    /* panel toolbar items          */
141     NSScrollView *o_scroll_view;        /* panel scroll view            */
142     NSRect s_scroll_rc;                 /* panel scroll view rect       */
143     NSMutableDictionary *o_views;       /* panel scroll view docviews   */
144
145     NSRect s_rc;                        /* rect                         */
146     NSView *o_view;                     /* view                         */
147     NSRect s_vrc;                       /* view rect                    */
148     NSButton *o_button;                 /* button                       */
149     NSRect s_brc;                       /* button rect                  */
150     VLCTextField *o_text_field;         /* input field / label          */
151
152     o_panel = [o_pref_panels objectForKey: o_module_name];
153     if( o_panel != nil )
154     {
155         [o_panel center];
156         [o_panel makeKeyAndOrderFront: nil];
157         return;
158     }
159
160     psz_module_name = (char *)[o_module_name lossyCString];
161
162     /* Look for the selected module */
163     p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
164
165     for( i_index = 0; i_index < p_list->i_count; i_index++ )
166     {
167         p_parser = (module_t *)p_list->p_values[i_index].p_object ;
168
169         if( psz_module_name
170             && !strcmp( psz_module_name, p_parser->psz_object_name ) )
171         {
172             break;
173         }
174     }
175
176     if( !p_parser || i_index == p_list->i_count )
177     {
178         vlc_list_release( p_list );
179         return;
180     }
181
182     /* We found it, now we can start building its configuration interface */
183
184     s_panel_rc = NSMakeRect( 0, 0, 450, 450 );
185     o_panel = [[NSPanel alloc] initWithContentRect: s_panel_rc
186                                styleMask: NSTitledWindowMask
187                                backing: NSBackingStoreBuffered
188                                defer: YES];
189     o_toolbar = [[NSToolbar alloc] initWithIdentifier: o_module_name];
190     [o_panel setTitle: [NSString stringWithFormat: @"%@ (%@)",
191                                  _NS("Preferences"), o_module_name]];
192     o_panel_view = [o_panel contentView];
193
194     s_scroll_rc = s_panel_rc;
195     s_scroll_rc.size.height -= 55; s_scroll_rc.origin.y += 55;
196     o_scroll_view = [[NSScrollView alloc] initWithFrame: s_scroll_rc];
197     [o_scroll_views setObject: o_scroll_view forKey: o_module_name];
198     [o_scroll_view setBorderType: NSGrooveBorder];
199     [o_scroll_view setHasVerticalScroller: YES];
200     [o_scroll_view setDrawsBackground: NO];
201     [o_scroll_view setRulersVisible: YES];
202     [o_panel_view addSubview: o_scroll_view];
203
204     o_tb_items = [[NSMutableDictionary alloc] init];
205     o_views = [[NSMutableDictionary alloc] init];
206
207     [o_save_prefs setObject: [[NSMutableArray alloc] init]
208                   forKey: o_module_name];
209
210     /* Enumerate config options and add corresponding config boxes */
211     p_item = p_parser->p_config;
212
213     i_pos = 0;
214     o_view = nil;
215     i_module_tag = 3;
216
217 #define X_ORIGIN 20
218 #define Y_ORIGIN (X_ORIGIN - 10)
219
220 #define CHECK_VIEW_HEIGHT \
221     { \
222         float f_new_pos = s_rc.origin.y + s_rc.size.height + X_ORIGIN; \
223         if( f_new_pos > s_vrc.size.height ) \
224         { \
225             s_vrc.size.height = f_new_pos; \
226             [o_view setFrame: s_vrc]; \
227         } \
228     }
229
230 #define CONTROL_LABEL( label ) \
231     { \
232         s_rc.origin.x += s_rc.size.width + 10; \
233         s_rc.size.width = s_vrc.size.width - s_rc.origin.x - X_ORIGIN - 20; \
234         o_text_field = [[NSTextField alloc] initWithFrame: s_rc]; \
235         [o_text_field setDrawsBackground: NO]; \
236         [o_text_field setBordered: NO]; \
237         [o_text_field setEditable: NO]; \
238         [o_text_field setSelectable: NO]; \
239         [o_text_field setStringValue: \
240             [NSApp localizedString: label]]; \
241         [o_text_field sizeToFit]; \
242         [o_view addSubview: [o_text_field autorelease]]; \
243     }
244
245 #define INPUT_FIELD( ctype, cname, label, w, msg, param, tip ) \
246     { \
247         char * psz_duptip = NULL; \
248         if ( p_item->psz_longtext != NULL && [NSApp getEncoding] == NSISOLatin1StringEncoding ) \
249             psz_duptip = strdup(p_item->psz_longtext); \
250         s_rc.size.height = 25; \
251         s_rc.size.width = w; \
252         s_rc.origin.y += 10; \
253         CHECK_VIEW_HEIGHT; \
254         o_text_field = [[VLCTextField alloc] initWithFrame: s_rc]; \
255         [o_text_field setAlignment: NSRightTextAlignment]; \
256         CONTROL_CONFIG( o_text_field, o_module_name, ctype, cname ); \
257         [o_text_field msg: param]; \
258         if ( psz_duptip != NULL ) \
259         { \
260             [o_text_field setToolTip: [NSApp localizedString: \
261                                        vlc_wraptext(psz_duptip, PREFS_WRAP)]]; \
262             free(psz_duptip);\
263         } \
264         [o_view addSubview: [o_text_field autorelease]]; \
265         [[NSNotificationCenter defaultCenter] addObserver: self \
266             selector: @selector(configChanged:) \
267             name: NSControlTextDidChangeNotification \
268             object: o_text_field]; \
269         CONTROL_LABEL( label ); \
270         s_rc.origin.y += s_rc.size.height; \
271         s_rc.origin.x = X_ORIGIN; \
272     }
273
274 #define INPUT_FIELD_INTEGER( name, label, w, param, tip ) \
275     INPUT_FIELD( CONFIG_ITEM_INTEGER, name, label, w, setIntValue, param, tip )
276 #define INPUT_FIELD_FLOAT( name, label, w, param, tip ) \
277     INPUT_FIELD( CONFIG_ITEM_FLOAT, name, label, w, setFloatValue, param, tip )
278 #define INPUT_FIELD_STRING( name, label, w, param, tip ) \
279     INPUT_FIELD( CONFIG_ITEM_STRING, name, label, w, setStringValue, param, tip )
280
281     if( p_item ) do
282     {
283         if( p_item->b_advanced && !config_GetInt( p_intf, "advanced" ))
284         {
285             continue;
286         }
287         switch( p_item->i_type )
288         {
289
290         case CONFIG_HINT_CATEGORY:
291         {
292             NSString *o_key;
293             NSString *o_label;
294             NSToolbarItem *o_tbi;
295
296             o_label = [NSApp localizedString: p_item->psz_text];
297             o_tbi = [[NSToolbarItem alloc] initWithItemIdentifier: o_label];
298             [o_tbi setImage: [NSImage imageNamed: @"NSApplicationIcon"]];
299             [o_tbi setLabel: o_label];
300             [o_tbi setTarget: self];
301             [o_tbi setAction: @selector(selectPrefView:)];
302
303             o_key = [NSString stringWithFormat: @"%02d %@",
304                                                 i_pos, o_label];
305             [o_tb_items setObject: o_tbi forKey: o_key];
306
307             s_vrc = s_scroll_rc; s_vrc.size.height -= 4;
308             o_view = [[VLCFlippedView alloc] initWithFrame: s_vrc];
309             [o_views setObject: o_view forKey: o_label];
310
311             s_rc.origin.x = X_ORIGIN;
312             s_rc.origin.y = Y_ORIGIN;
313
314             i_module_tag = 3;
315
316             if( i_pos == 0 )
317             {
318                 [o_scroll_view setDocumentView: o_view];
319             }
320
321             i_pos++;
322         }
323         break;
324
325         case CONFIG_ITEM_MODULE:
326         {
327             NSBox *o_box;
328             NSRect s_crc;
329             NSView *o_cview;
330             NSPopUpButton *o_modules;
331             NSButton *o_btn_select;
332             NSButton *o_btn_configure;
333             char * psz_duptip = NULL;
334             if ( p_item->psz_longtext != NULL && [NSApp getEncoding] == NSISOLatin1StringEncoding )
335                 psz_duptip = strdup(p_item->psz_longtext);
336
337 #define MODULE_BUTTON( button, title, sel ) \
338     { \
339         s_brc.size.height = 32; \
340         s_brc.origin.x += s_brc.size.width + 10; \
341         s_brc.size.width = s_crc.size.width - s_brc.origin.x - 10; \
342         button = [[NSButton alloc] initWithFrame: s_brc]; \
343         [button setButtonType: NSMomentaryPushInButton]; \
344         [button setBezelStyle: NSRoundedBezelStyle]; \
345         [button setTitle: title]; \
346         [button setTag: i_module_tag++]; \
347         [button setTarget: self]; \
348         [button setAction: @selector(sel)]; \
349         [o_cview addSubview: [button autorelease]]; \
350     }
351
352             s_rc.size.height = 107;
353             s_rc.size.width = s_vrc.size.width - X_ORIGIN * 2 - 20;
354             s_rc.origin.y += i_module_tag == 3 ? Y_ORIGIN : 20;
355
356             CHECK_VIEW_HEIGHT;
357
358             o_box = [[NSBox alloc] initWithFrame: s_rc];
359             [o_box setTitle: [NSApp localizedString: p_item->psz_text]];
360             [o_view addSubview: [o_box autorelease]];
361             s_rc.origin.y += s_rc.size.height + 10;
362             o_cview = [[VLCFlippedView alloc] initWithFrame: s_rc];
363             [o_box setContentView: [o_cview autorelease]];
364             s_crc = [o_cview bounds];
365
366             s_brc = NSMakeRect( 5, 10, 200, 30 );
367             o_modules = [[NSPopUpButton alloc] initWithFrame: s_brc];
368             [o_modules setTag: i_module_tag++];
369             [o_modules setTarget: self];
370             [o_modules setAction: @selector(moduleSelected:)];
371             if ( psz_duptip != NULL )
372             {
373                 [o_modules setToolTip: [NSApp localizedString:
374                                         vlc_wraptext(psz_duptip, PREFS_WRAP)]];
375                 free( psz_duptip );
376             }
377             [o_cview addSubview: [o_modules autorelease]];
378
379             MODULE_BUTTON( o_btn_configure, _NS("Configure"),
380                            configureModule: );
381
382             s_brc = NSMakeRect( 8, s_brc.origin.y + s_brc.size.height + 10,
383                                 194, 25 );
384             o_text_field = [[VLCTextField alloc] initWithFrame: s_brc];
385             [o_text_field setTag: i_module_tag++];
386             [o_text_field setAlignment: NSLeftTextAlignment];
387             CONTROL_CONFIG( o_text_field, o_module_name,
388                             CONFIG_ITEM_MODULE, p_item->psz_name );
389             [[NSNotificationCenter defaultCenter] addObserver: self
390                 selector: @selector(configChanged:)
391                 name: NSControlTextDidChangeNotification
392                 object: o_text_field];
393             [o_cview addSubview: [o_text_field autorelease]];
394
395             s_brc.origin.x += 3;
396             MODULE_BUTTON( o_btn_select, _NS("Select"),
397                            selectModule: );
398
399             [o_modules addItemWithTitle: _NS("None")];
400
401             /* build a list of available modules */
402             {
403                 for( i_index = 0; i_index < p_list->i_count; i_index++ )
404                 {
405                     p_parser = (module_t *)p_list->p_values[i_index].p_object ;
406
407                     if( !strcmp( p_parser->psz_capability,
408                                  p_item->psz_type ) )
409                     {
410                         NSString *o_object_name = [NSString
411                             stringWithCString: p_parser->psz_object_name];
412                         [o_modules addItemWithTitle: o_object_name];
413                     }
414                 }
415             }
416
417             if( p_item->psz_value != NULL )
418             {
419                 NSString *o_value =
420                     [NSString stringWithCString: p_item->psz_value];
421
422                 [o_text_field setStringValue: o_value];
423                 [o_modules selectItemWithTitle: o_value];
424                 [o_btn_configure setEnabled: [self hasPrefs: o_value]];
425             }
426             else
427             {
428                 [o_modules selectItemWithTitle: _NS("None")];
429                 [o_btn_configure setEnabled: NO];
430             }
431
432 #undef MODULE_BUTTON
433         }
434         break;
435
436         case CONFIG_ITEM_STRING:
437         case CONFIG_ITEM_FILE:
438         {
439
440             if( !p_item->ppsz_list )
441             {
442                 char *psz_value = p_item->psz_value ?
443                                   p_item->psz_value : "";
444
445                 INPUT_FIELD_STRING( p_item->psz_name, p_item->psz_text, 150,
446                                     [NSString stringWithCString: psz_value],
447                                     p_item->psz_longtext );
448             }
449             else
450             {
451                 int i;
452                 VLCComboBox *o_combo_box;
453                 char * psz_duptip = NULL;
454                 if ( p_item->psz_longtext != NULL && [NSApp getEncoding] == NSISOLatin1StringEncoding )
455                     psz_duptip = strdup(p_item->psz_longtext);
456
457                 s_rc.size.height = 27;
458                 s_rc.size.width = 150;
459                 s_rc.origin.y += 10;
460
461                 CHECK_VIEW_HEIGHT;
462
463                 o_combo_box = [[VLCComboBox alloc] initWithFrame: s_rc];
464                 CONTROL_CONFIG( o_combo_box, o_module_name,
465                                 CONFIG_ITEM_STRING, p_item->psz_name );
466                 if ( psz_duptip != NULL )
467                 {
468                     [o_combo_box setToolTip: [NSApp localizedString:
469                                         vlc_wraptext(psz_duptip, PREFS_WRAP)]];
470                     free( psz_duptip );
471                 }
472                 [o_view addSubview: [o_combo_box autorelease]];
473                 [[NSNotificationCenter defaultCenter] addObserver: self
474                     selector: @selector(configChanged:)
475                     name: NSControlTextDidChangeNotification
476                     object: o_combo_box];
477                 [[NSNotificationCenter defaultCenter] addObserver: self
478                     selector: @selector(configChanged:)
479                     name: NSComboBoxSelectionDidChangeNotification
480                     object: o_combo_box];
481
482                 for( i=0; p_item->ppsz_list[i]; i++ )
483                 {
484                     [o_combo_box addItemWithObjectValue:
485                         [NSString stringWithCString: p_item->ppsz_list[i]]];
486                 }
487
488                 CONTROL_LABEL( p_item->psz_text );
489
490                 s_rc.origin.y += s_rc.size.height;
491                 s_rc.origin.x = X_ORIGIN;
492             }
493
494         }
495         break;
496
497         case CONFIG_ITEM_INTEGER:
498         {
499             INPUT_FIELD_INTEGER( p_item->psz_name, p_item->psz_text, 70,
500                                  p_item->i_value, p_item->psz_longtext );
501         }
502         break;
503
504         case CONFIG_ITEM_FLOAT:
505         {
506             INPUT_FIELD_FLOAT( p_item->psz_name, p_item->psz_text, 70,
507                                p_item->f_value, p_item->psz_longtext );
508         }
509         break;
510
511         case CONFIG_ITEM_BOOL:
512         {
513             VLCButton *o_btn_bool;
514             char * psz_duptip = NULL;
515             if ( p_item->psz_longtext != NULL && [NSApp getEncoding] == NSISOLatin1StringEncoding )
516                 psz_duptip = strdup(p_item->psz_longtext);
517
518             s_rc.size.height = 27;
519             s_rc.size.width = s_vrc.size.width - X_ORIGIN * 2 - 20;
520             s_rc.origin.y += 10;
521
522             CHECK_VIEW_HEIGHT;
523
524             o_btn_bool = [[VLCButton alloc] initWithFrame: s_rc];
525             [o_btn_bool setButtonType: NSSwitchButton];
526             [o_btn_bool setIntValue: p_item->i_value];
527             [o_btn_bool setTitle:
528                 [NSApp localizedString: p_item->psz_text]];
529             if ( psz_duptip != NULL )
530             {
531                 [o_btn_bool setToolTip: [NSApp localizedString:
532                                         vlc_wraptext(psz_duptip, PREFS_WRAP)]];
533                 free( psz_duptip );
534             }
535             [o_btn_bool setTarget: self];
536             [o_btn_bool setAction: @selector(configChanged:)];
537             CONTROL_CONFIG( o_btn_bool, o_module_name,
538                             CONFIG_ITEM_BOOL, p_item->psz_name );
539             [o_view addSubview: [o_btn_bool autorelease]];
540
541             s_rc.origin.y += s_rc.size.height;
542         }
543         break;
544
545         }
546
547 #undef INPUT_FIELD_INTEGER
548 #undef INPUT_FIELD_FLOAT
549 #undef INPUT_FIELD_STRING
550 #undef INPUT_FIELD
551 #undef CHECK_VIEW_HEIGHT
552 #undef CONTROL_LABEL
553 #undef Y_ORIGIN
554 #undef X_ORIGIN
555     }
556     while( p_item->i_type != CONFIG_HINT_END && p_item++ );
557
558     vlc_list_release( p_list );
559
560     [o_toolbars setObject: o_tb_items forKey: o_module_name];
561     [o_toolbar setDelegate: self];
562     [o_panel setToolbar: [o_toolbar autorelease]];
563
564 #define DEF_PANEL_BUTTON( tag, title, sel ) \
565     { \
566         o_button = [[NSButton alloc] initWithFrame: s_rc]; \
567         [o_button setButtonType: NSMomentaryPushInButton]; \
568         [o_button setBezelStyle: NSRoundedBezelStyle]; \
569         [o_button setAction: @selector(sel)]; \
570         [o_button setTarget: self]; \
571         [o_button setTitle: title]; \
572         [o_button setTag: tag]; \
573         [o_panel_view addSubview: [o_button autorelease]]; \
574     }
575
576     s_rc.origin.y = s_panel_rc.origin.y + 14;
577     s_rc.size.height = 25; s_rc.size.width = 105;
578     s_rc.origin.x = s_panel_rc.size.width - s_rc.size.width - 14;
579     DEF_PANEL_BUTTON( 0, _NS("OK"), clickedApplyCancelOK: );
580     [o_panel setDefaultButtonCell: [o_button cell]];
581
582     s_rc.origin.x -= s_rc.size.width;
583     DEF_PANEL_BUTTON( 1, _NS("Cancel"), clickedApplyCancelOK: );
584     [o_button setKeyEquivalent: @"\E"];
585
586     s_rc.origin.x -= s_rc.size.width;
587     DEF_PANEL_BUTTON( 2, _NS("Apply"), clickedApplyCancelOK: );
588     [o_button setEnabled: NO];
589
590 #undef DEF_PANEL_BUTTON
591
592     [o_pref_panels setObject: o_panel forKey: o_module_name];
593     [o_panel_views setObject: o_views forKey: o_module_name];
594
595     [o_panel center];
596     [o_panel makeKeyAndOrderFront: nil];
597 }
598
599 - (void)destroyPrefPanel:(id)o_unknown
600 {
601     id v1;
602     NSPanel *o_panel;
603     NSEnumerator *o_e1;
604     NSMutableArray *o_prefs;
605     NSMutableDictionary *o_dic;
606     NSScrollView *o_scroll_view;
607     NSString *o_module_name;
608
609     o_module_name = (NSString *)([o_unknown isKindOfClass: [NSTimer class]] ?
610                                  [o_unknown userInfo] : o_unknown);
611
612 #define DIC_REL(dic) \
613     { \
614     o_dic = [dic objectForKey: o_module_name]; \
615     [dic removeObjectForKey: o_module_name]; \
616     o_e1 = [o_dic objectEnumerator]; \
617     while( (v1 = [o_e1 nextObject]) ) \
618     { \
619         [v1 release]; \
620     } \
621     [o_dic removeAllObjects]; \
622     [o_dic release]; \
623     }
624
625     o_panel = [o_pref_panels objectForKey: o_module_name];
626     [o_pref_panels removeObjectForKey: o_module_name];
627     [o_panel release];
628
629     DIC_REL(o_toolbars);
630
631     o_scroll_view = [o_scroll_views objectForKey: o_module_name];
632     [o_scroll_views removeObjectForKey: o_module_name];
633     [o_scroll_view release];
634
635     DIC_REL(o_panel_views);
636
637     o_prefs = [o_save_prefs objectForKey: o_module_name];
638     [o_save_prefs removeObjectForKey: o_module_name];
639     [o_prefs removeAllObjects];
640     [o_prefs release];
641
642 #undef DIC_REL
643
644 }
645
646 - (void)selectPrefView:(id)sender
647 {
648     NSView *o_view;
649     NSString *o_module_name;
650     NSScrollView *o_scroll_view;
651     NSMutableDictionary *o_views;
652
653     o_module_name = [[sender toolbar] identifier];
654     o_views = [o_panel_views objectForKey: o_module_name];
655     o_view = [o_views objectForKey: [sender label]];
656
657     o_scroll_view = [o_scroll_views objectForKey: o_module_name];
658     [o_scroll_view setDocumentView: o_view];
659 }
660
661 - (void)moduleSelected:(id)sender
662 {
663     NSButton *o_btn_config;
664     NSString *o_module_name;
665     BOOL b_has_prefs = NO;
666
667     o_module_name = [sender titleOfSelectedItem];
668     o_btn_config = [[sender superview] viewWithTag: [sender tag] + 1];
669
670     if( ![o_module_name isEqualToString: _NS("None")] )
671     {
672         b_has_prefs = [self hasPrefs: o_module_name];
673     }
674
675     [o_btn_config setEnabled: b_has_prefs];
676 }
677
678 - (void)configureModule:(id)sender
679 {
680     NSString *o_module_name;
681     NSPopUpButton *o_modules;
682
683     o_modules = [[sender superview] viewWithTag: [sender tag] - 1];
684     o_module_name = [o_modules titleOfSelectedItem];
685
686     [self createPrefPanel: o_module_name];
687 }
688
689 - (void)selectModule:(id)sender
690 {
691     NSString *o_module_name;
692     NSPopUpButton *o_modules;
693     NSTextField *o_module;
694
695     o_module = [[sender superview] viewWithTag: [sender tag] - 1];
696     o_modules = [[sender superview] viewWithTag: [sender tag] - 3];
697     o_module_name = [o_modules titleOfSelectedItem];
698
699     if( [o_module_name isEqualToString: _NS("None")] )
700     {
701         o_module_name = [NSString string];
702     }
703
704     [o_module setStringValue: o_module_name];
705     [self configChanged: o_module];
706 }
707
708 - (void)configChanged:(id)o_unknown
709 {
710     id o_vlc_config = [o_unknown isKindOfClass: [NSNotification class]] ?
711                       [o_unknown object] : o_unknown;
712
713     NSString *o_module_name = [o_vlc_config moduleName];
714     NSPanel *o_pref_panel = [o_pref_panels objectForKey: o_module_name];
715     NSMutableArray *o_prefs = [o_save_prefs objectForKey: o_module_name];
716
717     if( [o_prefs indexOfObjectIdenticalTo: o_vlc_config] == NSNotFound )
718     {
719         NSView *o_pref_view = [o_pref_panel contentView];
720         NSButton *o_btn_apply = [o_pref_view viewWithTag: 2];
721
722         [o_prefs addObject: o_vlc_config];
723         [o_btn_apply setEnabled: YES];
724     }
725 }
726
727 - (void)clickedApplyCancelOK:(id)sender
728 {
729     id o_vlc_control;
730     NSEnumerator *o_enum;
731     BOOL b_advanced_change = FALSE;
732     
733     NSWindow *o_pref_panel = [[sender superview] window];
734     NSString *o_module_name = [[o_pref_panel toolbar] identifier];
735
736     if ( ![[sender title] isEqualToString: _NS("Cancel")] )
737     {
738         NSView *o_config_view = [sender superview];
739         NSWindow *o_config_panel = [o_config_view window];
740         NSButton *o_btn_apply = [o_config_view viewWithTag: 2];
741         NSString *o_module_name = [[o_config_panel toolbar] identifier];
742         NSMutableArray *o_prefs = [o_save_prefs objectForKey: o_module_name];
743     
744         o_enum = [o_prefs objectEnumerator];
745         while( ( o_vlc_control = [o_enum nextObject] ) )
746         {
747             int i_type = [o_vlc_control configType];
748             NSString *o_name = [o_vlc_control configName];
749             char *psz_name = (char *)[o_name lossyCString];
750     
751             switch( i_type )
752             {
753     
754             case CONFIG_ITEM_MODULE:
755             case CONFIG_ITEM_STRING:
756             case CONFIG_ITEM_FILE:
757                 {
758                     char *psz_value;
759                     NSString *o_value;
760     
761                     o_value = [o_vlc_control stringValue];
762                     psz_value = (char *)[o_value lossyCString];
763     
764                     config_PutPsz( p_intf, psz_name,
765                                 *psz_value ? psz_value : NULL );
766                 }
767                 break;
768     
769             case CONFIG_ITEM_INTEGER:
770             case CONFIG_ITEM_BOOL:
771                 {
772                     int i_value = [o_vlc_control intValue];
773                     if ( !strcmp( psz_name, "advanced" ) && ( config_GetInt( p_intf, "advanced" ) != i_value ) )
774                     {
775                         b_advanced_change = TRUE;
776                     }
777                     config_PutInt( p_intf, psz_name, i_value );
778                 }
779                 break;
780     
781             case CONFIG_ITEM_FLOAT:
782                 {
783                     float f_value = [o_vlc_control floatValue];
784     
785                     config_PutFloat( p_intf, psz_name, f_value );
786                 }
787                 break;
788     
789             }
790         }
791     
792         [o_btn_apply setEnabled: NO];
793         [o_prefs removeAllObjects];
794     
795         config_SaveConfigFile( p_intf, NULL );
796     }
797     
798     if ( [[sender title] isEqualToString: _NS("Apply")] && !b_advanced_change )
799     {
800         ;
801     }
802     else
803     {
804         [o_pref_panel close];
805
806         if( [self respondsToSelector: @selector(performSelectorOnMainThread:
807                                                 withObject:waitUntilDone:)] )
808         {
809             [self performSelectorOnMainThread: @selector(destroyPrefPanel:)
810                                             withObject: o_module_name
811                                             waitUntilDone: YES];
812             if ( [[sender title] isEqualToString: _NS("Apply")] && b_advanced_change )
813             {
814                 [self createPrefPanel:@"main"];
815             }
816         }
817         else
818         {
819             [NSTimer scheduledTimerWithTimeInterval: 0.1
820                     target: self selector: @selector(destroyPrefPanel:)
821                     userInfo: o_module_name repeats: NO];
822         }
823     }
824 }
825
826 @end
827
828 @implementation VLCPrefs (NSToolbarDelegate)
829
830 - (NSToolbarItem *)toolbar:(NSToolbar *)o_toolbar
831                    itemForItemIdentifier:(NSString *)o_item_id
832                    willBeInsertedIntoToolbar:(BOOL)b_flag
833 {
834     NSMutableDictionary *o_toolbar_items;
835     NSString *o_module_name = [o_toolbar identifier];
836
837     o_toolbar_items = [o_toolbars objectForKey: o_module_name];
838     if( o_toolbar_items == nil )
839     {
840         return( nil );
841     }
842
843     return( [o_toolbar_items objectForKey: o_item_id] );
844 }
845
846 - (NSArray *)toolbarAllowedItemIdentifiers:(NSToolbar*)o_toolbar
847 {
848     return( [self toolbarDefaultItemIdentifiers: o_toolbar] );
849 }
850
851 - (NSArray *)toolbarDefaultItemIdentifiers:(NSToolbar*)o_toolbar
852 {
853     NSArray *o_ids;
854     NSMutableDictionary *o_toolbar_items;
855     NSString *o_module_name = [o_toolbar identifier];
856
857     o_toolbar_items = [o_toolbars objectForKey: o_module_name];
858     if( o_toolbar_items == nil )
859     {
860         return( nil );
861     }
862
863     o_ids = [[o_toolbar_items allKeys]
864         sortedArrayUsingSelector: @selector(compare:)];
865
866     return( o_ids );
867 }
868
869 @end
870
871 @implementation VLCFlippedView
872
873 - (BOOL)isFlipped
874 {
875     return( YES );
876 }
877
878 @end
879
880 IMPL_CONTROL_CONFIG(Button);
881 IMPL_CONTROL_CONFIG(ComboBox);
882 IMPL_CONTROL_CONFIG(TextField);