]> git.sesse.net Git - vlc/blob - modules/gui/macosx/prefs.m
* ./modules/gui/macosx: Defeated some deadlocks.
[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.10 2003/01/31 02:53:52 jlj 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_view addSubview: [o_text_field autorelease]]; \
242     }
243
244 #define INPUT_FIELD( ctype, cname, label, w, msg, param, tip ) \
245     { \
246         s_rc.size.height = 25; \
247         s_rc.size.width = w; \
248         s_rc.origin.y += 10; \
249         CHECK_VIEW_HEIGHT; \
250         o_text_field = [[VLCTextField alloc] initWithFrame: s_rc]; \
251         [o_text_field setAlignment: NSRightTextAlignment]; \
252         CONTROL_CONFIG( o_text_field, o_module_name, ctype, cname ); \
253         [o_text_field msg: param]; \
254         [o_text_field setToolTip: [NSApp localizedString: tip]]; \
255         [o_view addSubview: [o_text_field autorelease]]; \
256         [[NSNotificationCenter defaultCenter] addObserver: self \
257             selector: @selector(configChanged:) \
258             name: NSControlTextDidChangeNotification \
259             object: o_text_field]; \
260         CONTROL_LABEL( label ); \
261         s_rc.origin.y += s_rc.size.height; \
262         s_rc.origin.x = X_ORIGIN; \
263     }
264
265 #define INPUT_FIELD_INTEGER( name, label, w, param, tip ) \
266     INPUT_FIELD( CONFIG_ITEM_INTEGER, name, label, w, setIntValue, param, tip )
267 #define INPUT_FIELD_FLOAT( name, label, w, param, tip ) \
268     INPUT_FIELD( CONFIG_ITEM_FLOAT, name, label, w, setFloatValue, param, tip )
269 #define INPUT_FIELD_STRING( name, label, w, param, tip ) \
270     INPUT_FIELD( CONFIG_ITEM_STRING, name, label, w, setStringValue, param, tip )
271
272     if( p_item ) do
273     {
274
275         switch( p_item->i_type )
276         {
277
278         case CONFIG_HINT_CATEGORY:
279         {
280             NSString *o_key;
281             NSString *o_label;
282             NSToolbarItem *o_tbi;
283
284             o_label = [NSApp localizedString: p_item->psz_text];
285             o_tbi = [[NSToolbarItem alloc] initWithItemIdentifier: o_label];
286             [o_tbi setImage: [NSImage imageNamed: @"NSApplicationIcon"]];
287             [o_tbi setLabel: o_label];
288             [o_tbi setTarget: self];
289             [o_tbi setAction: @selector(selectPrefView:)];
290
291             o_key = [NSString stringWithFormat: @"%02d %@",
292                                                 i_pos, o_label];
293             [o_tb_items setObject: o_tbi forKey: o_key];
294
295             s_vrc = s_scroll_rc; s_vrc.size.height -= 4;
296             o_view = [[VLCFlippedView alloc] initWithFrame: s_vrc];
297             [o_views setObject: o_view forKey: o_label];
298
299             s_rc.origin.x = X_ORIGIN;
300             s_rc.origin.y = Y_ORIGIN;
301
302             i_module_tag = 3;
303
304             if( i_pos == 0 )
305             {
306                 [o_scroll_view setDocumentView: o_view];
307             }
308
309             i_pos++;
310         }
311         break;
312
313         case CONFIG_ITEM_MODULE:
314         {
315             NSBox *o_box;
316             NSRect s_crc;
317             NSView *o_cview;
318             NSPopUpButton *o_modules;
319             NSButton *o_btn_select;
320             NSButton *o_btn_configure;
321
322 #define MODULE_BUTTON( button, title, sel ) \
323     { \
324         s_brc.size.height = 32; \
325         s_brc.origin.x += s_brc.size.width + 10; \
326         s_brc.size.width = s_crc.size.width - s_brc.origin.x - 10; \
327         button = [[NSButton alloc] initWithFrame: s_brc]; \
328         [button setButtonType: NSMomentaryPushInButton]; \
329         [button setBezelStyle: NSRoundedBezelStyle]; \
330         [button setTitle: title]; \
331         [button setTag: i_module_tag++]; \
332         [button setTarget: self]; \
333         [button setAction: @selector(sel)]; \
334         [o_cview addSubview: [button autorelease]]; \
335     }
336
337             s_rc.size.height = 107;
338             s_rc.size.width = s_vrc.size.width - X_ORIGIN * 2 - 20;
339             s_rc.origin.y += i_module_tag == 3 ? Y_ORIGIN : 20;
340
341             CHECK_VIEW_HEIGHT;
342
343             o_box = [[NSBox alloc] initWithFrame: s_rc];
344             [o_box setTitle: [NSApp localizedString: p_item->psz_text]];
345             [o_view addSubview: [o_box autorelease]];
346             s_rc.origin.y += s_rc.size.height + 10;
347             o_cview = [[VLCFlippedView alloc] initWithFrame: s_rc];
348             [o_box setContentView: [o_cview autorelease]];
349             s_crc = [o_cview bounds];
350
351             s_brc = NSMakeRect( 5, 10, 200, 30 );
352             o_modules = [[NSPopUpButton alloc] initWithFrame: s_brc];
353             [o_modules setTag: i_module_tag++];
354             [o_modules setTarget: self];
355             [o_modules setAction: @selector(moduleSelected:)];
356             [o_modules setToolTip: [NSApp localizedString: p_item->psz_longtext]];
357             [o_cview addSubview: [o_modules autorelease]];
358
359             MODULE_BUTTON( o_btn_configure, _NS("Configure"),
360                            configureModule: );
361
362             s_brc = NSMakeRect( 8, s_brc.origin.y + s_brc.size.height + 10,
363                                 194, 25 );
364             o_text_field = [[VLCTextField alloc] initWithFrame: s_brc];
365             [o_text_field setTag: i_module_tag++];
366             [o_text_field setAlignment: NSLeftTextAlignment];
367             CONTROL_CONFIG( o_text_field, o_module_name,
368                             CONFIG_ITEM_MODULE, p_item->psz_name );
369             [[NSNotificationCenter defaultCenter] addObserver: self
370                 selector: @selector(configChanged:)
371                 name: NSControlTextDidChangeNotification
372                 object: o_text_field];
373             [o_cview addSubview: [o_text_field autorelease]];
374
375             s_brc.origin.x += 3;
376             MODULE_BUTTON( o_btn_select, _NS("Select"),
377                            selectModule: );
378
379             [o_modules addItemWithTitle: _NS("None")];
380
381             /* build a list of available modules */
382             {
383                 for( i_index = 0; i_index < p_list->i_count; i_index++ )
384                 {
385                     p_parser = (module_t *)p_list->p_values[i_index].p_object ;
386
387                     if( !strcmp( p_parser->psz_capability,
388                                  p_item->psz_type ) )
389                     {
390                         NSString *o_object_name = [NSString
391                             stringWithCString: p_parser->psz_object_name];
392                         [o_modules addItemWithTitle: o_object_name];
393                     }
394                 }
395             }
396
397             if( p_item->psz_value != NULL )
398             {
399                 NSString *o_value =
400                     [NSString stringWithCString: p_item->psz_value];
401
402                 [o_text_field setStringValue: o_value];
403                 [o_modules selectItemWithTitle: o_value];
404                 [o_btn_configure setEnabled: [self hasPrefs: o_value]];
405             }
406             else
407             {
408                 [o_modules selectItemWithTitle: _NS("None")];
409                 [o_btn_configure setEnabled: NO];
410             }
411
412 #undef MODULE_BUTTON
413         }
414         break;
415
416         case CONFIG_ITEM_STRING:
417         case CONFIG_ITEM_FILE:
418         {
419
420             if( !p_item->ppsz_list )
421             {
422                 char *psz_value = p_item->psz_value ?
423                                   p_item->psz_value : "";
424
425                 INPUT_FIELD_STRING( p_item->psz_name, p_item->psz_text, 150,
426                                     [NSString stringWithCString: psz_value],
427                                     p_item->psz_longtext );
428             }
429             else
430             {
431                 int i;
432                 VLCComboBox *o_combo_box;
433
434                 s_rc.size.height = 27;
435                 s_rc.size.width = 150;
436                 s_rc.origin.y += 10;
437
438                 CHECK_VIEW_HEIGHT;
439
440                 o_combo_box = [[VLCComboBox alloc] initWithFrame: s_rc];
441                 CONTROL_CONFIG( o_combo_box, o_module_name,
442                                 CONFIG_ITEM_STRING, p_item->psz_name );
443                 [o_combo_box setToolTip:
444                     [NSApp localizedString: p_item->psz_longtext]];
445                 [o_view addSubview: [o_combo_box autorelease]];
446                 [[NSNotificationCenter defaultCenter] addObserver: self
447                     selector: @selector(configChanged:)
448                     name: NSControlTextDidChangeNotification
449                     object: o_combo_box];
450                 [[NSNotificationCenter defaultCenter] addObserver: self
451                     selector: @selector(configChanged:)
452                     name: NSComboBoxSelectionDidChangeNotification
453                     object: o_combo_box];
454
455                 for( i=0; p_item->ppsz_list[i]; i++ )
456                 {
457                     [o_combo_box addItemWithObjectValue:
458                         [NSString stringWithCString: p_item->ppsz_list[i]]];
459                 }
460
461                 CONTROL_LABEL( p_item->psz_text );
462
463                 s_rc.origin.y += s_rc.size.height;
464                 s_rc.origin.x = X_ORIGIN;
465             }
466
467         }
468         break;
469
470         case CONFIG_ITEM_INTEGER:
471         {
472             INPUT_FIELD_INTEGER( p_item->psz_name, p_item->psz_text, 70,
473                                  p_item->i_value, p_item->psz_longtext );
474         }
475         break;
476
477         case CONFIG_ITEM_FLOAT:
478         {
479             INPUT_FIELD_FLOAT( p_item->psz_name, p_item->psz_text, 70,
480                                p_item->f_value, p_item->psz_longtext );
481         }
482         break;
483
484         case CONFIG_ITEM_BOOL:
485         {
486             VLCButton *o_btn_bool;
487
488             s_rc.size.height = 27;
489             s_rc.size.width = s_vrc.size.width - X_ORIGIN * 2 - 20;
490             s_rc.origin.y += 10;
491
492             CHECK_VIEW_HEIGHT;
493
494             o_btn_bool = [[VLCButton alloc] initWithFrame: s_rc];
495             [o_btn_bool setButtonType: NSSwitchButton];
496             [o_btn_bool setIntValue: p_item->i_value];
497             [o_btn_bool setTitle:
498                 [NSApp localizedString: p_item->psz_text]];
499             [o_btn_bool setToolTip:
500                 [NSApp localizedString: p_item->psz_longtext]];
501             [o_btn_bool setTarget: self];
502             [o_btn_bool setAction: @selector(configChanged:)];
503             CONTROL_CONFIG( o_btn_bool, o_module_name,
504                             CONFIG_ITEM_BOOL, p_item->psz_name );
505             [o_view addSubview: [o_btn_bool autorelease]];
506
507             s_rc.origin.y += s_rc.size.height;
508         }
509         break;
510
511         }
512
513 #undef INPUT_FIELD_INTEGER
514 #undef INPUT_FIELD_FLOAT
515 #undef INPUT_FIELD_STRING
516 #undef INPUT_FIELD
517 #undef CHECK_VIEW_HEIGHT
518 #undef CONTROL_LABEL
519 #undef Y_ORIGIN
520 #undef X_ORIGIN
521     }
522     while( p_item->i_type != CONFIG_HINT_END && p_item++ );
523
524     vlc_list_release( p_list );
525
526     [o_toolbars setObject: o_tb_items forKey: o_module_name];
527     [o_toolbar setDelegate: self];
528     [o_panel setToolbar: [o_toolbar autorelease]];
529
530 #define DEF_PANEL_BUTTON( tag, title, sel ) \
531     { \
532         o_button = [[NSButton alloc] initWithFrame: s_rc]; \
533         [o_button setButtonType: NSMomentaryPushInButton]; \
534         [o_button setBezelStyle: NSRoundedBezelStyle]; \
535         [o_button setAction: @selector(sel)]; \
536         [o_button setTarget: self]; \
537         [o_button setTitle: title]; \
538         [o_button setTag: tag]; \
539         [o_panel_view addSubview: [o_button autorelease]]; \
540     }
541
542     s_rc.origin.y = s_panel_rc.origin.y + 14;
543     s_rc.size.height = 25; s_rc.size.width = 100;
544     s_rc.origin.x = s_panel_rc.size.width - s_rc.size.width - 14;
545     DEF_PANEL_BUTTON( 0, _NS("OK"), clickedCancelOK: );
546     [o_panel setDefaultButtonCell: [o_button cell]];
547
548     s_rc.origin.x -= s_rc.size.width;
549     DEF_PANEL_BUTTON( 1, _NS("Cancel"), clickedCancelOK: );
550     [o_button setKeyEquivalent: @"\E"];
551
552     s_rc.origin.x -= s_rc.size.width;
553     DEF_PANEL_BUTTON( 2, _NS("Apply"), clickedApply: );
554     [o_button setEnabled: NO];
555
556 #undef DEF_PANEL_BUTTON
557
558     [o_pref_panels setObject: o_panel forKey: o_module_name];
559     [o_panel_views setObject: o_views forKey: o_module_name];
560
561     [o_panel center];
562     [o_panel makeKeyAndOrderFront: nil];
563 }
564
565 - (void)destroyPrefPanel:(id)o_unknown
566 {
567     id v1;
568     NSPanel *o_panel;
569     NSEnumerator *o_e1;
570     NSMutableArray *o_prefs;
571     NSMutableDictionary *o_dic;
572     NSScrollView *o_scroll_view;
573     NSString *o_module_name;
574
575     o_module_name = (NSString *)([o_unknown isKindOfClass: [NSTimer class]] ?
576                                  [o_unknown userInfo] : o_unknown);
577
578 #define DIC_REL(dic) \
579     { \
580     o_dic = [dic objectForKey: o_module_name]; \
581     [dic removeObjectForKey: o_module_name]; \
582     o_e1 = [o_dic objectEnumerator]; \
583     while( (v1 = [o_e1 nextObject]) ) \
584     { \
585         [v1 release]; \
586     } \
587     [o_dic removeAllObjects]; \
588     [o_dic release]; \
589     }
590
591     o_panel = [o_pref_panels objectForKey: o_module_name];
592     [o_pref_panels removeObjectForKey: o_module_name];
593     [o_panel release];
594
595     DIC_REL(o_toolbars);
596
597     o_scroll_view = [o_scroll_views objectForKey: o_module_name];
598     [o_scroll_views removeObjectForKey: o_module_name];
599     [o_scroll_view release];
600
601     DIC_REL(o_panel_views);
602
603     o_prefs = [o_save_prefs objectForKey: o_module_name];
604     [o_save_prefs removeObjectForKey: o_module_name];
605     [o_prefs removeAllObjects];
606     [o_prefs release];
607
608 #undef DIC_REL
609
610 }
611
612 - (void)selectPrefView:(id)sender
613 {
614     NSView *o_view;
615     NSString *o_module_name;
616     NSScrollView *o_scroll_view;
617     NSMutableDictionary *o_views;
618
619     o_module_name = [[sender toolbar] identifier];
620     o_views = [o_panel_views objectForKey: o_module_name];
621     o_view = [o_views objectForKey: [sender label]];
622
623     o_scroll_view = [o_scroll_views objectForKey: o_module_name];
624     [o_scroll_view setDocumentView: o_view];
625 }
626
627 - (void)moduleSelected:(id)sender
628 {
629     NSButton *o_btn_config;
630     NSString *o_module_name;
631     BOOL b_has_prefs = NO;
632
633     o_module_name = [sender titleOfSelectedItem];
634     o_btn_config = [[sender superview] viewWithTag: [sender tag] + 1];
635
636     if( ![o_module_name isEqualToString: _NS("None")] )
637     {
638         b_has_prefs = [self hasPrefs: o_module_name];
639     }
640
641     [o_btn_config setEnabled: b_has_prefs];
642 }
643
644 - (void)configureModule:(id)sender
645 {
646     NSString *o_module_name;
647     NSPopUpButton *o_modules;
648
649     o_modules = [[sender superview] viewWithTag: [sender tag] - 1];
650     o_module_name = [o_modules titleOfSelectedItem];
651
652     [self createPrefPanel: o_module_name];
653 }
654
655 - (void)selectModule:(id)sender
656 {
657     NSString *o_module_name;
658     NSPopUpButton *o_modules;
659     NSTextField *o_module;
660
661     o_module = [[sender superview] viewWithTag: [sender tag] - 1];
662     o_modules = [[sender superview] viewWithTag: [sender tag] - 3];
663     o_module_name = [o_modules titleOfSelectedItem];
664
665     if( [o_module_name isEqualToString: _NS("None")] )
666     {
667         o_module_name = [NSString string];
668     }
669
670     [o_module setStringValue: o_module_name];
671     [self configChanged: o_module];
672 }
673
674 - (void)configChanged:(id)o_unknown
675 {
676     id o_vlc_config = [o_unknown isKindOfClass: [NSNotification class]] ?
677                       [o_unknown object] : o_unknown;
678
679     NSString *o_module_name = [o_vlc_config moduleName];
680     NSPanel *o_pref_panel = [o_pref_panels objectForKey: o_module_name];
681     NSMutableArray *o_prefs = [o_save_prefs objectForKey: o_module_name];
682
683     if( [o_prefs indexOfObjectIdenticalTo: o_vlc_config] == NSNotFound )
684     {
685         NSView *o_pref_view = [o_pref_panel contentView];
686         NSButton *o_btn_apply = [o_pref_view viewWithTag: 2];
687
688         [o_prefs addObject: o_vlc_config];
689         [o_btn_apply setEnabled: YES];
690     }
691 }
692
693 - (void)clickedApply:(id)sender
694 {
695     id o_vlc_control;
696     NSEnumerator *o_enum;
697
698     NSView *o_config_view = [sender superview];
699     NSWindow *o_config_panel = [o_config_view window];
700     NSButton *o_btn_apply = [o_config_view viewWithTag: 2];
701     NSString *o_module_name = [[o_config_panel toolbar] identifier];
702     NSMutableArray *o_prefs = [o_save_prefs objectForKey: o_module_name];
703
704     o_enum = [o_prefs objectEnumerator];
705     while( ( o_vlc_control = [o_enum nextObject] ) )
706     {
707         int i_type = [o_vlc_control configType];
708         NSString *o_name = [o_vlc_control configName];
709         char *psz_name = (char *)[o_name lossyCString];
710
711         switch( i_type )
712         {
713
714         case CONFIG_ITEM_MODULE:
715         case CONFIG_ITEM_STRING:
716         case CONFIG_ITEM_FILE:
717             {
718                 char *psz_value;
719                 NSString *o_value;
720
721                 o_value = [o_vlc_control stringValue];
722                 psz_value = (char *)[o_value lossyCString];
723
724                 config_PutPsz( p_intf, psz_name,
725                                *psz_value ? psz_value : NULL );
726             }
727             break;
728
729         case CONFIG_ITEM_INTEGER:
730         case CONFIG_ITEM_BOOL:
731             {
732                 int i_value = [o_vlc_control intValue];
733
734                 config_PutInt( p_intf, psz_name, i_value );
735             }
736             break;
737
738         case CONFIG_ITEM_FLOAT:
739             {
740                 float f_value = [o_vlc_control floatValue];
741
742                 config_PutFloat( p_intf, psz_name, f_value );
743             }
744             break;
745
746         }
747     }
748
749     [o_btn_apply setEnabled: NO];
750     [o_prefs removeAllObjects];
751
752     config_SaveConfigFile( p_intf, NULL );
753 }
754
755 - (void)clickedCancelOK:(id)sender
756 {
757     NSWindow *o_pref_panel = [[sender superview] window];
758     NSString *o_module_name = [[o_pref_panel toolbar] identifier];
759
760     if( [[sender title] isEqualToString: _NS("OK")] )
761     {
762         [self clickedApply: sender];
763     }
764
765     [o_pref_panel close];
766
767     if( [self respondsToSelector: @selector(performSelectorOnMainThread:
768                                             withObject:waitUntilDone:)] )
769     {
770         [self performSelectorOnMainThread: @selector(destroyPrefPanel:)
771                                            withObject: o_module_name
772                                            waitUntilDone: NO];
773     }
774     else
775     {
776         [NSTimer scheduledTimerWithTimeInterval: 0.1
777                  target: self selector: @selector(destroyPrefPanel:)
778                  userInfo: o_module_name repeats: NO];
779     }
780 }
781
782 @end
783
784 @implementation VLCPrefs (NSToolbarDelegate)
785
786 - (NSToolbarItem *)toolbar:(NSToolbar *)o_toolbar
787                    itemForItemIdentifier:(NSString *)o_item_id
788                    willBeInsertedIntoToolbar:(BOOL)b_flag
789 {
790     NSMutableDictionary *o_toolbar_items;
791     NSString *o_module_name = [o_toolbar identifier];
792
793     o_toolbar_items = [o_toolbars objectForKey: o_module_name];
794     if( o_toolbar_items == nil )
795     {
796         return( nil );
797     }
798
799     return( [o_toolbar_items objectForKey: o_item_id] );
800 }
801
802 - (NSArray *)toolbarAllowedItemIdentifiers:(NSToolbar*)o_toolbar
803 {
804     return( [self toolbarDefaultItemIdentifiers: o_toolbar] );
805 }
806
807 - (NSArray *)toolbarDefaultItemIdentifiers:(NSToolbar*)o_toolbar
808 {
809     NSArray *o_ids;
810     NSMutableDictionary *o_toolbar_items;
811     NSString *o_module_name = [o_toolbar identifier];
812
813     o_toolbar_items = [o_toolbars objectForKey: o_module_name];
814     if( o_toolbar_items == nil )
815     {
816         return( nil );
817     }
818
819     o_ids = [[o_toolbar_items allKeys]
820         sortedArrayUsingSelector: @selector(compare:)];
821
822     return( o_ids );
823 }
824
825 @end
826
827 @implementation VLCFlippedView
828
829 - (BOOL)isFlipped
830 {
831     return( YES );
832 }
833
834 @end
835
836 IMPL_CONTROL_CONFIG(Button);
837 IMPL_CONTROL_CONFIG(ComboBox);
838 IMPL_CONTROL_CONFIG(TextField);