]> git.sesse.net Git - vlc/blob - modules/gui/macosx/prefs_widgets.m
* added numerous casts to silence compilation warnings introduced with const chars...
[vlc] / modules / gui / macosx / prefs_widgets.m
1 /*****************************************************************************
2  * prefs_widgets.m: Preferences controls
3  *****************************************************************************
4  * Copyright (C) 2002-2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Derk-Jan Hartman <hartman at videolan.org>
8  *          Jérôme Decoodt <djc at videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29 #include <string.h>
30
31 #include <vlc/vlc.h>
32 #include "vlc_keys.h"
33
34 #include "intf.h"
35 #include "prefs_widgets.h"
36
37 #define PREFS_WRAP 300
38 #define OFFSET_RIGHT 20
39 #define OFFSET_BETWEEN 2
40
41 #define UPWARDS_WHITE_ARROW                 "\xE2\x87\xA7" 
42 #define OPTION_KEY                          "\xE2\x8C\xA5"
43 #define UP_ARROWHEAD                        "\xE2\x8C\x83"
44 #define PLACE_OF_INTEREST_SIGN              "\xE2\x8C\x98"
45
46 #define POPULATE_A_KEY( o_menu, string, value )                             \
47 {                                                                           \
48     NSMenuItem *o_mi;                                                       \
49 /*  Normal */                                                               \
50     o_mi = [[NSMenuItem alloc] initWithTitle:string                         \
51         action:nil keyEquivalent:@""];                                      \
52     [o_mi setKeyEquivalentModifierMask:                                     \
53         0];                                                                 \
54 if( MACOS_VERSION >= 10.3 )                                                 \
55     [o_mi setAlternate: NO];                                                \
56     [o_mi setTag:                                                           \
57         ( value )];                                                         \
58     [o_menu addItem: o_mi];                                                 \
59 if( MACOS_VERSION >= 10.3 )                                                 \
60 {                                                                           \
61 /*  Ctrl */                                                                 \
62     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
63         [[NSString stringWithUTF8String:                                    \
64             UP_ARROWHEAD                                                    \
65         ] stringByAppendingString: string]                                  \
66         action:nil keyEquivalent:@""];                                      \
67     [o_mi setKeyEquivalentModifierMask:                                     \
68         NSControlKeyMask];                                                  \
69     [o_mi setAlternate: YES];                                               \
70     [o_mi setTag:                                                           \
71         KEY_MODIFIER_CTRL | ( value )];                                     \
72     [o_menu addItem: o_mi];                                                 \
73 /* Ctrl+Alt */                                                              \
74     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
75         [[NSString stringWithUTF8String:                                    \
76             UP_ARROWHEAD OPTION_KEY                                         \
77         ] stringByAppendingString: string]                                  \
78         action:nil keyEquivalent:@""];                                      \
79     [o_mi setKeyEquivalentModifierMask:                                     \
80         NSControlKeyMask | NSAlternateKeyMask];                             \
81     [o_mi setAlternate: YES];                                               \
82     [o_mi setTag:                                                           \
83         (KEY_MODIFIER_CTRL | KEY_MODIFIER_ALT) | ( value )];                \
84     [o_menu addItem: o_mi];                                                 \
85 /* Ctrl+Shift */                                                            \
86     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
87         [[NSString stringWithUTF8String:                                    \
88             UP_ARROWHEAD UPWARDS_WHITE_ARROW                                \
89         ] stringByAppendingString: string]                                  \
90         action:nil keyEquivalent:@""];                                      \
91     [o_mi setKeyEquivalentModifierMask:                                     \
92        NSControlKeyMask | NSShiftKeyMask];                                  \
93     [o_mi setAlternate: YES];                                               \
94     [o_mi setTag:                                                           \
95         (KEY_MODIFIER_CTRL | KEY_MODIFIER_SHIFT) | ( value )];              \
96     [o_menu addItem: o_mi];                                                 \
97 /* Ctrl+Apple */                                                            \
98     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
99         [[NSString stringWithUTF8String:                                    \
100             UP_ARROWHEAD PLACE_OF_INTEREST_SIGN                             \
101         ] stringByAppendingString: string]                                  \
102         action:nil keyEquivalent:@""];                                      \
103     [o_mi setKeyEquivalentModifierMask:                                     \
104         NSControlKeyMask | NSCommandKeyMask];                               \
105     [o_mi setAlternate: YES];                                               \
106     [o_mi setTag:                                                           \
107         (KEY_MODIFIER_CTRL | KEY_MODIFIER_COMMAND) | ( value )];            \
108     [o_menu addItem: o_mi];                                                 \
109 /* Ctrl+Alt+Shift */                                                        \
110     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
111         [[NSString stringWithUTF8String:                                    \
112             UP_ARROWHEAD OPTION_KEY UPWARDS_WHITE_ARROW                     \
113         ] stringByAppendingString: string]                                  \
114         action:nil keyEquivalent:@""];                                      \
115     [o_mi setKeyEquivalentModifierMask:                                     \
116         NSControlKeyMask | NSAlternateKeyMask | NSShiftKeyMask];            \
117     [o_mi setAlternate: YES];                                               \
118     [o_mi setTag:                                                           \
119         (KEY_MODIFIER_CTRL | KEY_MODIFIER_ALT | KEY_MODIFIER_SHIFT) |       \
120              ( value )];                                                    \
121     [o_menu addItem: o_mi];                                                 \
122 /* Ctrl+Alt+Apple */                                                        \
123     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
124         [[NSString stringWithUTF8String:                                    \
125             UP_ARROWHEAD OPTION_KEY PLACE_OF_INTEREST_SIGN                  \
126         ] stringByAppendingString: string]                                  \
127         action:nil keyEquivalent:@""];                                      \
128     [o_mi setKeyEquivalentModifierMask:                                     \
129         NSControlKeyMask | NSAlternateKeyMask | NSCommandKeyMask];          \
130     [o_mi setAlternate: YES];                                               \
131     [o_mi setTag:                                                           \
132         (KEY_MODIFIER_CTRL | KEY_MODIFIER_ALT | KEY_MODIFIER_COMMAND) |     \
133             ( value )];                                                     \
134     [o_menu addItem: o_mi];                                                 \
135 /* Ctrl+Shift+Apple */                                                      \
136     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
137         [[NSString stringWithUTF8String:                                    \
138             UP_ARROWHEAD UPWARDS_WHITE_ARROW PLACE_OF_INTEREST_SIGN         \
139         ] stringByAppendingString: string]                                  \
140         action:nil keyEquivalent:@""];                                      \
141     [o_mi setKeyEquivalentModifierMask:                                     \
142         NSControlKeyMask | NSShiftKeyMask | NSCommandKeyMask];              \
143     [o_mi setAlternate: YES];                                               \
144     [o_mi setTag:                                                           \
145         (KEY_MODIFIER_CTRL | KEY_MODIFIER_SHIFT | KEY_MODIFIER_COMMAND) |   \
146             ( value )];                                                     \
147     [o_menu addItem: o_mi];                                                 \
148 /* Ctrl+Alt+Shift+Apple */                                                  \
149     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
150         [[NSString stringWithUTF8String:                                    \
151             UP_ARROWHEAD OPTION_KEY UPWARDS_WHITE_ARROW                     \
152                 PLACE_OF_INTEREST_SIGN                                      \
153         ] stringByAppendingString: string]                                  \
154         action:nil keyEquivalent:@""];                                      \
155     [o_mi setKeyEquivalentModifierMask:                                     \
156         NSControlKeyMask | NSAlternateKeyMask | NSShiftKeyMask |            \
157             NSCommandKeyMask];                                              \
158     [o_mi setAlternate: YES];                                               \
159     [o_mi setTag:                                                           \
160         (KEY_MODIFIER_CTRL | KEY_MODIFIER_ALT | KEY_MODIFIER_SHIFT |        \
161             KEY_MODIFIER_COMMAND) | ( value )];                             \
162     [o_menu addItem: o_mi];                                                 \
163 /* Alt */                                                                   \
164     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
165         [[NSString stringWithUTF8String:                                    \
166             OPTION_KEY                                                      \
167         ] stringByAppendingString: string]                                  \
168         action:nil keyEquivalent:@""];                                      \
169     [o_mi setKeyEquivalentModifierMask:                                     \
170         NSAlternateKeyMask];                                                \
171     [o_mi setAlternate: YES];                                               \
172     [o_mi setTag:                                                           \
173         KEY_MODIFIER_ALT | ( value )];                                      \
174     [o_menu addItem: o_mi];                                                 \
175 /* Alt+Shift */                                                             \
176     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
177         [[NSString stringWithUTF8String:                                    \
178             OPTION_KEY UPWARDS_WHITE_ARROW                                  \
179         ] stringByAppendingString: string]                                  \
180         action:nil keyEquivalent:@""];                                      \
181     [o_mi setKeyEquivalentModifierMask:                                     \
182         NSAlternateKeyMask | NSShiftKeyMask];                               \
183     [o_mi setAlternate: YES];                                               \
184     [o_mi setTag:                                                           \
185         (KEY_MODIFIER_ALT | KEY_MODIFIER_SHIFT) | ( value )];               \
186     [o_menu addItem: o_mi];                                                 \
187 /* Alt+Apple */                                                             \
188     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
189         [[NSString stringWithUTF8String:                                    \
190             OPTION_KEY PLACE_OF_INTEREST_SIGN                               \
191         ] stringByAppendingString: string]                                  \
192         action:nil keyEquivalent:@""];                                      \
193     [o_mi setKeyEquivalentModifierMask:                                     \
194         NSAlternateKeyMask | NSCommandKeyMask];                             \
195     [o_mi setAlternate: YES];                                               \
196     [o_mi setTag:                                                           \
197         (KEY_MODIFIER_ALT | KEY_MODIFIER_COMMAND) | ( value )];             \
198     [o_menu addItem: o_mi];                                                 \
199 /* Alt+Shift+Apple */                                                       \
200     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
201         [[NSString stringWithUTF8String:                                    \
202             OPTION_KEY UPWARDS_WHITE_ARROW PLACE_OF_INTEREST_SIGN           \
203         ] stringByAppendingString: string]                                  \
204         action:nil keyEquivalent:@""];                                      \
205     [o_mi setKeyEquivalentModifierMask:                                     \
206         NSAlternateKeyMask | NSShiftKeyMask | NSCommandKeyMask];            \
207     [o_mi setAlternate: YES];                                               \
208     [o_mi setTag:                                                           \
209         (KEY_MODIFIER_ALT | KEY_MODIFIER_SHIFT | KEY_MODIFIER_COMMAND) |    \
210             ( value )];                                                     \
211     [o_menu addItem: o_mi];                                                 \
212 /* Shift */                                                                 \
213     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
214         [[NSString stringWithUTF8String:                                    \
215             UPWARDS_WHITE_ARROW                                             \
216         ] stringByAppendingString: string]                                  \
217         action:nil keyEquivalent:@""];                                      \
218     [o_mi setKeyEquivalentModifierMask:                                     \
219         NSShiftKeyMask];                                                    \
220     [o_mi setAlternate: YES];                                               \
221     [o_mi setTag:                                                           \
222         KEY_MODIFIER_SHIFT | ( value )];                                    \
223     [o_menu addItem: o_mi];                                                 \
224 /* Shift+Apple */                                                           \
225     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
226         [[NSString stringWithUTF8String:                                    \
227             UPWARDS_WHITE_ARROW PLACE_OF_INTEREST_SIGN                      \
228         ] stringByAppendingString: string]                                  \
229         action:nil keyEquivalent:@""];                                      \
230     [o_mi setKeyEquivalentModifierMask:                                     \
231         NSShiftKeyMask | NSCommandKeyMask];                                 \
232     [o_mi setAlternate: YES];                                               \
233     [o_mi setTag:                                                           \
234         (KEY_MODIFIER_SHIFT | KEY_MODIFIER_COMMAND) | ( value )];           \
235     [o_menu addItem: o_mi];                                                 \
236 /* Apple */                                                                 \
237     o_mi = [[NSMenuItem alloc] initWithTitle:                               \
238         [[NSString stringWithUTF8String:                                    \
239         PLACE_OF_INTEREST_SIGN                                              \
240         ] stringByAppendingString: string]                                  \
241         action:nil keyEquivalent:@""];                                      \
242     [o_mi setKeyEquivalentModifierMask:                                     \
243         NSCommandKeyMask];                                                  \
244     [o_mi setAlternate: YES];                                               \
245     [o_mi setTag:                                                           \
246         KEY_MODIFIER_COMMAND | ( value )];                                  \
247     [o_menu addItem: o_mi];                                                 \
248 }                                                                           \
249 }
250
251 #define ADD_LABEL( o_label, superFrame, x_offset, my_y_offset, label )      \
252 {                                                                           \
253     NSRect s_rc = superFrame;                                               \
254     s_rc.size.height = 17;                                                  \
255     s_rc.origin.x = x_offset - 3;                                           \
256     s_rc.origin.y = superFrame.size.height - 17 + my_y_offset;              \
257     o_label = [[[NSTextField alloc] initWithFrame: s_rc] retain];           \
258     [o_label setDrawsBackground: NO];                                       \
259     [o_label setBordered: NO];                                              \
260     [o_label setEditable: NO];                                              \
261     [o_label setSelectable: NO];                                            \
262     [o_label setStringValue: label];                                        \
263     [o_label setFont:[NSFont systemFontOfSize:0]];                          \
264     [o_label sizeToFit];                                                    \
265 }
266
267 #define ADD_TEXTFIELD( o_textfield, superFrame, x_offset, my_y_offset,      \
268     my_width, tooltip, init_value )                                         \
269 {                                                                           \
270     NSRect s_rc = superFrame;                                               \
271     s_rc.origin.x = x_offset;                                               \
272     s_rc.origin.y = my_y_offset;                                            \
273     s_rc.size.height = 22;                                                  \
274     s_rc.size.width = my_width;                                             \
275     o_textfield = [[[NSTextField alloc] initWithFrame: s_rc] retain];       \
276     [o_textfield setFont:[NSFont systemFontOfSize:0]];                      \
277     [o_textfield setToolTip: tooltip];                                      \
278     [o_textfield setStringValue: init_value];                               \
279 }
280
281 #define ADD_COMBO( o_combo, superFrame, x_offset, my_y_offset, x2_offset,   \
282     tooltip )                                                               \
283 {                                                                           \
284     NSRect s_rc = superFrame;                                               \
285     s_rc.origin.x = x_offset + 2;                                           \
286     s_rc.origin.y = my_y_offset;                                            \
287     s_rc.size.height = 26;                                                  \
288     s_rc.size.width = superFrame.size.width + 2 - s_rc.origin.x -           \
289         (x2_offset);                                                        \
290     o_combo = [[[NSComboBox alloc] initWithFrame: s_rc] retain];            \
291     [o_combo setFont:[NSFont systemFontOfSize:0]];                          \
292     [o_combo setToolTip: tooltip];                                          \
293     [o_combo setUsesDataSource:TRUE];                                       \
294     [o_combo setDataSource:self];                                           \
295     [o_combo setNumberOfVisibleItems:10];                                   \
296     [o_combo setCompletes:YES];                                             \
297 }
298
299 #define ADD_RIGHT_BUTTON( o_button, superFrame, x_offset, my_y_offset,      \
300     tooltip, title )                                                        \
301 {                                                                           \
302     NSRect s_rc = superFrame;                                               \
303     o_button = [[[NSButton alloc] initWithFrame: s_rc] retain];             \
304     [o_button setButtonType: NSMomentaryPushInButton];                      \
305     [o_button setBezelStyle: NSRoundedBezelStyle];                          \
306     [o_button setTitle: title];                                             \
307     [o_button setFont:[NSFont systemFontOfSize:0]];                         \
308     [o_button sizeToFit];                                                   \
309     s_rc = [o_button frame];                                                \
310     s_rc.origin.x = superFrame.size.width - [o_button frame].size.width - 6;\
311     s_rc.origin.y = my_y_offset - 6;                                        \
312     s_rc.size.width += 12;                                                  \
313     [o_button setFrame: s_rc];                                              \
314     [o_button setToolTip: tooltip];                                         \
315     [o_button setTarget: self];                                             \
316     [o_button setAction: @selector(openFileDialog:)];                       \
317 }
318
319 #define ADD_POPUP( o_popup, superFrame, x_offset, my_y_offset, x2_offset,   \
320     tooltip )                                                               \
321 {                                                                           \
322     NSRect s_rc = superFrame;                                               \
323     s_rc.origin.x = x_offset - 1;                                           \
324     s_rc.origin.y = my_y_offset;                                            \
325     s_rc.size.height = 26;                                                  \
326     s_rc.size.width = superFrame.size.width + 2 - s_rc.origin.x -           \
327         (x2_offset);                                                        \
328     o_popup = [[[NSPopUpButton alloc] initWithFrame: s_rc] retain];         \
329     [o_popup setFont:[NSFont systemFontOfSize:0]];                          \
330     [o_popup setToolTip: tooltip];                                          \
331 }
332
333 #define ADD_STEPPER( o_stepper, superFrame, x_offset, my_y_offset, tooltip, \
334     lower, higher )                                                         \
335 {                                                                           \
336     NSRect s_rc = superFrame;                                               \
337     s_rc.origin.x = x_offset;                                               \
338     s_rc.origin.y = my_y_offset;                                            \
339     s_rc.size.height = 23;                                                  \
340     s_rc.size.width = 23;                                                   \
341     o_stepper = [[[NSStepper alloc] initWithFrame: s_rc] retain];           \
342     [o_stepper setFont:[NSFont systemFontOfSize:0]];                        \
343     [o_stepper setToolTip: tooltip];                                        \
344     [o_stepper setMaxValue: higher];                                        \
345     [o_stepper setMinValue: lower];                                         \
346     [o_stepper setTarget: self];                                            \
347     [o_stepper setAction: @selector(stepperChanged:)];                      \
348     [o_stepper sendActionOn:NSLeftMouseUpMask | NSLeftMouseDownMask |       \
349         NSLeftMouseDraggedMask];                                            \
350 }
351
352 #define ADD_SLIDER( o_slider, superFrame, x_offset, my_y_offset, my_width,  \
353     tooltip, lower, higher )                                                \
354 {                                                                           \
355     NSRect s_rc = superFrame;                                               \
356     s_rc.origin.x = x_offset;                                               \
357     s_rc.origin.y = my_y_offset;                                            \
358     s_rc.size.height = 21;                                                  \
359     s_rc.size.width = my_width;                                             \
360     o_slider = [[[NSSlider alloc] initWithFrame: s_rc] retain];             \
361     [o_slider setFont:[NSFont systemFontOfSize:0]];                         \
362     [o_slider setToolTip: tooltip];                                         \
363     [o_slider setMaxValue: higher];                                         \
364     [o_slider setMinValue: lower];                                          \
365 }
366
367 #define ADD_CHECKBOX( o_checkbox, superFrame, x_offset, my_y_offset, label, \
368     tooltip, init_value, position )                                         \
369 {                                                                           \
370     NSRect s_rc = superFrame;                                               \
371     s_rc.size.height = 18;                                                  \
372     s_rc.origin.x = x_offset - 2;                                           \
373     s_rc.origin.y = superFrame.size.height - 18 + my_y_offset;              \
374     o_checkbox = [[[NSButton alloc] initWithFrame: s_rc] retain];           \
375     [o_checkbox setFont:[NSFont systemFontOfSize:0]];                       \
376     [o_checkbox setButtonType: NSSwitchButton];                             \
377     [o_checkbox setImagePosition: position];                                \
378     [o_checkbox setIntValue: init_value];                                   \
379     [o_checkbox setTitle: label];                                           \
380     [o_checkbox setToolTip: tooltip];                                       \
381     [o_checkbox sizeToFit];                                                 \
382 }
383
384 @implementation VLCConfigControl
385 - (id)initWithFrame: (NSRect)frame
386 {
387     return [self initWithFrame: frame
388                     item: nil];
389 }
390
391 - (id)initWithFrame: (NSRect)frame
392         item: (module_config_t *)_p_item
393 {
394     self = [super initWithFrame: frame];
395
396     if( self != nil )
397     {
398         p_item = _p_item;
399         psz_name = strdup( p_item->psz_name );
400         o_label = NULL;
401         i_type = p_item->i_type;
402         i_view_type = 0;
403         b_advanced = p_item->b_advanced;
404         [self setAutoresizingMask:NSViewWidthSizable | NSViewMinYMargin ];
405     }
406     return (self);
407 }
408
409 - (void)setYPos:(int)i_yPos
410 {
411     NSRect frame = [self frame];
412     frame.origin.y = i_yPos;
413     [self setFrame:frame];
414 }
415
416 - (void)dealloc
417 {
418     if( o_label ) [o_label release];
419     if( psz_name ) free( psz_name );
420     [super dealloc];
421 }
422
423 + (int)calcVerticalMargin: (int)i_curItem lastItem: (int)i_lastItem
424 {
425     int i_margin;
426     switch( i_curItem )
427     {
428     case CONFIG_ITEM_STRING:
429         switch( i_lastItem )
430         {
431         case CONFIG_ITEM_STRING:
432             i_margin = 8;
433             break;
434         case CONFIG_ITEM_STRING_LIST:
435             i_margin = 7;
436             break;
437         case CONFIG_ITEM_FILE:
438             i_margin = 8;
439             break;
440         case CONFIG_ITEM_MODULE:
441             i_margin = 4;
442             break;
443         case CONFIG_ITEM_INTEGER:
444             i_margin = 7;
445             break;
446         case CONFIG_ITEM_RANGED_INTEGER:
447             i_margin = 5;
448             break;
449         case CONFIG_ITEM_BOOL:
450             i_margin = 7;
451             break;
452         case CONFIG_ITEM_KEY_BEFORE_10_3:
453             i_margin = 7;
454             break;
455         case CONFIG_ITEM_KEY_AFTER_10_3:
456             i_margin = 6;
457             break;
458         case CONFIG_ITEM_MODULE_LIST:
459             i_margin = 8;
460             break;
461         default:
462             i_margin = 20;
463             break;
464         }
465         break;
466     case CONFIG_ITEM_STRING_LIST:
467         switch( i_lastItem )
468         {
469         case CONFIG_ITEM_STRING:
470             i_margin = 8;
471             break;
472         case CONFIG_ITEM_STRING_LIST:
473             i_margin = 7;
474             break;
475         case CONFIG_ITEM_FILE:
476             i_margin = 6;
477             break;
478         case CONFIG_ITEM_MODULE:
479             i_margin = 4;
480             break;
481         case CONFIG_ITEM_INTEGER:
482             i_margin = 7;
483             break;
484         case CONFIG_ITEM_RANGED_INTEGER:
485             i_margin = 5;
486             break;
487         case CONFIG_ITEM_BOOL:
488             i_margin = 7;
489             break;
490         case CONFIG_ITEM_KEY_BEFORE_10_3:
491             i_margin = 7;
492             break;
493         case CONFIG_ITEM_KEY_AFTER_10_3:
494             i_margin = 6;
495             break;
496         case CONFIG_ITEM_MODULE_LIST:
497             i_margin = 8;
498             break;
499         default:
500             i_margin = 20;
501             break;
502         }
503         break;
504     case CONFIG_ITEM_FILE:
505         switch( i_lastItem )
506         {
507         case CONFIG_ITEM_STRING:
508             i_margin = 13;
509             break;
510         case CONFIG_ITEM_STRING_LIST:
511             i_margin = 10;
512             break;
513         case CONFIG_ITEM_FILE:
514             i_margin = 9;
515             break;
516         case CONFIG_ITEM_MODULE:
517             i_margin = 9;
518             break;
519         case CONFIG_ITEM_INTEGER:
520             i_margin = 10;
521             break;
522         case CONFIG_ITEM_RANGED_INTEGER:
523             i_margin = 8;
524             break;
525         case CONFIG_ITEM_BOOL:
526             i_margin = 10;
527             break;
528         case CONFIG_ITEM_KEY_BEFORE_10_3:
529             i_margin = 10;
530             break;
531         case CONFIG_ITEM_KEY_AFTER_10_3:
532             i_margin = 9;
533             break;
534         case CONFIG_ITEM_MODULE_LIST:
535             i_margin = 11;
536             break;
537         default:
538             i_margin = 23;
539             break;
540         }
541         break;
542     case CONFIG_ITEM_MODULE:
543         switch( i_lastItem )
544         {
545         case CONFIG_ITEM_STRING:
546             i_margin = 8;
547             break;
548         case CONFIG_ITEM_STRING_LIST:
549             i_margin = 7;
550             break;
551         case CONFIG_ITEM_FILE:
552             i_margin = 6;
553             break;
554         case CONFIG_ITEM_MODULE:
555             i_margin = 5;
556             break;
557         case CONFIG_ITEM_INTEGER:
558             i_margin = 7;
559             break;
560         case CONFIG_ITEM_RANGED_INTEGER:
561             i_margin = 6;
562             break;
563         case CONFIG_ITEM_BOOL:
564             i_margin = 8;
565             break;
566         case CONFIG_ITEM_KEY_BEFORE_10_3:
567             i_margin = 8;
568             break;
569         case CONFIG_ITEM_KEY_AFTER_10_3:
570             i_margin = 7;
571             break;
572         case CONFIG_ITEM_MODULE_LIST:
573             i_margin = 9;
574             break;
575         default:
576             i_margin = 20;
577             break;
578         }
579         break;
580     case CONFIG_ITEM_INTEGER:
581         switch( i_lastItem )
582         {
583         case CONFIG_ITEM_STRING:
584             i_margin = 8;
585             break;
586         case CONFIG_ITEM_STRING_LIST:
587             i_margin = 7;
588             break;
589         case CONFIG_ITEM_FILE:
590             i_margin = 6;
591             break;
592         case CONFIG_ITEM_MODULE:
593             i_margin = 4;
594             break;
595         case CONFIG_ITEM_INTEGER:
596             i_margin = 7;
597             break;
598         case CONFIG_ITEM_RANGED_INTEGER:
599             i_margin = 5;
600             break;
601         case CONFIG_ITEM_BOOL:
602             i_margin = 7;
603             break;
604         case CONFIG_ITEM_KEY_BEFORE_10_3:
605             i_margin = 7;
606             break;
607         case CONFIG_ITEM_KEY_AFTER_10_3:
608             i_margin = 6;
609             break;
610         case CONFIG_ITEM_MODULE_LIST:
611             i_margin = 8;
612             break;
613         default:
614             i_margin = 20;
615             break;
616         }
617         break;
618     case CONFIG_ITEM_RANGED_INTEGER:
619         switch( i_lastItem )
620         {
621         case CONFIG_ITEM_STRING:
622             i_margin = 8;
623             break;
624         case CONFIG_ITEM_STRING_LIST:
625             i_margin = 7;
626             break;
627         case CONFIG_ITEM_FILE:
628             i_margin = 8;
629             break;
630         case CONFIG_ITEM_MODULE:
631             i_margin = 4;
632             break;
633         case CONFIG_ITEM_INTEGER:
634             i_margin = 7;
635             break;
636         case CONFIG_ITEM_RANGED_INTEGER:
637             i_margin = 5;
638             break;
639         case CONFIG_ITEM_BOOL:
640             i_margin = 7;
641             break;
642         case CONFIG_ITEM_KEY_BEFORE_10_3:
643             i_margin = 7;
644             break;
645         case CONFIG_ITEM_KEY_AFTER_10_3:
646             i_margin = 6;
647             break;
648         case CONFIG_ITEM_MODULE_LIST:
649             i_margin = 8;
650             break;
651         default:
652             i_margin = 20;
653             break;
654         }
655         break;
656     case CONFIG_ITEM_BOOL:
657         switch( i_lastItem )
658         {
659         case CONFIG_ITEM_STRING:
660             i_margin = 10;
661             break;
662         case CONFIG_ITEM_STRING_LIST:
663             i_margin = 9;
664             break;
665         case CONFIG_ITEM_FILE:
666             i_margin = 8;
667             break;
668         case CONFIG_ITEM_MODULE:
669             i_margin = 6;
670             break;
671         case CONFIG_ITEM_INTEGER:
672             i_margin = 9;
673             break;
674         case CONFIG_ITEM_RANGED_INTEGER:
675             i_margin = 7;
676             break;
677         case CONFIG_ITEM_BOOL:
678             i_margin = 7;
679             break;
680         case CONFIG_ITEM_KEY_BEFORE_10_3:
681             i_margin = 7;
682             break;
683         case CONFIG_ITEM_KEY_AFTER_10_3:
684             i_margin = 5;
685             break;
686         case CONFIG_ITEM_MODULE_LIST:
687             i_margin = 10;
688             break;
689         default:
690             i_margin = 20;
691             break;
692         }
693         break;
694     case CONFIG_ITEM_KEY_BEFORE_10_3:
695         switch( i_lastItem )
696         {
697         case CONFIG_ITEM_STRING:
698             i_margin = 6;
699             break;
700         case CONFIG_ITEM_STRING_LIST:
701             i_margin = 5;
702             break;
703         case CONFIG_ITEM_FILE:
704             i_margin = 4;
705             break;
706         case CONFIG_ITEM_MODULE:
707             i_margin = 2;
708             break;
709         case CONFIG_ITEM_INTEGER:
710             i_margin = 5;
711             break;
712         case CONFIG_ITEM_RANGED_INTEGER:
713             i_margin = 3;
714             break;
715         case CONFIG_ITEM_BOOL:
716             i_margin = 3;
717             break;
718         case CONFIG_ITEM_KEY_BEFORE_10_3:
719             i_margin = 10;
720             break;
721         case CONFIG_ITEM_KEY_AFTER_10_3:
722             i_margin = 6;
723             break;
724         case CONFIG_ITEM_MODULE_LIST:
725             i_margin = 6;
726             break;
727         default:
728             i_margin = 18;
729             break;
730         }
731         break;
732     case CONFIG_ITEM_KEY_AFTER_10_3:
733         switch( i_lastItem )
734         {
735         case CONFIG_ITEM_STRING:
736             i_margin = 8;
737             break;
738         case CONFIG_ITEM_STRING_LIST:
739             i_margin = 7;
740             break;
741         case CONFIG_ITEM_FILE:
742             i_margin = 6;
743             break;
744         case CONFIG_ITEM_MODULE:
745             i_margin = 6;
746             break;
747         case CONFIG_ITEM_INTEGER:
748             i_margin = 7;
749             break;
750         case CONFIG_ITEM_RANGED_INTEGER:
751             i_margin = 5;
752             break;
753         case CONFIG_ITEM_BOOL:
754             i_margin = 7;
755             break;
756         case CONFIG_ITEM_KEY_BEFORE_10_3:
757             i_margin = 7;
758             break;
759         case CONFIG_ITEM_KEY_AFTER_10_3:
760             i_margin = 8;
761             break;
762         case CONFIG_ITEM_MODULE_LIST:
763             i_margin = 10;
764             break;
765         default:
766             i_margin = 20;
767             break;
768         }
769         break;
770     case CONFIG_ITEM_MODULE_LIST:
771         switch( i_lastItem )
772         {
773         case CONFIG_ITEM_STRING:
774             i_margin = 10;
775             break;
776         case CONFIG_ITEM_STRING_LIST:
777             i_margin = 7;
778             break;
779         case CONFIG_ITEM_FILE:
780             i_margin = 6;
781             break;
782         case CONFIG_ITEM_MODULE:
783             i_margin = 6;
784             break;
785         case CONFIG_ITEM_INTEGER:
786             i_margin = 9;
787             break;
788         case CONFIG_ITEM_RANGED_INTEGER:
789             i_margin = 5;
790             break;
791         case CONFIG_ITEM_BOOL:
792             i_margin = 7;
793             break;
794         case CONFIG_ITEM_KEY_BEFORE_10_3:
795             i_margin = 7;
796             break;
797         case CONFIG_ITEM_KEY_AFTER_10_3:
798             i_margin = 5;
799             break;
800         case CONFIG_ITEM_MODULE_LIST:
801             i_margin = 8;
802             break;
803         default:
804             i_margin = 20;
805             break;
806         }
807         break;
808     default:
809         i_margin = 20;
810         break;
811     }
812     return i_margin;
813 }
814
815 + (VLCConfigControl *)newControl: (module_config_t *)_p_item
816                       withView: (NSView *)o_parent_view
817 {
818     VLCConfigControl *p_control = NULL;
819     /* Skip depracated options */
820     if( _p_item->psz_current )
821     {
822         return NULL;
823     }
824
825     switch( _p_item->i_type )
826     {
827     case CONFIG_ITEM_STRING:
828         if( !_p_item->i_list )
829         {
830             p_control = [[StringConfigControl alloc]
831                     initWithItem: _p_item
832                     withView: o_parent_view];
833         }
834         else
835         {
836             p_control = [[StringListConfigControl alloc]
837                     initWithItem: _p_item
838                     withView: o_parent_view];
839         }
840         break;
841     case CONFIG_ITEM_FILE:
842     case CONFIG_ITEM_DIRECTORY:
843         p_control = [[FileConfigControl alloc]
844                     initWithItem: _p_item
845                     withView: o_parent_view];
846         break;
847     case CONFIG_ITEM_MODULE:
848     case CONFIG_ITEM_MODULE_CAT:
849         p_control = [[ModuleConfigControl alloc]
850                     initWithItem: _p_item
851                     withView: o_parent_view];
852         break;
853     case CONFIG_ITEM_INTEGER:
854         if( _p_item->i_list )
855         {
856             p_control = [[IntegerListConfigControl alloc]
857                         initWithItem: _p_item
858                         withView: o_parent_view];
859         }
860         else if( _p_item->min.i != 0 || _p_item->max.i != 0 )
861         {
862             p_control = [[RangedIntegerConfigControl alloc]
863                         initWithItem: _p_item
864                         withView: o_parent_view];
865         }
866         else
867         {
868             p_control = [[IntegerConfigControl alloc]
869                         initWithItem: _p_item
870                         withView: o_parent_view];
871         }
872         break;
873     case CONFIG_ITEM_BOOL:
874         p_control = [[BoolConfigControl alloc]
875                     initWithItem: _p_item
876                     withView: o_parent_view];
877         break;
878     case CONFIG_ITEM_FLOAT:
879         if( _p_item->min.f != 0 || _p_item->max.f != 0 )
880         {
881             p_control = [[RangedFloatConfigControl alloc]
882                         initWithItem: _p_item
883                         withView: o_parent_view];
884         }
885         else
886         {
887             p_control = [[FloatConfigControl alloc]
888                         initWithItem: _p_item
889                         withView: o_parent_view];
890         }
891         break;
892     case CONFIG_ITEM_KEY:
893         if( MACOS_VERSION < 10.3 )
894         {
895             p_control = [[KeyConfigControlBefore103 alloc]
896                         initWithItem: _p_item
897                         withView: o_parent_view];
898         }
899         else
900         {
901             p_control = [[KeyConfigControlAfter103 alloc]
902                         initWithItem: _p_item
903                         withView: o_parent_view];
904         }
905         break;
906     case CONFIG_ITEM_MODULE_LIST:
907     case CONFIG_ITEM_MODULE_LIST_CAT:
908         p_control = [[ModuleListConfigControl alloc]
909                     initWithItem: _p_item
910                     withView: o_parent_view];
911         break;
912     default:
913         break;
914     }
915     return p_control;
916 }
917
918 - (NSString *)getName
919 {
920     return [[VLCMain sharedInstance] localizedString: psz_name];
921 }
922
923 - (int)getType
924 {
925     return i_type;
926 }
927
928 - (int)getViewType
929 {
930     return i_view_type;
931 }
932
933 - (BOOL)isAdvanced
934 {
935     return b_advanced;
936 }
937
938 - (int)intValue
939 {
940     return 0;
941 }
942
943 - (float)floatValue
944 {
945     return 0;
946 }
947
948 - (char *)stringValue
949 {
950     return NULL;
951 }
952
953 - (void)applyChanges
954 {
955     vlc_value_t val;
956     switch( p_item->i_type )
957     {
958     case CONFIG_ITEM_STRING:
959     case CONFIG_ITEM_FILE:
960     case CONFIG_ITEM_DIRECTORY:
961     case CONFIG_ITEM_MODULE:
962     case CONFIG_ITEM_MODULE_LIST:
963     case CONFIG_ITEM_MODULE_LIST_CAT:
964         config_PutPsz( VLCIntf, psz_name, [self stringValue] );
965         break;
966     case CONFIG_ITEM_KEY:
967         /* So you don't need to restart to have the changes take effect */
968         val.i_int = [self intValue];
969         var_Set( VLCIntf->p_libvlc, psz_name, val );
970     case CONFIG_ITEM_INTEGER:
971     case CONFIG_ITEM_BOOL:
972         config_PutInt( VLCIntf, psz_name, [self intValue] );
973         break;
974     case CONFIG_ITEM_FLOAT:
975         config_PutFloat( VLCIntf, psz_name, [self floatValue] );
976         break;
977     }
978 }
979
980 - (int)getLabelSize
981 {
982     return [o_label frame].size.width;
983 }
984
985 - (void) alignWithXPosition:(int)i_xPos;
986 {
987     /* FIXME: not implemented atm, but created to shut up the warning
988      * about "method definition not found" -- FK @ 7/24/05 */
989 }
990 @end
991
992 @implementation StringConfigControl
993 - (id) initWithItem: (module_config_t *)_p_item
994            withView: (NSView *)o_parent_view
995 {
996     NSRect mainFrame = [o_parent_view frame];
997     NSString *o_labelString, *o_textfieldString, *o_textfieldTooltip;
998     mainFrame.size.height = 22;
999     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN;
1000     mainFrame.origin.x = LEFTMARGIN;
1001     mainFrame.origin.y = 0;
1002
1003     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1004     {
1005         i_view_type = CONFIG_ITEM_STRING;
1006         /* add the label */
1007         if( p_item->psz_text )
1008             o_labelString = [[VLCMain sharedInstance]
1009                                 localizedString: (char *)p_item->psz_text];
1010         else
1011             o_labelString = [NSString stringWithString:@""];
1012         ADD_LABEL( o_label, mainFrame, 0, -3, o_labelString )
1013         [o_label setAutoresizingMask:NSViewNotSizable ];
1014         [self addSubview: o_label];
1015
1016         /* build the textfield */
1017         o_textfieldTooltip = [[VLCMain sharedInstance] wrapString:
1018             [[VLCMain sharedInstance] localizedString: (char *)p_item->psz_longtext]
1019                                          toWidth: PREFS_WRAP];
1020         if( p_item->value.psz )
1021             o_textfieldString = [[VLCMain sharedInstance]
1022                                     localizedString: (char *)p_item->value.psz];
1023         else
1024             o_textfieldString = [NSString stringWithString: @""];
1025         ADD_TEXTFIELD( o_textfield, mainFrame, [o_label frame].size.width + 2,
1026                         0, mainFrame.size.width - [o_label frame].size.width -
1027                         2, o_textfieldTooltip, o_textfieldString )
1028         [o_textfield setAutoresizingMask:NSViewWidthSizable ];
1029         [self addSubview: o_textfield];
1030     }
1031     return self;
1032 }
1033
1034 - (void) alignWithXPosition:(int)i_xPos
1035 {
1036     NSRect frame;
1037     NSRect superFrame = [self frame];
1038     frame = [o_label frame];
1039     frame.origin.x = i_xPos - frame.size.width - 3;
1040     [o_label setFrame:frame];
1041
1042     frame = [o_textfield frame];
1043     frame.origin.x = i_xPos + 2;
1044     frame.size.width = superFrame.size.width - frame.origin.x - 1;
1045     [o_textfield setFrame:frame];
1046 }
1047
1048 - (void)dealloc
1049 {
1050     [o_textfield release];
1051     [super dealloc];
1052 }
1053
1054 - (char *)stringValue
1055 {
1056     return strdup( [[VLCMain sharedInstance] delocalizeString:
1057                         [o_textfield stringValue]] );
1058 }
1059 @end
1060
1061 @implementation StringListConfigControl
1062 - (id) initWithItem: (module_config_t *)_p_item
1063            withView: (NSView *)o_parent_view
1064 {
1065     NSRect mainFrame = [o_parent_view frame];
1066     NSString *o_labelString, *o_textfieldTooltip;
1067     mainFrame.size.height = 22;
1068     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN + 1;
1069     mainFrame.origin.x = LEFTMARGIN;
1070     mainFrame.origin.y = 0;
1071
1072     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1073     {
1074         int i_index;
1075         i_view_type = CONFIG_ITEM_STRING_LIST;
1076         /* add the label */
1077         if( p_item->psz_text )
1078             o_labelString = [[VLCMain sharedInstance]
1079                                 localizedString: (char *)p_item->psz_text];
1080         else
1081             o_labelString = [NSString stringWithString:@""];
1082         ADD_LABEL( o_label, mainFrame, 0, -3, o_labelString )
1083         [o_label setAutoresizingMask:NSViewNotSizable ];
1084         [self addSubview: o_label];
1085
1086         /* build the textfield */
1087         o_textfieldTooltip = [[VLCMain sharedInstance] wrapString:
1088             [[VLCMain sharedInstance]
1089                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
1090         ADD_COMBO( o_combo, mainFrame, [o_label frame].size.width,
1091             -2, 0, o_textfieldTooltip )
1092         [o_combo setAutoresizingMask:NSViewWidthSizable ];
1093         for( i_index = 0; i_index < p_item->i_list; i_index++ )
1094             if( p_item->value.psz &&
1095                 !strcmp( p_item->value.psz, p_item->ppsz_list[i_index] ) )
1096                 [o_combo selectItemAtIndex: i_index];
1097         [self addSubview: o_combo];
1098     }
1099     return self;
1100 }
1101
1102 - (void) alignWithXPosition:(int)i_xPos
1103 {
1104     NSRect frame;
1105     NSRect superFrame = [self frame];
1106     frame = [o_label frame];
1107     frame.origin.x = i_xPos - frame.size.width - 3;
1108     [o_label setFrame:frame];
1109
1110     frame = [o_combo frame];
1111     frame.origin.x = i_xPos + 2;
1112     frame.size.width = superFrame.size.width - frame.origin.x + 2;
1113     [o_combo setFrame:frame];
1114 }
1115
1116 - (void)dealloc
1117 {
1118     [o_combo release];
1119     [super dealloc];
1120 }
1121
1122 - (char *)stringValue
1123 {
1124     if( [o_combo indexOfSelectedItem] >= 0 )
1125         return strdup( p_item->ppsz_list[[o_combo indexOfSelectedItem]] );
1126     else
1127         return strdup( [[VLCMain sharedInstance]
1128                             delocalizeString: [o_combo stringValue]] );
1129 }
1130 @end
1131
1132 @implementation StringListConfigControl (NSComboBoxDataSource)
1133 - (int)numberOfItemsInComboBox:(NSComboBox *)aComboBox
1134 {
1135         return p_item->i_list;
1136 }
1137
1138 - (id)comboBox:(NSComboBox *)aComboBox objectValueForItemAtIndex:(int)i_index
1139 {
1140     if( p_item->ppsz_list_text && p_item->ppsz_list_text[i_index] )
1141     {
1142         return [[VLCMain sharedInstance]
1143                     localizedString: (char *)p_item->ppsz_list_text[i_index]];
1144     } else return [[VLCMain sharedInstance]
1145                     localizedString: (char *)p_item->ppsz_list[i_index]];
1146 }
1147 @end
1148
1149 @implementation FileConfigControl
1150 - (id) initWithItem: (module_config_t *)_p_item
1151            withView: (NSView *)o_parent_view
1152 {
1153     NSRect mainFrame = [o_parent_view frame];
1154     NSString *o_labelString, *o_buttonTooltip, *o_textfieldString;
1155     NSString *o_textfieldTooltip;
1156     mainFrame.size.height = 46;
1157     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN;
1158     mainFrame.origin.x = LEFTMARGIN;
1159     mainFrame.origin.y = 0;
1160
1161     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1162     {
1163         i_view_type = CONFIG_ITEM_FILE;
1164
1165         /* is it a directory */
1166         b_directory = ( [self getType] == CONFIG_ITEM_DIRECTORY ) ? YES : NO;
1167
1168         /* add the label */
1169         if( p_item->psz_text )
1170             o_labelString = [[VLCMain sharedInstance]
1171                                 localizedString: (char *)p_item->psz_text];
1172         else
1173             o_labelString = [NSString stringWithString:@""];
1174         ADD_LABEL( o_label, mainFrame, 0, 3, o_labelString )
1175         [o_label setAutoresizingMask:NSViewNotSizable ];
1176         [self addSubview: o_label];
1177
1178         /* build the button */
1179         o_buttonTooltip = [[VLCMain sharedInstance]
1180                 wrapString: [[VLCMain sharedInstance]
1181                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
1182         ADD_RIGHT_BUTTON( o_button, mainFrame, 0, 0, o_buttonTooltip,
1183                             _NS("Browse...") )
1184         [o_button setAutoresizingMask:NSViewMinXMargin ];
1185         [self addSubview: o_button];
1186
1187         /* build the textfield */
1188         o_textfieldTooltip = [[VLCMain sharedInstance] wrapString:
1189             [[VLCMain sharedInstance]
1190                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
1191         if( p_item->value.psz )
1192             o_textfieldString = [[VLCMain sharedInstance]
1193                                     localizedString: (char *)p_item->value.psz];
1194         else
1195             o_textfieldString = [NSString stringWithString: @""];
1196         ADD_TEXTFIELD( o_textfield, mainFrame, 12, 2, mainFrame.size.width -
1197                         8 - [o_button frame].size.width,
1198                         o_textfieldTooltip, o_textfieldString )
1199         [o_textfield setAutoresizingMask:NSViewWidthSizable ];
1200         [self addSubview: o_textfield];
1201     }
1202     return self;
1203 }
1204
1205 - (void) alignWithXPosition:(int)i_xPos
1206 {
1207     ;
1208 }
1209
1210 - (void)dealloc
1211 {
1212     [o_textfield release];
1213     [o_button release];
1214     [super dealloc];
1215 }
1216
1217 - (IBAction)openFileDialog: (id)sender
1218 {
1219     NSOpenPanel *o_open_panel = [NSOpenPanel openPanel];
1220
1221     [o_open_panel setTitle: (b_directory)?
1222         _NS("Select a directory"):_NS("Select a file")];
1223     [o_open_panel setPrompt: _NS("Select")];
1224     [o_open_panel setAllowsMultipleSelection: NO];
1225     [o_open_panel setCanChooseFiles: !b_directory];
1226     [o_open_panel setCanChooseDirectories: b_directory];
1227     [o_open_panel beginSheetForDirectory:nil
1228         file:nil
1229         types:nil
1230         modalForWindow:[sender window]
1231         modalDelegate: self
1232         didEndSelector: @selector(pathChosenInPanel: 
1233                         withReturn:
1234                         contextInfo:)
1235         contextInfo: nil];
1236 }
1237
1238 - (void)pathChosenInPanel:(NSOpenPanel *)o_sheet
1239     withReturn:(int)i_return_code contextInfo:(void  *)o_context_info
1240 {
1241     if( i_return_code == NSOKButton )
1242     {
1243         NSString *o_path = [[o_sheet filenames] objectAtIndex: 0];
1244         [o_textfield setStringValue: o_path];
1245     }
1246 }
1247
1248 - (char *)stringValue
1249 {
1250     if( [[o_textfield stringValue] length] != 0)
1251         return strdup( [[o_textfield stringValue] fileSystemRepresentation] );
1252     else
1253         return NULL;
1254 }
1255 @end
1256
1257 @implementation ModuleConfigControl
1258 - (id) initWithItem: (module_config_t *)_p_item
1259            withView: (NSView *)o_parent_view
1260 {
1261     NSRect mainFrame = [o_parent_view frame];
1262     NSString *o_labelString, *o_popupTooltip;
1263     mainFrame.size.height = 22;
1264     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN + 1;
1265     mainFrame.origin.x = LEFTMARGIN;
1266     mainFrame.origin.y = 0;
1267
1268     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1269     {
1270         int i_index;
1271         vlc_list_t *p_list;
1272         module_t *p_parser;
1273         module_config_t *p_end;
1274         i_view_type = CONFIG_ITEM_MODULE;
1275
1276         /* add the label */
1277         if( p_item->psz_text )
1278             o_labelString = [[VLCMain sharedInstance]
1279                                 localizedString: (char *)p_item->psz_text];
1280         else
1281             o_labelString = [NSString stringWithString:@""];
1282         ADD_LABEL( o_label, mainFrame, 0, -1, o_labelString )
1283         [o_label setAutoresizingMask:NSViewNotSizable ];
1284         [self addSubview: o_label];
1285
1286         /* build the popup */
1287         o_popupTooltip = [[VLCMain sharedInstance] wrapString:
1288             [[VLCMain sharedInstance]
1289                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
1290         ADD_POPUP( o_popup, mainFrame, [o_label frame].size.width,
1291             -2, 0, o_popupTooltip )
1292         [o_popup setAutoresizingMask:NSViewWidthSizable ];
1293         [o_popup addItemWithTitle: _NS("Default")];
1294         [[o_popup lastItem] setTag: -1];
1295         [o_popup selectItem: [o_popup lastItem]];
1296
1297         /* build a list of available modules */
1298         p_list = vlc_list_find( VLCIntf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1299         for( i_index = 0; i_index < p_list->i_count; i_index++ )
1300         {
1301             p_parser = (module_t *)p_list->p_values[i_index].p_object;
1302             p_end = p_item + p_parser->confsize;
1303             if( p_item->i_type == CONFIG_ITEM_MODULE )
1304             {
1305                 if( !strcmp( p_parser->psz_capability,
1306                             p_item->psz_type ) )
1307                 {
1308                     NSString *o_description = [[VLCMain sharedInstance]
1309                         localizedString: (char *)p_parser->psz_longname];
1310                     [o_popup addItemWithTitle: o_description];
1311
1312                     if( p_item->value.psz &&
1313                 !strcmp( p_item->value.psz, p_parser->psz_object_name ) )
1314                         [o_popup selectItem:[o_popup lastItem]];
1315                 }
1316             }
1317             else
1318             {
1319                 module_config_t *p_config;
1320                 if( !strcmp( p_parser->psz_object_name, "main" ) )
1321                       continue;
1322
1323                 p_config = p_parser->p_config;
1324                 if( p_config ) do
1325                 {
1326                     /* Hack: required subcategory is stored in i_min */
1327                     if( p_config->i_type == CONFIG_SUBCATEGORY &&
1328                         p_config->value.i == p_item->min.i )
1329                     {
1330                         NSString *o_description = [[VLCMain sharedInstance]
1331                             localizedString: (char *)p_parser->psz_longname];
1332                         [o_popup addItemWithTitle: o_description];
1333
1334                         if( p_item->value.psz && !strcmp(p_item->value.psz,
1335                                                 p_parser->psz_object_name) )
1336                             [o_popup selectItem:[o_popup lastItem]];
1337                     }
1338                 } while( p_item < p_end && p_config++ );
1339             }
1340         }
1341         vlc_list_release( p_list );
1342         [self addSubview: o_popup];
1343     }
1344     return self;
1345 }
1346
1347 - (void) alignWithXPosition:(int)i_xPos
1348 {
1349     NSRect frame;
1350     NSRect superFrame = [self frame];
1351     frame = [o_label frame];
1352     frame.origin.x = i_xPos - frame.size.width - 3;
1353     [o_label setFrame:frame];
1354
1355     frame = [o_popup frame];
1356     frame.origin.x = i_xPos - 1;
1357     frame.size.width = superFrame.size.width - frame.origin.x + 2;
1358     [o_popup setFrame:frame];
1359 }
1360
1361 - (void)dealloc
1362 {
1363     [o_popup release];
1364     [super dealloc];
1365 }
1366
1367 - (char *)stringValue
1368 {
1369     NSString *newval = [o_popup titleOfSelectedItem];
1370     char *returnval = NULL;
1371     int i_index;
1372     vlc_list_t *p_list;
1373     module_t *p_parser;
1374     module_config_t *p_end;
1375
1376     p_list = vlc_list_find( VLCIntf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
1377     for( i_index = 0; i_index < p_list->i_count; i_index++ )
1378     {
1379         p_parser = (module_t *)p_list->p_values[i_index].p_object;
1380          p_end = p_item + p_parser->confsize;
1381         if( p_item->i_type == CONFIG_ITEM_MODULE )
1382         {
1383             if( !strcmp( p_parser->psz_capability,
1384                     p_item->psz_type ) )
1385             {
1386                 NSString *o_description = [[VLCMain sharedInstance]
1387                     localizedString: (char *)p_parser->psz_longname];
1388                 if( [newval isEqualToString: o_description] )
1389                 {
1390                     returnval = strdup(p_parser->psz_object_name);
1391                     break;
1392                 }
1393             }
1394         }
1395         else
1396         {
1397             module_config_t *p_config;
1398             if( !strcmp( p_parser->psz_object_name, "main" ) )
1399                   continue;
1400
1401             p_config = p_parser->p_config;
1402             if( p_config ) do
1403             {
1404                 /* Hack: required subcategory is stored in i_min */
1405                 if( p_config->i_type == CONFIG_SUBCATEGORY &&
1406                     p_config->value.i == p_item->min.i )
1407                 {
1408                     NSString *o_description = [[VLCMain sharedInstance]
1409                         localizedString: (char *)p_parser->psz_longname];
1410                     if( [newval isEqualToString: o_description] )
1411                     {
1412                         returnval = strdup(p_parser->psz_object_name);
1413                         break;
1414                     }
1415                 }
1416             } while( p_item < p_end && p_config++ );
1417         }
1418     }
1419     vlc_list_release( p_list );
1420     return returnval;
1421 }
1422 @end
1423
1424 @implementation IntegerConfigControl
1425 - (id) initWithItem: (module_config_t *)_p_item
1426            withView: (NSView *)o_parent_view
1427 {
1428     NSRect mainFrame = [o_parent_view frame];
1429     NSString *o_labelString, *o_tooltip, *o_textfieldString;
1430     mainFrame.size.height = 23;
1431     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN + 1;
1432     mainFrame.origin.x = LEFTMARGIN;
1433     mainFrame.origin.y = 0;
1434
1435     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1436     {
1437         i_view_type = CONFIG_ITEM_INTEGER;
1438
1439         o_tooltip = [[VLCMain sharedInstance] wrapString:
1440             [[VLCMain sharedInstance]
1441                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
1442
1443         /* add the label */
1444         if( p_item->psz_text )
1445             o_labelString = [[VLCMain sharedInstance]
1446                                 localizedString: (char *)p_item->psz_text];
1447         else
1448             o_labelString = [NSString stringWithString:@""];
1449         ADD_LABEL( o_label, mainFrame, 0, -3, o_labelString )
1450         [o_label setAutoresizingMask:NSViewNotSizable ];
1451         [self addSubview: o_label];
1452
1453         /* build the stepper */
1454         ADD_STEPPER( o_stepper, mainFrame, mainFrame.size.width - 19,
1455             0, o_tooltip, -1600, 1600)
1456         [o_stepper setIntValue: p_item->value.i];
1457         [o_stepper setAutoresizingMask:NSViewMaxXMargin ];
1458         [self addSubview: o_stepper];
1459
1460         /* build the textfield */
1461         if( p_item->value.psz )
1462             o_textfieldString = [[VLCMain sharedInstance]
1463                                     localizedString: (char *)p_item->value.psz];
1464         else
1465             o_textfieldString = [NSString stringWithString: @""];
1466         ADD_TEXTFIELD( o_textfield, mainFrame, mainFrame.size.width - 19 - 52,
1467             1, 49, o_tooltip, @"" )
1468         [o_textfield setIntValue: p_item->value.i];
1469         [o_textfield setDelegate: self];
1470         [[NSNotificationCenter defaultCenter] addObserver: self
1471             selector: @selector(textfieldChanged:)
1472             name: NSControlTextDidChangeNotification
1473             object: o_textfield];
1474         [o_textfield setAutoresizingMask:NSViewMaxXMargin ];
1475         [self addSubview: o_textfield];
1476     }
1477     return self;
1478 }
1479
1480 - (void) alignWithXPosition:(int)i_xPos
1481 {
1482     NSRect frame;
1483     frame = [o_label frame];
1484     frame.origin.x = i_xPos - frame.size.width - 3;
1485     [o_label setFrame:frame];
1486
1487     frame = [o_textfield frame];
1488     frame.origin.x = i_xPos + 2;
1489     [o_textfield setFrame:frame];
1490
1491     frame = [o_stepper frame];
1492     frame.origin.x = i_xPos + [o_textfield frame].size.width + 5;
1493     [o_stepper setFrame:frame];
1494 }
1495
1496 - (void)dealloc
1497 {
1498     [o_stepper release];
1499     [o_textfield release];
1500     [super dealloc];
1501 }
1502
1503 - (IBAction)stepperChanged:(id)sender
1504 {
1505     [o_textfield setIntValue: [o_stepper intValue]];
1506 }
1507
1508 - (void)textfieldChanged:(NSNotification *)o_notification
1509 {
1510     [o_stepper setIntValue: [o_textfield intValue]];
1511 }
1512
1513 - (int)intValue
1514 {
1515     return [o_textfield intValue];
1516 }
1517
1518 @end
1519
1520 @implementation IntegerListConfigControl
1521
1522 - (id) initWithItem: (module_config_t *)_p_item
1523            withView: (NSView *)o_parent_view
1524 {
1525     NSRect mainFrame = [o_parent_view frame];
1526     NSString *o_labelString, *o_textfieldTooltip;
1527     mainFrame.size.height = 22;
1528     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN + 1;
1529     mainFrame.origin.x = LEFTMARGIN;
1530     mainFrame.origin.y = 0;
1531
1532     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1533     {
1534         int i_index;
1535         i_view_type = CONFIG_ITEM_STRING_LIST;
1536
1537         /* add the label */
1538         if( p_item->psz_text )
1539             o_labelString = [[VLCMain sharedInstance]
1540                 localizedString: (char *)p_item->psz_text];
1541         else
1542             o_labelString = [NSString stringWithString:@""];
1543         ADD_LABEL( o_label, mainFrame, 0, -3, o_labelString )
1544         [o_label setAutoresizingMask:NSViewNotSizable ];
1545         [self addSubview: o_label];
1546
1547         /* build the textfield */
1548         o_textfieldTooltip = [[VLCMain sharedInstance] wrapString:
1549             [[VLCMain sharedInstance]
1550                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
1551         ADD_COMBO( o_combo, mainFrame, [o_label frame].size.width,
1552             -2, 0, o_textfieldTooltip )
1553         [o_combo setAutoresizingMask:NSViewWidthSizable ];
1554         for( i_index = 0; i_index < p_item->i_list; i_index++ )
1555         {
1556             if( p_item->value.i == p_item->pi_list[i_index] )
1557             {
1558                 [o_combo selectItemAtIndex: i_index];
1559             }
1560         }
1561         [self addSubview: o_combo];
1562     }
1563     return self;
1564 }
1565
1566 - (void) alignWithXPosition:(int)i_xPos
1567 {
1568     NSRect frame;
1569     NSRect superFrame = [self frame];
1570     frame = [o_label frame];
1571     frame.origin.x = i_xPos - frame.size.width - 3;
1572     [o_label setFrame:frame];
1573
1574     frame = [o_combo frame];
1575     frame.origin.x = i_xPos + 2;
1576     frame.size.width = superFrame.size.width - frame.origin.x + 2;
1577     [o_combo setFrame:frame];
1578 }
1579
1580 - (void)dealloc
1581 {
1582     [o_combo release];
1583     [super dealloc];
1584 }
1585
1586 - (int)intValue
1587 {
1588     if( [o_combo indexOfSelectedItem] >= 0 )
1589         return p_item->pi_list[[o_combo indexOfSelectedItem]];
1590     else
1591         return [o_combo intValue];
1592 }
1593 @end
1594
1595 @implementation IntegerListConfigControl (NSComboBoxDataSource)
1596 - (int)numberOfItemsInComboBox:(NSComboBox *)aComboBox
1597 {
1598     return p_item->i_list;
1599 }
1600
1601 - (id)comboBox:(NSComboBox *)aComboBox objectValueForItemAtIndex:(int)i_index
1602 {
1603     if( p_item->ppsz_list_text && p_item->ppsz_list_text[i_index] )
1604         return [[VLCMain sharedInstance]
1605                     localizedString: (char *)p_item->ppsz_list_text[i_index]];
1606     else
1607         return [NSString stringWithFormat: @"%i", p_item->pi_list[i_index]];
1608 }
1609 @end
1610
1611 @implementation RangedIntegerConfigControl
1612 - (id) initWithItem: (module_config_t *)_p_item
1613            withView: (NSView *)o_parent_view
1614 {
1615     NSRect mainFrame = [o_parent_view frame];
1616     NSString *o_labelString, *o_tooltip;
1617     mainFrame.size.height = 50;
1618     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN;
1619     mainFrame.origin.x = LEFTMARGIN;
1620     mainFrame.origin.y = 0;
1621
1622     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1623     {
1624         i_view_type = CONFIG_ITEM_RANGED_INTEGER;
1625
1626         /* add the label */
1627         if( p_item->psz_text )
1628             o_labelString = [[VLCMain sharedInstance]
1629                                 localizedString: (char *)p_item->psz_text];
1630         else
1631             o_labelString = [NSString stringWithString:@""];
1632         ADD_LABEL( o_label, mainFrame, 0, -3, o_labelString )
1633         [o_label setAutoresizingMask:NSViewNotSizable ];
1634         [self addSubview: o_label];
1635
1636         /* build the textfield */
1637         o_tooltip = [[VLCMain sharedInstance] wrapString:
1638             [[VLCMain sharedInstance]
1639                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
1640         ADD_TEXTFIELD( o_textfield, mainFrame, [o_label frame].size.width + 2,
1641             28, 49, o_tooltip, @"" )
1642         [o_textfield setIntValue: p_item->value.i];
1643         [o_textfield setAutoresizingMask:NSViewMaxXMargin ];
1644         [o_textfield setDelegate: self];
1645         [[NSNotificationCenter defaultCenter] addObserver: self
1646             selector: @selector(textfieldChanged:)
1647             name: NSControlTextDidChangeNotification
1648             object: o_textfield];
1649         [self addSubview: o_textfield];
1650
1651         /* build the mintextfield */
1652         ADD_LABEL( o_textfield_min, mainFrame, 12, -30, @"-8888" )
1653         [o_textfield_min setIntValue: p_item->min.i];
1654         [o_textfield_min setAutoresizingMask:NSViewMaxXMargin ];
1655         [o_textfield_min setAlignment:NSRightTextAlignment];
1656         [self addSubview: o_textfield_min];
1657
1658         /* build the maxtextfield */
1659         ADD_LABEL( o_textfield_max, mainFrame,
1660                     mainFrame.size.width - 31, -30, @"8888" )
1661         [o_textfield_max setIntValue: p_item->max.i];
1662         [o_textfield_max setAutoresizingMask:NSViewMinXMargin ];
1663         [self addSubview: o_textfield_max];
1664
1665         /* build the slider */
1666         ADD_SLIDER( o_slider, mainFrame, [o_textfield_min frame].origin.x +
1667             [o_textfield_min frame].size.width + 6, -1, mainFrame.size.width -
1668             [o_textfield_max frame].size.width -
1669             [o_textfield_max frame].size.width - 14 -
1670             [o_textfield_min frame].origin.x, o_tooltip,
1671             p_item->min.i, p_item->max.i )
1672         [o_slider setIntValue: p_item->value.i];
1673         [o_slider setAutoresizingMask:NSViewWidthSizable ];
1674         [o_slider setTarget: self];
1675         [o_slider setAction: @selector(sliderChanged:)];
1676         [o_slider sendActionOn:NSLeftMouseUpMask | NSLeftMouseDownMask |
1677             NSLeftMouseDraggedMask];
1678         [self addSubview: o_slider];
1679
1680     }
1681     return self;
1682 }
1683
1684 - (void) alignWithXPosition:(int)i_xPos
1685 {
1686     NSRect frame;
1687     frame = [o_label frame];
1688     frame.origin.x = i_xPos - frame.size.width - 3;
1689     [o_label setFrame:frame];
1690
1691     frame = [o_textfield frame];
1692     frame.origin.x = i_xPos + 2;
1693     [o_textfield setFrame:frame];
1694 }
1695
1696 - (void)dealloc
1697 {
1698     [o_textfield release];
1699     [o_textfield_min release];
1700     [o_textfield_max release];
1701     [o_slider release];
1702     [super dealloc];
1703 }
1704
1705 - (IBAction)sliderChanged:(id)sender
1706 {
1707     [o_textfield setIntValue: [o_slider intValue]];
1708 }
1709
1710 - (void)textfieldChanged:(NSNotification *)o_notification
1711 {
1712     [o_slider setIntValue: [o_textfield intValue]];
1713 }
1714
1715 - (int)intValue
1716 {
1717     return [o_slider intValue];
1718 }
1719 @end
1720
1721 @implementation FloatConfigControl
1722 - (id) initWithItem: (module_config_t *)_p_item
1723            withView: (NSView *)o_parent_view
1724 {
1725     NSRect mainFrame = [o_parent_view frame];
1726     NSString *o_labelString, *o_tooltip, *o_textfieldString;
1727     mainFrame.size.height = 23;
1728     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN + 1;
1729     mainFrame.origin.x = LEFTMARGIN;
1730     mainFrame.origin.y = 0;
1731
1732     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1733     {
1734         i_view_type = CONFIG_ITEM_INTEGER;
1735
1736         o_tooltip = [[VLCMain sharedInstance] wrapString:
1737             [[VLCMain sharedInstance]
1738                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
1739
1740         /* add the label */
1741         if( p_item->psz_text )
1742             o_labelString = [[VLCMain sharedInstance]
1743                                 localizedString: (char *)p_item->psz_text];
1744         else
1745             o_labelString = [NSString stringWithString:@""];
1746         ADD_LABEL( o_label, mainFrame, 0, -2, o_labelString )
1747         [o_label setAutoresizingMask:NSViewNotSizable ];
1748         [self addSubview: o_label];
1749
1750         /* build the stepper */
1751         ADD_STEPPER( o_stepper, mainFrame, mainFrame.size.width - 19,
1752             0, o_tooltip, -1600, 1600)
1753         [o_stepper setFloatValue: p_item->value.f];
1754         [o_stepper setAutoresizingMask:NSViewMaxXMargin ];
1755         [self addSubview: o_stepper];
1756
1757         /* build the textfield */
1758         if( p_item->value.psz )
1759             o_textfieldString = [[VLCMain sharedInstance]
1760                                     localizedString: (char *)p_item->value.psz];
1761         else
1762             o_textfieldString = [NSString stringWithString: @""];
1763         ADD_TEXTFIELD( o_textfield, mainFrame, mainFrame.size.width - 19 - 52,
1764             1, 49, o_tooltip, @"" )
1765         [o_textfield setFloatValue: p_item->value.f];
1766         [o_textfield setDelegate: self];
1767         [[NSNotificationCenter defaultCenter] addObserver: self
1768             selector: @selector(textfieldChanged:)
1769             name: NSControlTextDidChangeNotification
1770             object: o_textfield];
1771         [o_textfield setAutoresizingMask:NSViewMaxXMargin ];
1772         [self addSubview: o_textfield];
1773     }
1774     return self;
1775 }
1776
1777 - (void) alignWithXPosition:(int)i_xPos
1778 {
1779     NSRect frame;
1780     frame = [o_label frame];
1781     frame.origin.x = i_xPos - frame.size.width - 3;
1782     [o_label setFrame:frame];
1783
1784     frame = [o_textfield frame];
1785     frame.origin.x = i_xPos + 2;
1786     [o_textfield setFrame:frame];
1787
1788     frame = [o_stepper frame];
1789     frame.origin.x = i_xPos + [o_textfield frame].size.width + 5;
1790     [o_stepper setFrame:frame];
1791 }
1792
1793 - (void)dealloc
1794 {
1795     [o_stepper release];
1796     [o_textfield release];
1797     [super dealloc];
1798 }
1799
1800 - (IBAction)stepperChanged:(id)sender
1801 {
1802     [o_textfield setFloatValue: [o_stepper floatValue]];
1803 }
1804
1805 - (void)textfieldChanged:(NSNotification *)o_notification
1806 {
1807     [o_stepper setFloatValue: [o_textfield floatValue]];
1808 }
1809
1810 - (float)floatValue
1811 {
1812     return [o_stepper floatValue];
1813 }
1814 @end
1815
1816 @implementation RangedFloatConfigControl
1817 - (id) initWithItem: (module_config_t *)_p_item
1818            withView: (NSView *)o_parent_view
1819 {
1820     NSRect mainFrame = [o_parent_view frame];
1821     NSString *o_labelString, *o_tooltip;
1822     mainFrame.size.height = 50;
1823     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN;
1824     mainFrame.origin.x = LEFTMARGIN;
1825     mainFrame.origin.y = 0;
1826
1827     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1828     {
1829         i_view_type = CONFIG_ITEM_RANGED_INTEGER;
1830
1831         /* add the label */
1832         if( p_item->psz_text )
1833             o_labelString = [[VLCMain sharedInstance]
1834                                 localizedString: (char *)p_item->psz_text];
1835         else
1836             o_labelString = [NSString stringWithString:@""];
1837         ADD_LABEL( o_label, mainFrame, 0, -3, o_labelString )
1838         [o_label setAutoresizingMask:NSViewNotSizable ];
1839         [self addSubview: o_label];
1840
1841         /* build the textfield */
1842         o_tooltip = [[VLCMain sharedInstance] wrapString:
1843             [[VLCMain sharedInstance]
1844                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
1845         ADD_TEXTFIELD( o_textfield, mainFrame, [o_label frame].size.width + 2,
1846             28, 49, o_tooltip, @"" )
1847         [o_textfield setFloatValue: p_item->value.f];
1848         [o_textfield setAutoresizingMask:NSViewMaxXMargin ];
1849         [o_textfield setDelegate: self];
1850         [[NSNotificationCenter defaultCenter] addObserver: self
1851             selector: @selector(textfieldChanged:)
1852             name: NSControlTextDidChangeNotification
1853             object: o_textfield];
1854         [self addSubview: o_textfield];
1855
1856         /* build the mintextfield */
1857         ADD_LABEL( o_textfield_min, mainFrame, 12, -30, @"-8888" )
1858         [o_textfield_min setFloatValue: p_item->min.f];
1859         [o_textfield_min setAutoresizingMask:NSViewMaxXMargin ];
1860         [o_textfield_min setAlignment:NSRightTextAlignment];
1861         [self addSubview: o_textfield_min];
1862
1863         /* build the maxtextfield */
1864         ADD_LABEL( o_textfield_max, mainFrame, mainFrame.size.width - 31,
1865             -30, @"8888" )
1866         [o_textfield_max setFloatValue: p_item->max.f];
1867         [o_textfield_max setAutoresizingMask:NSViewMinXMargin ];
1868         [self addSubview: o_textfield_max];
1869
1870         /* build the slider */
1871         ADD_SLIDER( o_slider, mainFrame, [o_textfield_min frame].origin.x +
1872             [o_textfield_min frame].size.width + 6, -1, mainFrame.size.width -
1873             [o_textfield_max frame].size.width -
1874             [o_textfield_max frame].size.width - 14 -
1875             [o_textfield_min frame].origin.x, o_tooltip, p_item->min.f,
1876             p_item->max.f )
1877         [o_slider setFloatValue: p_item->value.f];
1878         [o_slider setAutoresizingMask:NSViewWidthSizable ];
1879         [o_slider setTarget: self];
1880         [o_slider setAction: @selector(sliderChanged:)];
1881         [o_slider sendActionOn:NSLeftMouseUpMask | NSLeftMouseDownMask |
1882             NSLeftMouseDraggedMask];
1883         [self addSubview: o_slider];
1884
1885     }
1886     return self;
1887 }
1888
1889 - (void) alignWithXPosition:(int)i_xPos
1890 {
1891     NSRect frame;
1892     frame = [o_label frame];
1893     frame.origin.x = i_xPos - frame.size.width - 3;
1894     [o_label setFrame:frame];
1895
1896     frame = [o_textfield frame];
1897     frame.origin.x = i_xPos + 2;
1898     [o_textfield setFrame:frame];
1899 }
1900
1901 - (void)dealloc
1902 {
1903     [o_textfield release];
1904     [o_textfield_min release];
1905     [o_textfield_max release];
1906     [o_slider release];
1907     [super dealloc];
1908 }
1909
1910 - (IBAction)sliderChanged:(id)sender
1911 {
1912     [o_textfield setFloatValue: [o_slider floatValue]];
1913 }
1914
1915 - (void)textfieldChanged:(NSNotification *)o_notification
1916 {
1917     [o_slider setFloatValue: [o_textfield floatValue]];
1918 }
1919
1920 - (float)floatValue
1921 {
1922     return [o_slider floatValue];
1923 }
1924
1925 @end
1926
1927 @implementation BoolConfigControl
1928
1929 - (id) initWithItem: (module_config_t *)_p_item
1930            withView: (NSView *)o_parent_view
1931 {
1932     NSRect mainFrame = [o_parent_view frame];
1933     NSString *o_labelString, *o_tooltip;
1934     mainFrame.size.height = 17;
1935     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN;
1936     mainFrame.origin.x = LEFTMARGIN;
1937     mainFrame.origin.y = 0;
1938
1939     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1940     {
1941         i_view_type = CONFIG_ITEM_BOOL;
1942
1943         /* add the checkbox */
1944         o_tooltip = [[VLCMain sharedInstance]
1945             wrapString: [[VLCMain sharedInstance]
1946             localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
1947         ADD_CHECKBOX( o_checkbox, mainFrame, 0,
1948                         0, @"", o_tooltip, p_item->value.i, NSImageLeft)
1949         [o_checkbox setAutoresizingMask:NSViewNotSizable ];
1950         [self addSubview: o_checkbox];
1951         /* add the label */
1952         if( p_item->psz_text )
1953             o_labelString = [[VLCMain sharedInstance]
1954                                 localizedString: (char *)p_item->psz_text];
1955         else
1956             o_labelString = [NSString stringWithString:@""];
1957         ADD_LABEL( o_label, mainFrame, [o_checkbox frame].size.width, 0, o_labelString )
1958         [o_label setAutoresizingMask:NSViewNotSizable ];
1959         [self addSubview: o_label];
1960     }
1961     return self;
1962 }
1963
1964 - (void)dealloc
1965 {
1966     [o_checkbox release];
1967     [super dealloc];
1968 }
1969
1970 - (int)intValue
1971 {
1972     return [o_checkbox intValue];
1973 }
1974
1975 @end
1976
1977 @implementation KeyConfigControlBefore103
1978
1979 - (id) initWithItem: (module_config_t *)_p_item
1980            withView: (NSView *)o_parent_view
1981 {
1982     NSRect mainFrame = [o_parent_view frame];
1983     NSString *o_labelString, *o_tooltip;
1984     mainFrame.size.height = 37;
1985     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN + 1;
1986     mainFrame.origin.x = LEFTMARGIN;
1987     mainFrame.origin.y = 0;
1988
1989     if( [super initWithFrame: mainFrame item: _p_item] != nil )
1990     {
1991         i_view_type = CONFIG_ITEM_KEY_BEFORE_10_3;
1992
1993         /* add the label */
1994         if( p_item->psz_text )
1995             o_labelString = [[VLCMain sharedInstance]
1996                                 localizedString: (char *)p_item->psz_text];
1997         else
1998             o_labelString = [NSString stringWithString:@""];
1999         ADD_LABEL( o_label, mainFrame, 0, -10, o_labelString )
2000         [o_label setAutoresizingMask:NSViewNotSizable ];
2001         [self addSubview: o_label];
2002
2003         /* add the checkboxes */
2004         o_tooltip = [[VLCMain sharedInstance] wrapString:
2005             [[VLCMain sharedInstance]
2006                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
2007         ADD_CHECKBOX( o_cmd_checkbox, mainFrame,
2008             [o_label frame].size.width + 2, 0,
2009             [NSString stringWithUTF8String:PLACE_OF_INTEREST_SIGN], o_tooltip,
2010             ((((unsigned int)p_item->value.i) & KEY_MODIFIER_COMMAND)?YES:NO),
2011             NSImageLeft )
2012         [o_cmd_checkbox setState: p_item->value.i & KEY_MODIFIER_COMMAND];
2013         ADD_CHECKBOX( o_ctrl_checkbox, mainFrame,
2014             [o_cmd_checkbox frame].size.width +
2015             [o_cmd_checkbox frame].origin.x + 6, 0,
2016             [NSString stringWithUTF8String:UP_ARROWHEAD], o_tooltip,
2017             ((((unsigned int)p_item->value.i) & KEY_MODIFIER_CTRL)?YES:NO),
2018             NSImageLeft )
2019         [o_ctrl_checkbox setState: p_item->value.i & KEY_MODIFIER_CTRL];
2020         ADD_CHECKBOX( o_alt_checkbox, mainFrame, [o_label frame].size.width +
2021             2, -2 - [o_cmd_checkbox frame].size.height,
2022             [NSString stringWithUTF8String:OPTION_KEY], o_tooltip,
2023             ((((unsigned int)p_item->value.i) & KEY_MODIFIER_ALT)?YES:NO),
2024             NSImageLeft )
2025         [o_alt_checkbox setState: p_item->value.i & KEY_MODIFIER_ALT];
2026         ADD_CHECKBOX( o_shift_checkbox, mainFrame,
2027             [o_cmd_checkbox frame].size.width +
2028             [o_cmd_checkbox frame].origin.x + 6, -2 -
2029             [o_cmd_checkbox frame].size.height,
2030             [NSString stringWithUTF8String:UPWARDS_WHITE_ARROW], o_tooltip,
2031             ((((unsigned int)p_item->value.i) & KEY_MODIFIER_SHIFT)?YES:NO),
2032             NSImageLeft )
2033         [o_shift_checkbox setState: p_item->value.i & KEY_MODIFIER_SHIFT];
2034         [self addSubview: o_cmd_checkbox];
2035         [self addSubview: o_ctrl_checkbox];
2036         [self addSubview: o_alt_checkbox];
2037         [self addSubview: o_shift_checkbox];
2038
2039         /* build the popup */
2040         ADD_POPUP( o_popup, mainFrame, [o_shift_checkbox frame].origin.x +
2041             [o_shift_checkbox frame].size.width + 4,
2042             4, 0, o_tooltip )
2043         [o_popup setAutoresizingMask:NSViewWidthSizable ];
2044
2045         if( o_keys_menu == nil )
2046         {
2047             unsigned int i;
2048             o_keys_menu = [[NSMenu alloc] initWithTitle: @"Keys Menu"];
2049             for ( i = 0; i < sizeof(vlc_keys) / sizeof(key_descriptor_t); i++)
2050                 if( vlc_keys[i].psz_key_string && *vlc_keys[i].psz_key_string )
2051                     POPULATE_A_KEY( o_keys_menu,
2052                         [NSString stringWithCString:vlc_keys[i].psz_key_string]
2053                         , vlc_keys[i].i_key_code)
2054         }
2055         [o_popup setMenu:[o_keys_menu copyWithZone:nil]];
2056         [o_popup selectItemWithTitle: [[VLCMain sharedInstance]
2057             localizedString:(char *)KeyToString(
2058             (((unsigned int)p_item->value.i) & ~KEY_MODIFIER ))]];
2059         [self addSubview: o_popup];
2060     }
2061     return self;
2062 }
2063
2064 - (void) alignWithXPosition:(int)i_xPos
2065 {
2066     NSRect frame;
2067     NSRect superFrame = [self frame];
2068     frame = [o_label frame];
2069     frame.origin.x = i_xPos - frame.size.width - 3;
2070     [o_label setFrame:frame];
2071
2072     frame = [o_cmd_checkbox frame];
2073     frame.origin.x = i_xPos;
2074     [o_cmd_checkbox setFrame:frame];
2075
2076     frame = [o_ctrl_checkbox frame];
2077     frame.origin.x = [o_cmd_checkbox frame].size.width +
2078                         [o_cmd_checkbox frame].origin.x + 4;
2079     [o_ctrl_checkbox setFrame:frame];
2080
2081     frame = [o_alt_checkbox frame];
2082     frame.origin.x = i_xPos;
2083     [o_alt_checkbox setFrame:frame];
2084
2085     frame = [o_shift_checkbox frame];
2086     frame.origin.x = [o_cmd_checkbox frame].size.width +
2087                         [o_cmd_checkbox frame].origin.x + 4;
2088     [o_shift_checkbox setFrame:frame];
2089
2090     frame = [o_popup frame];
2091     frame.origin.x = [o_shift_checkbox frame].origin.x +
2092                         [o_shift_checkbox frame].size.width + 3;
2093     frame.size.width = superFrame.size.width - frame.origin.x + 2;
2094     [o_popup setFrame:frame];
2095 }
2096
2097 - (void)dealloc
2098 {
2099     [o_cmd_checkbox release];
2100     [o_ctrl_checkbox release];
2101     [o_alt_checkbox release];
2102     [o_shift_checkbox release];
2103     [o_popup release];
2104     [super dealloc];
2105 }
2106
2107 - (int)intValue
2108 {
2109     unsigned int i_new_key = 0;
2110
2111     i_new_key |= ([o_cmd_checkbox state] == NSOnState) ?
2112         KEY_MODIFIER_COMMAND : 0;
2113     i_new_key |= ([o_ctrl_checkbox state] == NSOnState) ?
2114         KEY_MODIFIER_CTRL : 0;
2115     i_new_key |= ([o_alt_checkbox state] == NSOnState) ?
2116         KEY_MODIFIER_ALT : 0;
2117     i_new_key |= ([o_shift_checkbox state] == NSOnState) ?
2118         KEY_MODIFIER_SHIFT : 0;
2119
2120     i_new_key |= StringToKey((char *)[[[o_popup selectedItem] title] cString]);
2121     return i_new_key;
2122 }
2123 @end
2124
2125 @implementation KeyConfigControlAfter103
2126 - (id) initWithItem: (module_config_t *)_p_item
2127            withView: (NSView *)o_parent_view
2128 {
2129     NSRect mainFrame = [o_parent_view frame];
2130     NSString *o_labelString, *o_tooltip;
2131     mainFrame.size.height = 22;
2132     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN + 1;
2133     mainFrame.origin.x = LEFTMARGIN;
2134     mainFrame.origin.y = 0;
2135
2136     if( [super initWithFrame: mainFrame item: _p_item] != nil )
2137     {
2138         i_view_type = CONFIG_ITEM_KEY_AFTER_10_3;
2139
2140         /* add the label */
2141         if( p_item->psz_text )
2142             o_labelString = [[VLCMain sharedInstance]
2143                 localizedString: (char *)p_item->psz_text];
2144         else
2145             o_labelString = [NSString stringWithString:@""];
2146         ADD_LABEL( o_label, mainFrame, 0, -1, o_labelString )
2147         [o_label setAutoresizingMask:NSViewNotSizable ];
2148         [self addSubview: o_label];
2149
2150         /* build the popup */
2151         o_tooltip = [[VLCMain sharedInstance] wrapString:
2152             [[VLCMain sharedInstance]
2153                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
2154         ADD_POPUP( o_popup, mainFrame, [o_label frame].origin.x +
2155             [o_label frame].size.width + 3,
2156             -2, 0, o_tooltip )
2157         [o_popup setAutoresizingMask:NSViewWidthSizable ];
2158
2159         if( o_keys_menu == nil )
2160         {
2161             unsigned int i;
2162             o_keys_menu = [[NSMenu alloc] initWithTitle: @"Keys Menu"];
2163             for ( i = 0; i < sizeof(vlc_keys) / sizeof(key_descriptor_t); i++)
2164                 if( vlc_keys[i].psz_key_string && *vlc_keys[i].psz_key_string )
2165                     POPULATE_A_KEY( o_keys_menu,
2166                         [NSString stringWithCString:vlc_keys[i].psz_key_string]
2167                         , vlc_keys[i].i_key_code)
2168         }
2169         [o_popup setMenu:[o_keys_menu copyWithZone:nil]];
2170         [o_popup selectItem:[[o_popup menu] itemWithTag:p_item->value.i]];
2171         [self addSubview: o_popup];
2172
2173     }
2174     return self;
2175 }
2176
2177 - (void) alignWithXPosition:(int)i_xPos
2178 {
2179     NSRect frame;
2180     NSRect superFrame = [self frame];
2181     frame = [o_label frame];
2182     frame.origin.x = i_xPos - frame.size.width - 3;
2183     [o_label setFrame:frame];
2184
2185     frame = [o_popup frame];
2186     frame.origin.x = i_xPos - 1;
2187     frame.size.width = superFrame.size.width - frame.origin.x + 2;
2188     [o_popup setFrame:frame];
2189 }
2190
2191 - (void)dealloc
2192 {
2193     [o_popup release];
2194     [super dealloc];
2195 }
2196
2197 - (int)intValue
2198 {
2199     return [o_popup selectedTag];
2200 }
2201 @end
2202
2203 @implementation ModuleListConfigControl
2204 - (id) initWithItem: (module_config_t *)_p_item
2205            withView: (NSView *)o_parent_view
2206 {
2207 if( _p_item->i_type == CONFIG_ITEM_MODULE_LIST )
2208 //TODO....
2209         return nil;
2210
2211 //Fill our array to know how may items we have...
2212     vlc_list_t *p_list;
2213     module_t *p_parser;
2214     module_config_t *p_end;
2215     int i_index;
2216     NSRect mainFrame = [o_parent_view frame];
2217     NSString *o_labelString, *o_textfieldString, *o_tooltip;
2218
2219     o_modulearray = [[NSMutableArray alloc] initWithCapacity:10];
2220     /* build a list of available modules */
2221     p_list = vlc_list_find( VLCIntf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
2222     for( i_index = 0; i_index < p_list->i_count; i_index++ )
2223     {
2224         p_parser = (module_t *)p_list->p_values[i_index].p_object;
2225         p_end = p_item + p_parser->confsize;
2226
2227         if( !strcmp( p_parser->psz_object_name, "main" ) )
2228             continue;
2229
2230         module_config_t *p_config = p_parser->p_config;
2231         if( p_config ) do
2232         {
2233             NSString *o_modulelongname, *o_modulename;
2234             NSNumber *o_moduleenabled = nil;
2235             /* Hack: required subcategory is stored in i_min */
2236             if( p_config->i_type == CONFIG_SUBCATEGORY &&
2237                 p_config->value.i == _p_item->min.i )
2238             {
2239                 o_modulelongname = [NSString stringWithUTF8String:
2240                                         p_parser->psz_longname];
2241                 o_modulename = [NSString stringWithUTF8String:
2242                                         p_parser->psz_object_name];
2243
2244                 if( _p_item->value.psz &&
2245                     strstr( _p_item->value.psz, p_parser->psz_object_name ) )
2246                     o_moduleenabled = [NSNumber numberWithBool:YES];
2247                 else
2248                     o_moduleenabled = [NSNumber numberWithBool:NO];
2249
2250                 [o_modulearray addObject:[NSMutableArray
2251                     arrayWithObjects: o_modulename, o_modulelongname,
2252                     o_moduleenabled, nil]];
2253             }
2254         } while( p_item < p_end && p_config++ );
2255     }
2256     vlc_list_release( p_list );
2257
2258     mainFrame.size.height = 30 + 18 * [o_modulearray count];
2259     mainFrame.size.width = mainFrame.size.width - LEFTMARGIN - RIGHTMARGIN;
2260     mainFrame.origin.x = LEFTMARGIN;
2261     mainFrame.origin.y = 0;
2262     if( [super initWithFrame: mainFrame item: _p_item] != nil )
2263     {
2264         i_view_type = CONFIG_ITEM_MODULE_LIST;
2265
2266         /* add the label */
2267         if( p_item->psz_text )
2268             o_labelString = [[VLCMain sharedInstance]
2269                                 localizedString: (char *)p_item->psz_text];
2270         else
2271             o_labelString = [NSString stringWithString:@""];
2272         ADD_LABEL( o_label, mainFrame, 0, -3, o_labelString )
2273         [o_label setAutoresizingMask:NSViewNotSizable ];
2274         [self addSubview: o_label];
2275
2276         /* build the textfield */
2277         o_tooltip = [[VLCMain sharedInstance] wrapString:
2278             [[VLCMain sharedInstance]
2279                 localizedString: (char *)p_item->psz_longtext ] toWidth: PREFS_WRAP];
2280         if( p_item->value.psz )
2281             o_textfieldString = [[VLCMain sharedInstance]
2282                 localizedString: (char *)p_item->value.psz];
2283         else
2284             o_textfieldString = [NSString stringWithString: @""];
2285         ADD_TEXTFIELD( o_textfield, mainFrame, [o_label frame].size.width + 2,
2286             mainFrame.size.height - 22, mainFrame.size.width -
2287             [o_label frame].size.width - 2, o_tooltip, o_textfieldString )
2288         [o_textfield setAutoresizingMask:NSViewWidthSizable ];
2289         [self addSubview: o_textfield];
2290
2291
2292 {
2293     NSRect s_rc = mainFrame;
2294     s_rc.size.height = mainFrame.size.height - 30;
2295     s_rc.size.width = mainFrame.size.width - 12;
2296     s_rc.origin.x = 12;
2297     s_rc.origin.y = 0;
2298     o_scrollview = [[[NSScrollView alloc] initWithFrame: s_rc] retain];
2299     [o_scrollview setDrawsBackground: NO];
2300     [o_scrollview setBorderType: NSBezelBorder];
2301     if( MACOS_VERSION >= 10.3 )
2302         [o_scrollview setAutohidesScrollers:YES];
2303
2304     NSTableView *o_tableview;
2305     o_tableview = [[NSTableView alloc] initWithFrame : s_rc];
2306     if( MACOS_VERSION >= 10.3 )
2307         [o_tableview setUsesAlternatingRowBackgroundColors:YES];
2308     [o_tableview setHeaderView:nil];
2309 /* TODO: find a good way to fix the row height and text size*/
2310 /* FIXME: support for multiple selection... */
2311 //    [o_tableview setAllowsMultipleSelection:YES];
2312
2313     NSCell *o_headerCell = [[NSCell alloc] initTextCell:@"Enabled"];
2314     NSCell *o_dataCell = [[NSButtonCell alloc] init];
2315     [(NSButtonCell*)o_dataCell setButtonType:NSSwitchButton];
2316     [o_dataCell setTitle:@""];
2317     [o_dataCell setFont:[NSFont systemFontOfSize:0]];
2318     NSTableColumn *o_tableColumn = [[NSTableColumn alloc]
2319         initWithIdentifier:[NSString stringWithCString: "Enabled"]];
2320     [o_tableColumn setHeaderCell: o_headerCell];
2321     [o_tableColumn setDataCell: o_dataCell];
2322     [o_tableColumn setWidth:17];
2323     [o_tableview addTableColumn: o_tableColumn];
2324
2325     o_headerCell = [[NSCell alloc] initTextCell:@"Module Name"];
2326     o_dataCell = [[NSTextFieldCell alloc] init];
2327     [o_dataCell setFont:[NSFont systemFontOfSize:12]];
2328     o_tableColumn = [[NSTableColumn alloc]
2329         initWithIdentifier:[NSString stringWithCString: "Module"]];
2330     [o_tableColumn setHeaderCell: o_headerCell];
2331     [o_tableColumn setDataCell: o_dataCell];
2332     [o_tableColumn setWidth:388 - 17];
2333     [o_tableview addTableColumn: o_tableColumn];
2334     [o_tableview registerForDraggedTypes:[NSArray arrayWithObjects:
2335             @"VLC media player module", nil]];
2336
2337     [o_tableview setDataSource:self];
2338     [o_tableview setTarget: self];
2339     [o_tableview setAction: @selector(tableChanged:)];
2340     [o_tableview sendActionOn:NSLeftMouseUpMask | NSLeftMouseDownMask |
2341         NSLeftMouseDraggedMask];
2342     [o_scrollview setDocumentView: o_tableview];
2343 }
2344     [o_scrollview setAutoresizingMask:NSViewWidthSizable ];
2345     [self addSubview: o_scrollview];
2346
2347
2348     }
2349     return self;
2350 }
2351
2352 - (void) alignWithXPosition:(int)i_xPos
2353 {
2354     ;
2355 }
2356
2357 - (IBAction)tableChanged:(id)sender
2358 {
2359     NSString *o_newstring = @"";
2360     unsigned int i;
2361     for( i = 0 ; i < [o_modulearray count] ; i++ )
2362         if( [[[o_modulearray objectAtIndex:i] objectAtIndex:2]
2363             boolValue] != NO )
2364         {
2365             o_newstring = [o_newstring stringByAppendingString:
2366                 [[o_modulearray objectAtIndex:i] objectAtIndex:0]];
2367             o_newstring = [o_newstring stringByAppendingString:@":"];
2368         }
2369
2370     [o_textfield setStringValue: [o_newstring
2371         substringToIndex: ([o_newstring length])?[o_newstring length] - 1:0]];
2372 }
2373
2374 - (void)dealloc
2375 {
2376     [o_scrollview release];
2377     [super dealloc];
2378 }
2379
2380
2381 - (char *)stringValue
2382 {
2383     return strdup( [[o_textfield stringValue] cString] );
2384 }
2385
2386 @end
2387
2388 @implementation ModuleListConfigControl (NSTableDataSource)
2389
2390 - (BOOL)tableView:(NSTableView*)table writeRows:(NSArray*)rows
2391     toPasteboard:(NSPasteboard*)pb
2392 {
2393     // We only want to allow dragging of selected rows.
2394     NSEnumerator    *iter = [rows objectEnumerator];
2395     NSNumber        *row;
2396     while ((row = [iter nextObject]) != nil)
2397     {
2398         if (![table isRowSelected:[row intValue]])
2399             return NO;
2400     }
2401
2402     [pb declareTypes:[NSArray
2403         arrayWithObject:@"VLC media player module"] owner:nil];
2404     [pb setPropertyList:rows forType:@"VLC media player module"];
2405     return YES;
2406 }
2407
2408 - (NSDragOperation)tableView:(NSTableView*)table
2409     validateDrop:(id <NSDraggingInfo>)info proposedRow:(int)row
2410     proposedDropOperation:(NSTableViewDropOperation)op
2411 {
2412     // Make drops at the end of the table go to the end.
2413     if (row == -1)
2414     {
2415         row = [table numberOfRows];
2416         op = NSTableViewDropAbove;
2417         [table setDropRow:row dropOperation:op];
2418     }
2419
2420     // We don't ever want to drop onto a row, only between rows.
2421     if (op == NSTableViewDropOn)
2422         [table setDropRow:(row+1) dropOperation:NSTableViewDropAbove];
2423     return NSTableViewDropAbove;
2424 }
2425
2426 - (BOOL)tableView:(NSTableView*)table acceptDrop:(id <NSDraggingInfo>)info
2427     row:(int)dropRow dropOperation:(NSTableViewDropOperation)op;
2428 {
2429     NSPasteboard    *pb = [info draggingPasteboard];
2430     NSDragOperation srcMask = [info draggingSourceOperationMask];
2431     BOOL accepted = NO;
2432
2433     NS_DURING
2434
2435         NSArray *array;
2436
2437         // Intra-table drag - data is the array of rows.
2438         if (!accepted && (array =
2439             [pb propertyListForType:@"VLC media player module"]) != NULL)
2440         {
2441             NSEnumerator *iter = nil;
2442             id val;
2443             BOOL isCopy = (srcMask & NSDragOperationMove) ? NO:YES;
2444             // Move the modules
2445             iter = [array objectEnumerator];
2446             while ((val = [iter nextObject]) != NULL)
2447             {
2448                 NSArray *o_tmp = [[o_modulearray objectAtIndex:
2449                     [val intValue]] mutableCopyWithZone:nil];
2450                 [o_modulearray removeObject:o_tmp];
2451                 [o_modulearray insertObject:o_tmp
2452                     atIndex:(dropRow>[val intValue]) ? dropRow - 1 : dropRow];
2453                 dropRow++;
2454             }
2455
2456             // Select the newly-dragged items.
2457             iter = [array objectEnumerator];
2458 //TODO...
2459             [table deselectAll:self];
2460
2461             [self tableChanged:self];
2462             [table setNeedsDisplay:YES];
2463             // Indicate that we finished the drag.
2464             accepted = YES;
2465         }
2466         [table reloadData];
2467         [table setNeedsDisplay:YES];
2468
2469         NS_HANDLER
2470
2471             // An exception occurred. Uh-oh. Update the track table so that
2472             // it stays consistent, and re-raise the exception.
2473             [table reloadData];
2474             [localException raise];
2475             [table setNeedsDisplay:YES];
2476     NS_ENDHANDLER
2477
2478     return accepted;
2479 }
2480
2481 - (int)numberOfRowsInTableView:(NSTableView *)aTableView
2482 {
2483     return [o_modulearray count];
2484 }
2485
2486 - (id)tableView:(NSTableView *)aTableView
2487     objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex
2488 {
2489     if( [[aTableColumn identifier] isEqualToString:
2490         [NSString stringWithCString:"Enabled"]] )
2491         return [[o_modulearray objectAtIndex:rowIndex] objectAtIndex:2];
2492     if( [[aTableColumn identifier] isEqualToString:
2493         [NSString stringWithCString:"Module"]] )
2494         return [[o_modulearray objectAtIndex:rowIndex] objectAtIndex:1];
2495
2496     return nil;
2497 }
2498
2499 - (void)tableView:(NSTableView *)aTableView setObjectValue:(id)anObject
2500     forTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex
2501 {
2502     [[o_modulearray objectAtIndex:rowIndex] replaceObjectAtIndex:2
2503         withObject: anObject];
2504 }
2505 @end