]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/prefs.m
* VLCPrefs's delloc method got accidentally removed while splitting the nibs. Re...
[vlc] / modules / gui / macosx / prefs.m
index 77dc505cad44ea0c8d019d93ad3cd9e230f8e534..f8bce768905cc953d7fe02a16098bfaa7049ba33 100644 (file)
@@ -1,16 +1,17 @@
 /*****************************************************************************
- * prefs.m: MacOS X plugin for vlc
+ * prefs.m: MacOS X module for vlc
  *****************************************************************************
- * Copyright (C) 2002 VideoLAN
- * $Id: prefs.m,v 1.3 2002/12/25 02:23:36 massiot Exp $
+ * Copyright (C) 2002-2004 VideoLAN
+ * $Id$
  *
- * Authors: Jon Lech Johansen <jon-vl@nanocrew.net> 
+ * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
+ *          Derk-Jan Hartman <hartman at videolan dot org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #include <sys/param.h>                                    /* for MAXPATHLEN */
 #include <string.h>
 
-#import <Cocoa/Cocoa.h>
-
-#include <vlc/vlc.h>
-#include <vlc/intf.h>
-
-#import "intf.h"
-#import "prefs.h"
+#include "intf.h"
+#include "prefs.h"
+#include "vlc_keys.h"
 
 /*****************************************************************************
- * VLCPrefs implementation 
+ * VLCPrefs implementation
  *****************************************************************************/
 @implementation VLCPrefs
 
+static VLCPrefs *_o_sharedMainInstance = nil;
+
++ (VLCPrefs *)sharedInstance
+{
+    return _o_sharedMainInstance ? _o_sharedMainInstance : [[self alloc] init];
+}
+
 - (id)init
 {
-    self = [super init];
+    if( _o_sharedMainInstance) {
+        [self dealloc];
+    } else {
+        _o_sharedMainInstance = [super init];
+    }
+    
+    return _o_sharedMainInstance;
+}
 
-    if( self != nil )
-    {
-        p_intf = [NSApp getIntf];
+- (void)dealloc
+{
+    [o_empty_view release];
+    [o_save_prefs release];
+    [super dealloc];
+}
 
-        o_pref_panels = [[NSMutableDictionary alloc] init];  
-        o_toolbars = [[NSMutableDictionary alloc] init];
-        o_scroll_views = [[NSMutableDictionary alloc] init];
-        o_panel_views = [[NSMutableDictionary alloc] init];
-        o_save_prefs = [[NSMutableDictionary alloc] init];
-    }
+- (void)showPrefs
+{
+    /* load our nib */
+    [NSBundle loadNibNamed:@"Preferences" owner:self];
+    
+    /* from "init" =< r8571 */
+    o_empty_view = [[NSView alloc] init];
+    o_save_prefs = [[NSMutableDictionary alloc] init];
+
+    /* from "awakeFromNib" =< r8571 */
+    p_intf = VLCIntf;
+    b_advanced = config_GetInt( p_intf, "advanced" );
+
+    [self initStrings];
+    [o_advanced_ckb setState: b_advanced];
+    [o_prefs_view setBorderType: NSGrooveBorder];
+    [o_prefs_view setHasVerticalScroller: YES];
+    [o_prefs_view setDrawsBackground: NO];
+    [o_prefs_view setRulersVisible: NO];
+    [o_prefs_view setDocumentView: o_empty_view];
+    [o_tree selectRow:0 byExtendingSelection:NO];
+    /* end of the previous "awakeFromNib" method */
+
+    [o_save_prefs release];
+    o_save_prefs = [[NSMutableDictionary alloc] init];
+    [self showViewForID: [[o_tree itemAtRow:[o_tree selectedRow]] getObjectID]
+        andName: [[o_tree itemAtRow:[o_tree selectedRow]] getName]];
+    [o_prefs_window center];
+    [o_prefs_window makeKeyAndOrderFront:self];
+}
 
-    return( self );
+- (void)initStrings
+{
+    [o_prefs_window setTitle: _NS("Preferences")];
+    [o_save_btn setTitle: _NS("Save")];
+    [o_cancel_btn setTitle: _NS("Cancel")];
+    [o_reset_btn setTitle: _NS("Reset All")];
+    [o_advanced_ckb setTitle: _NS("Advanced")];
 }
 
-- (void)dealloc
+- (IBAction)savePrefs: (id)sender
 {
-    id v1, v2;
-    NSEnumerator *o_e1;
-    NSEnumerator *o_e2;
+    id o_vlc_config;
+    NSEnumerator *o_enum;
 
-#define DIC_REL1(o_dic) \
-    { \
-    o_e1 = [o_dic objectEnumerator]; \
-    while( (v1 = [o_e1 nextObject]) ) \
-    { \
-        [v1 release]; \
-    } \
-    [o_dic removeAllObjects]; \
-    [o_dic release]; \
-    }
+    o_enum = [o_save_prefs objectEnumerator];
+    while( ( o_vlc_config = [o_enum nextObject] ) )
+    {
+        int i_type = [o_vlc_config configType];
+        NSString *o_name = [o_vlc_config configName];
+        char *psz_name = (char *)[o_name UTF8String];
 
-#define DIC_REL2(o_dic) \
-    { \
-        o_e2 = [o_dic objectEnumerator]; \
-        while( (v2 = [o_e2 nextObject]) ) \
-        { \
-            DIC_REL1(v2); \
-        } \
-        [o_dic removeAllObjects]; \
-    }
+        switch( i_type )
+        {
+    
+        case CONFIG_ITEM_MODULE:
+            {
+                char *psz_value;
+                module_t *p_a_module;
+                int i_id = [[o_vlc_config selectedItem] tag];
+                
+                p_a_module = (module_t *)vlc_object_get( p_intf, i_id );
+                if( p_a_module == NULL || p_a_module->i_object_type != VLC_OBJECT_MODULE )
+                {
+                    i_id = -1;
+                }
+                
+                psz_value = ( i_id == -1 ) ? "" :  p_a_module->psz_object_name ;
+                config_PutPsz( p_intf, psz_name, strdup(psz_value) );
+            }
+            break;
+    
+        case CONFIG_ITEM_STRING:
+            {
+                char *psz_value;
+                NSString *o_value = [o_vlc_config stringValue];
+                psz_value = (char *)[o_value UTF8String];
+    
+                config_PutPsz( p_intf, psz_name, psz_value );
+            }
+            break;
+
+        case CONFIG_ITEM_FILE:
+        case CONFIG_ITEM_DIRECTORY:
+            {
+                char *psz_value;
+                NSString *o_value = [o_vlc_config stringValue];
+                psz_value = (char *)[o_value fileSystemRepresentation];
+    
+                config_PutPsz( p_intf, psz_name, psz_value );
+            }
+            break;
+    
+        case CONFIG_ITEM_INTEGER:
+        case CONFIG_ITEM_BOOL:
+            {
+                int i_value = [o_vlc_config intValue];
+    
+                config_PutInt( p_intf, psz_name, i_value );
+            }
+            break;
+    
+        case CONFIG_ITEM_FLOAT:
+            {
+                float f_value = [o_vlc_config floatValue];
+    
+                config_PutFloat( p_intf, psz_name, f_value );
+            }
+            break;
 
-    DIC_REL1(o_pref_panels);
-    DIC_REL2(o_toolbars);
-    DIC_REL1(o_scroll_views);
-    DIC_REL2(o_panel_views);
-    DIC_REL1(o_save_prefs);
+        case CONFIG_ITEM_KEY:
+            {
+                unsigned int i_key = config_GetInt( p_intf, psz_name );
+                unsigned int i_new_key = 0;
 
-#undef DIC_REL1
-#undef DIC_REL2
+                if( [o_vlc_config class] == [VLCMatrix class] )
+                {
+                    int i;
+                    NSButtonCell *o_current_cell;
+                    NSArray *o_cells = [o_vlc_config cells];
+                    i_new_key = (i_key & ~KEY_MODIFIER);
+                    for( i = 0; i < [o_cells count]; i++ )
+                    {
+                        o_current_cell = [o_cells objectAtIndex:i];
+                        if( [[o_current_cell title] isEqualToString:_NS("Command")] && 
+                            [o_current_cell state] == NSOnState )
+                                i_new_key |= KEY_MODIFIER_COMMAND;
+                        if( [[o_current_cell title] isEqualToString:_NS("Control")] && 
+                            [o_current_cell state] == NSOnState )
+                                i_new_key |= KEY_MODIFIER_CTRL;
+                        if( [[o_current_cell title] isEqualToString:_NS("Option/Alt")] && 
+                            [o_current_cell state] == NSOnState )
+                                i_new_key |= KEY_MODIFIER_ALT;
+                        if( [[o_current_cell title] isEqualToString:_NS("Shift")] && 
+                            [o_current_cell state] == NSOnState )
+                                i_new_key |= KEY_MODIFIER_SHIFT;
+                    }
+                }
+                else
+                {
+                    i_new_key = (i_key & KEY_MODIFIER);
+                    i_new_key |= StringToKey([[o_vlc_config stringValue] cString]);
+                }
+                config_PutInt( p_intf, psz_name, i_new_key );
+            }
+            break;
+        }
+    }
+    config_SaveConfigFile( p_intf, NULL );
+    [o_prefs_window orderOut:self];
+}
 
-    [super dealloc];
+- (IBAction)closePrefs: (id)sender
+{
+    [o_prefs_window orderOut:self];
 }
 
-- (BOOL)hasPrefs:(NSString *)o_module_name
+- (IBAction)resetAll: (id)sender
 {
-    module_t *p_parser;
-    vlc_list_t list;
-    char *psz_module_name;
-    int i_index;
+    NSBeginInformationalAlertSheet(_NS("Reset Preferences"), _NS("Cancel"), _NS("Continue"), 
+        nil, o_prefs_window, self, @selector(sheetDidEnd: returnCode: contextInfo:), NULL, nil,
+        _NS("Beware this will reset your VLC media player preferences.\n"
+            "Are you sure you want to continue?") );
+}
 
-    psz_module_name = (char *)[o_module_name lossyCString];
+- (void)sheetDidEnd:(NSWindow *)o_sheet returnCode:(int)i_return contextInfo:(void *)o_context
+{
+    if( i_return == NSAlertAlternateReturn )
+    {
+        config_ResetAll( p_intf );
+        [self showViewForID: [[o_tree itemAtRow:[o_tree selectedRow]] getObjectID]
+            andName: [[o_tree itemAtRow:[o_tree selectedRow]] getName]];
+    }
+}
 
-    /* look for module */
-    list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
+- (IBAction)advancedToggle: (id)sender
+{
+    b_advanced = !b_advanced;
+    [o_advanced_ckb setState: b_advanced];
+    [self showViewForID: [[o_tree itemAtRow:[o_tree selectedRow]] getObjectID]
+        andName: [[o_tree itemAtRow:[o_tree selectedRow]] getName]];
+}
 
-    for( i_index = 0; i_index < list.i_count; i_index++ )
-    {
-        p_parser = (module_t *)list.p_values[i_index].p_object ;
+- (IBAction)openFileDialog: (id)sender
+{
+    NSOpenPanel *o_open_panel = [NSOpenPanel openPanel];
+    
+    [o_open_panel setTitle: _NS("Select file or directory")];
+    [o_open_panel setPrompt: _NS("Select")];
+    [o_open_panel setAllowsMultipleSelection: NO];
+    [o_open_panel setCanChooseFiles: YES];
+    [o_open_panel setCanChooseDirectories: YES];
+    [o_open_panel beginSheetForDirectory:nil
+        file:nil
+        types:nil
+        modalForWindow:[sender window]
+        modalDelegate: self
+        didEndSelector: @selector(pathChosenInPanel: 
+                        withReturn:
+                        contextInfo:)
+        contextInfo: sender];
+}
 
-        if( !strcmp( p_parser->psz_object_name, psz_module_name ) )
-        {
-            BOOL b_has_prefs = p_parser->i_config_items != 0;
-            vlc_list_release( &list );
-            return( b_has_prefs );
-        }
+- (void)pathChosenInPanel:(NSOpenPanel *)o_sheet withReturn:(int)i_return_code contextInfo:(void  *)o_context_info
+{
+    if( i_return_code == NSOKButton )
+    {
+        NSString *o_path = [[o_sheet filenames] objectAtIndex: 0];
+        VLCTextField *o_field = (VLCTextField *)[(VLCButton *)o_context_info tag]; /* FIXME */
+        [o_field setStringValue: o_path];
+        [self configChanged: o_field];
     }
+}
 
-    vlc_list_release( &list );
+- (void)loadConfigTree
+{
+    
+}
 
-    return( NO );
+- (void)outlineViewSelectionIsChanging:(NSNotification *)o_notification
+{
 }
 
-- (void)createPrefPanel:(NSString *)o_module_name
+- (void)outlineViewSelectionDidChange:(NSNotification *)o_notification
 {
-    int i_pos;
-    int i_module_tag;
+    [self showViewForID: [[o_tree itemAtRow:[o_tree selectedRow]] getObjectID]
+        andName: [[o_tree itemAtRow:[o_tree selectedRow]] getName]];
+}
 
-    module_t *p_parser = NULL;
-    vlc_list_t list;
-    module_config_t *p_item;
-    char *psz_module_name;
-    int i_index;
+- (void)configChanged:(id)o_unknown
+{
+    id o_vlc_config = [o_unknown isKindOfClass: [NSNotification class]] ?
+                      [o_unknown object] : o_unknown;
 
-    NSPanel *o_panel;                   /* panel                        */
-    NSRect s_panel_rc;                  /* panel rect                   */
-    NSView *o_panel_view;               /* panel view                   */
-    NSToolbar *o_toolbar;               /* panel toolbar                */
-    NSMutableDictionary *o_tb_items;    /* panel toolbar items          */
-    NSScrollView *o_scroll_view;        /* panel scroll view            */ 
-    NSRect s_scroll_rc;                 /* panel scroll view rect       */
-    NSMutableDictionary *o_views;       /* panel scroll view docviews   */
+    NSString *o_name = [o_vlc_config configName];
+    [o_save_prefs setObject: o_vlc_config forKey: o_name];
+}
 
+- (void)showViewForID: (int)i_id andName: (NSString *)o_item_name
+{
+    vlc_list_t *p_list;
+    module_t *p_parser;
+    module_config_t *p_item;
+    
+    int i_pos, i_module_tag, i_index;
+    
+    NSString *o_module_name;
     NSRect s_rc;                        /* rect                         */
     NSView *o_view;                     /* view                         */
     NSRect s_vrc;                       /* view rect                    */
-    NSButton *o_button;                 /* button                       */
-    NSRect s_brc;                       /* button rect                  */
     VLCTextField *o_text_field;         /* input field / label          */
+    
+    p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
 
-    o_panel = [o_pref_panels objectForKey: o_module_name];
-    if( o_panel != nil )
+    /* Get a pointer to the module */
+    p_parser = (module_t *)vlc_object_get( p_intf, i_id );
+    if( p_parser->i_object_type != VLC_OBJECT_MODULE )
     {
-        [o_panel center];
-        [o_panel makeKeyAndOrderFront: nil];
+        /* 0OOoo something went really bad */
+        vlc_list_release( p_list );
         return;
-    } 
-
-    psz_module_name = (char *)[o_module_name lossyCString];
-
-    /* Look for the selected module */
-    list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
-
-    for( i_index = 0; i_index < list.i_count; i_index++ )
-    {
-        p_parser = (module_t *)list.p_values[i_index].p_object ;
-
-        if( psz_module_name
-            && !strcmp( psz_module_name, p_parser->psz_object_name ) )
-        {
-            break;
-        }
     }
-
-    if( !p_parser || i_index == list.i_count )
-    {
-        vlc_list_release( &list );
-        return;
-    }
-
-    /* We found it, now we can start building its configuration interface */
-
-    s_panel_rc = NSMakeRect( 0, 0, 450, 450 );
-    o_panel = [[NSPanel alloc] initWithContentRect: s_panel_rc
-                               styleMask: NSTitledWindowMask
-                               backing: NSBackingStoreBuffered
-                               defer: YES];
-    o_toolbar = [[NSToolbar alloc] initWithIdentifier: o_module_name];
-    [o_panel setTitle: [NSString stringWithFormat: @"%@ (%@)", 
-                                 _NS("Preferences"), o_module_name]];
-    o_panel_view = [o_panel contentView];
-
-    s_scroll_rc = s_panel_rc; 
-    s_scroll_rc.size.height -= 55; s_scroll_rc.origin.y += 55;
-    o_scroll_view = [[NSScrollView alloc] initWithFrame: s_scroll_rc];
-    [o_scroll_views setObject: o_scroll_view forKey: o_module_name];
-    [o_scroll_view setBorderType: NSGrooveBorder]; 
-    [o_scroll_view setHasVerticalScroller: YES];
-    [o_scroll_view setDrawsBackground: NO];
-    [o_scroll_view setRulersVisible: YES];
-    [o_panel_view addSubview: o_scroll_view];
-
-    o_tb_items = [[NSMutableDictionary alloc] init];
-    o_views = [[NSMutableDictionary alloc] init];
-
-    [o_save_prefs setObject: [[NSMutableArray alloc] init]
-                  forKey: o_module_name];
-
+    
     /* Enumerate config options and add corresponding config boxes */
+    o_module_name = [NSString stringWithUTF8String: p_parser->psz_object_name];
     p_item = p_parser->p_config;
 
     i_pos = 0;
     i_module_tag = 3;
 
 #define X_ORIGIN 20
-#define Y_ORIGIN (X_ORIGIN - 10) 
+#define Y_ORIGIN (X_ORIGIN - 10)
 
 #define CHECK_VIEW_HEIGHT \
     { \
         [o_text_field setBordered: NO]; \
         [o_text_field setEditable: NO]; \
         [o_text_field setSelectable: NO]; \
-        [o_text_field setStringValue: \
-                [NSString stringWithCString: label]]; \
+        if ( label ) \
+        { \
+            [o_text_field setStringValue: \
+                [[VLCMain sharedInstance] localizedString: label]]; \
+        } \
+        [o_text_field sizeToFit]; \
         [o_view addSubview: [o_text_field autorelease]]; \
     }
 
-#define INPUT_FIELD( ctype, cname, label, w, msg, param ) \
+#define INPUT_FIELD( ctype, cname, label, w, msg, param, tip ) \
     { \
-        s_rc.size.height = 23; \
+        char * psz_duptip = NULL; \
+        if ( p_item->psz_longtext != NULL ) \
+            psz_duptip = strdup( p_item->psz_longtext ); \
+        s_rc.size.height = 25; \
         s_rc.size.width = w; \
         s_rc.origin.y += 10; \
         CHECK_VIEW_HEIGHT; \
         [o_text_field setAlignment: NSRightTextAlignment]; \
         CONTROL_CONFIG( o_text_field, o_module_name, ctype, cname ); \
         [o_text_field msg: param]; \
+        if ( psz_duptip != NULL ) \
+        { \
+            [o_text_field setToolTip: [[VLCMain sharedInstance] wrapString: [[VLCMain sharedInstance] localizedString: \
+                                       psz_duptip] toWidth: PREFS_WRAP ]]; \
+            free(psz_duptip);\
+        } \
         [o_view addSubview: [o_text_field autorelease]]; \
         [[NSNotificationCenter defaultCenter] addObserver: self \
             selector: @selector(configChanged:) \
         s_rc.origin.x = X_ORIGIN; \
     }
 
-#define INPUT_FIELD_INTEGER( name, label, w, param ) \
-    INPUT_FIELD( CONFIG_ITEM_INTEGER, name, label, w, setIntValue, param )
-#define INPUT_FIELD_FLOAT( name, label, w, param ) \
-    INPUT_FIELD( CONFIG_ITEM_FLOAT, name, label, w, setFloatValue, param )
-#define INPUT_FIELD_STRING( name, label, w, param ) \
-    INPUT_FIELD( CONFIG_ITEM_STRING, name, label, w, setStringValue, param )
+#define INPUT_FIELD_INTEGER( name, label, w, param, tip ) \
+    INPUT_FIELD( CONFIG_ITEM_INTEGER, name, label, w, setIntValue, param, tip )
+#define INPUT_FIELD_FLOAT( name, label, w, param, tip ) \
+    INPUT_FIELD( CONFIG_ITEM_FLOAT, name, label, w, setFloatValue, param, tip )
+#define INPUT_FIELD_STRING( name, label, w, param, tip ) \
+    INPUT_FIELD( CONFIG_ITEM_STRING, name, label, w, setStringValue, param, tip )
+
+    /* Init View */
+    s_vrc = [[o_prefs_view contentView] bounds]; s_vrc.size.height -= 4;
+    o_view = [[VLCFlippedView alloc] initWithFrame: s_vrc];
+    [o_view setAutoresizingMask: NSViewWidthSizable];
+    s_rc.origin.x = X_ORIGIN;
+    s_rc.origin.y = Y_ORIGIN;
+    BOOL b_right_cat = TRUE;
 
     if( p_item ) do
     {
-
-        switch( p_item->i_type )
+        if( p_item->i_type == CONFIG_HINT_CATEGORY )
         {
-
-        case CONFIG_HINT_CATEGORY:
+            if( !strcmp( p_parser->psz_object_name, "main" ) &&
+                [o_item_name isEqualToString: [[VLCMain sharedInstance] localizedString: p_item->psz_text]] )
+            {
+                b_right_cat = TRUE;
+            } else if( strcmp( p_parser->psz_object_name, "main" ) )
+            {
+                 b_right_cat = TRUE;
+            } else b_right_cat = FALSE; 
+        } else if( p_item->i_type == CONFIG_HINT_END && !strcmp( p_parser->psz_object_name, "main" ) )
         {
-            NSString *o_key;
-            NSString *o_label;
-            NSToolbarItem *o_tbi;
+            b_right_cat = FALSE;
+        }
+        
+        if( (p_item->b_advanced && !b_advanced ) || !b_right_cat )
+        {
+            continue;
+        }
+        switch( p_item->i_type )
+        {
+            case CONFIG_ITEM_MODULE:
+            {
+                VLCPopUpButton *o_modules;
+                module_t *p_a_module;
+                char * psz_duptip = NULL;
 
-            o_label = [NSString stringWithCString: p_item->psz_text];
-            o_tbi = [[NSToolbarItem alloc] initWithItemIdentifier: o_label]; 
-            [o_tbi setImage: [NSImage imageNamed: @"NSApplicationIcon"]];
-            [o_tbi setLabel: o_label];
-            [o_tbi setTarget: self];
-            [o_tbi setAction: @selector(selectPrefView:)];
+                if ( p_item->psz_longtext != NULL )
+                    psz_duptip = strdup( p_item->psz_longtext );
 
-            o_key = [NSString stringWithFormat: @"%02d %@",
-                                                i_pos, o_label]; 
-            [o_tb_items setObject: o_tbi forKey: o_key];
+                s_rc.size.height = 25;
+                s_rc.size.width = 200;
+                s_rc.origin.y += 10;
+                
+                CHECK_VIEW_HEIGHT;
+    
+                o_modules = [[VLCPopUpButton alloc] initWithFrame: s_rc];
+                CONTROL_CONFIG( o_modules, o_module_name,
+                                    CONFIG_ITEM_MODULE, p_item->psz_name );
+                [o_modules setTarget: self];
+                [o_modules setAction: @selector(configChanged:)];
+                [o_modules sendActionOn:NSLeftMouseUpMask];
+                
+                if ( psz_duptip != NULL )
+                {
+                    [o_modules setToolTip: [[VLCMain sharedInstance] wrapString: [[VLCMain sharedInstance] localizedString: psz_duptip] toWidth: PREFS_WRAP]];
+                    free( psz_duptip );
+                }
+                [o_view addSubview: [o_modules autorelease]];
 
-            s_vrc = s_scroll_rc; s_vrc.size.height -= 4;
-            o_view = [[VLCFlippedView alloc] initWithFrame: s_vrc];
-            [o_views setObject: o_view forKey: o_label];
+                [o_modules addItemWithTitle: _NS("Default")];
+                [[o_modules lastItem] setTag: -1];
+                [o_modules selectItem: [o_modules lastItem]];
 
-            s_rc.origin.x = X_ORIGIN;
-            s_rc.origin.y = Y_ORIGIN;
+                /* build a list of available modules */
+                {
+                    for( i_index = 0; i_index < p_list->i_count; i_index++ )
+                    {
+                        p_a_module = (module_t *)p_list->p_values[i_index].p_object ;
+    
+                        if( !strcmp( p_a_module->psz_capability,
+                                    p_item->psz_type ) )
+                        {
+                            NSString *o_description = [[VLCMain sharedInstance]
+                                localizedString: p_a_module->psz_longname];
+                            [o_modules addItemWithTitle: o_description];
+                            [[o_modules lastItem] setTag: p_a_module->i_object_id];
+
+                            if( p_item->psz_value &&
+                                !strcmp( p_item->psz_value, p_a_module->psz_object_name ) )
+                            {
+                                [o_modules selectItem:[o_modules lastItem]];
+                            }
+                        }
+                    }
+                }
 
-            i_module_tag = 3;
+                CONTROL_LABEL( p_item->psz_text );
+                s_rc.origin.y += s_rc.size.height;
+                s_rc.origin.x = X_ORIGIN;
+            }
+            break;
 
-            if( i_pos == 0 )
+            case CONFIG_ITEM_FILE:
+            case CONFIG_ITEM_DIRECTORY:
             {
-                [o_scroll_view setDocumentView: o_view]; 
-            }
+                char *psz_duptip = NULL;
+                char *psz_value = p_item->psz_value ?
+                                    p_item->psz_value : "";
 
-            i_pos++;
-        }
-        break;
+                if ( p_item->psz_longtext != NULL )
+                    psz_duptip = strdup( p_item->psz_longtext );
 
-        case CONFIG_ITEM_MODULE:
-        {
-            NSBox *o_box;
-            NSRect s_crc;
-            NSView *o_cview;
-            NSPopUpButton *o_modules;
-            NSButton *o_btn_select;
-            NSButton *o_btn_configure;
-
-#define MODULE_BUTTON( button, title, sel ) \
-    { \
-        s_brc.size.height = 25; \
-        s_brc.origin.x += s_brc.size.width + 10; \
-        s_brc.size.width = s_crc.size.width - s_brc.origin.x - 10; \
-        button = [[NSButton alloc] initWithFrame: s_brc]; \
-        [button setButtonType: NSMomentaryPushInButton]; \
-        [button setBezelStyle: NSRoundedBezelStyle]; \
-        [button setTitle: title]; \
-        [button setTag: i_module_tag++]; \
-        [button setTarget: self]; \
-        [button setAction: @selector(sel)]; \
-        [o_cview addSubview: [button autorelease]]; \
-    }
+                s_rc.origin.y += 10;
+                s_rc.size.width = - 10;
+                s_rc.size.height = 25;
+                CHECK_VIEW_HEIGHT;
+                CONTROL_LABEL( p_item->psz_text );
+                s_rc.origin.x = X_ORIGIN;
+                s_rc.origin.y += s_rc.size.height;
+                CHECK_VIEW_HEIGHT;
 
-            s_rc.size.height = 100;
-            s_rc.size.width = s_vrc.size.width - X_ORIGIN * 2 - 20;
-            s_rc.origin.y += i_module_tag == 3 ? Y_ORIGIN : 20;
-
-            CHECK_VIEW_HEIGHT;
-
-            o_box = [[NSBox alloc] initWithFrame: s_rc];
-            [o_box setTitle: [NSString stringWithCString: p_item->psz_text]];
-            [o_view addSubview: [o_box autorelease]];
-            s_rc.origin.y += s_rc.size.height + 10;
-            o_cview = [[VLCFlippedView alloc] initWithFrame: s_rc];
-            [o_box setContentView: [o_cview autorelease]];
-            s_crc = [o_cview bounds];
-
-            s_brc = NSMakeRect( 5, 10, 200, 23 ); 
-            o_modules = [[NSPopUpButton alloc] initWithFrame: s_brc];
-            [o_modules setTag: i_module_tag++];
-            [o_modules setTarget: self];
-            [o_modules setAction: @selector(moduleSelected:)];
-            [o_cview addSubview: [o_modules autorelease]]; 
-
-            MODULE_BUTTON( o_btn_configure, _NS("Configure"), 
-                           configureModule: );
-
-            s_brc = NSMakeRect( 8, s_brc.origin.y + s_brc.size.height + 10, 
-                                194, 23 ); 
-            o_text_field = [[VLCTextField alloc] initWithFrame: s_brc];
-            [o_text_field setTag: i_module_tag++];
-            [o_text_field setAlignment: NSLeftTextAlignment];
-            CONTROL_CONFIG( o_text_field, o_module_name, 
-                            CONFIG_ITEM_MODULE, p_item->psz_name );
-            [[NSNotificationCenter defaultCenter] addObserver: self
-                selector: @selector(configChanged:)
-                name: NSControlTextDidChangeNotification
-                object: o_text_field];
-            [o_cview addSubview: [o_text_field autorelease]];
-
-            s_brc.origin.x += 3;
-            MODULE_BUTTON( o_btn_select, _NS("Select"), 
-                           selectModule: );
-
-            [o_modules addItemWithTitle: _NS("None")];
-
-            /* build a list of available modules */
+                VLCButton *button = [[VLCButton alloc] initWithFrame: s_rc];
+                CONTROL_CONFIG( button, o_module_name, CONFIG_ITEM_STRING , p_item->psz_name );
+                [button setButtonType: NSMomentaryPushInButton];
+                [button setBezelStyle: NSRoundedBezelStyle];
+                [button setTitle: _NS("Browse...")];
+                [button sizeToFit];
+                [button setAutoresizingMask:NSViewMinXMargin];
+                [button setFrameOrigin: NSMakePoint( s_vrc.size.width - ( 10 + [button frame].size.width), s_rc.origin.y)];
+
+                [button setTarget: self];
+                [button setAction: @selector(openFileDialog:)];
+
+                s_rc.size.height = 25;
+                s_rc.size.width = s_vrc.size.width - ( 35 + [button frame].size.width);
+                
+                o_text_field = [[VLCTextField alloc] initWithFrame: s_rc];
+                CONTROL_CONFIG( o_text_field, o_module_name, CONFIG_ITEM_STRING , p_item->psz_name );
+
+                [o_text_field setStringValue: [[VLCMain sharedInstance] localizedString: psz_value]];
+                if ( psz_duptip != NULL )
+                {
+                    [o_text_field setToolTip: [[VLCMain sharedInstance] wrapString: [[VLCMain sharedInstance] localizedString:
+                                            psz_duptip] toWidth: PREFS_WRAP ]];
+                    free(psz_duptip);
+                }
+                
+                [[NSNotificationCenter defaultCenter] addObserver: self
+                    selector: @selector(configChanged:)
+                    name: NSControlTextDidChangeNotification
+                    object: o_text_field];
+                [o_text_field setAutoresizingMask:NSViewWidthSizable];
+                [button setTag: (int) o_text_field ]; /* FIXME */
+                
+                [o_view addSubview: [o_text_field autorelease]];
+                [o_view addSubview: [button autorelease]];
+                s_rc.origin.y += s_rc.size.height;
+                s_rc.origin.x = X_ORIGIN;
+            }
+            break;
+            
+            case CONFIG_ITEM_STRING:            
             {
-                for( i_index = 0; i_index < list.i_count; i_index++ )
+                if( !p_item->ppsz_list )
                 {
-                    p_parser = (module_t *)list.p_values[i_index].p_object ;
-
-                    if( !strcmp( p_parser->psz_capability,
-                                 p_item->psz_type ) )
+                    char *psz_value = p_item->psz_value ?
+                                    p_item->psz_value : "";
+    
+                    INPUT_FIELD_STRING( p_item->psz_name, p_item->psz_text, 200,
+                                        [[VLCMain sharedInstance] localizedString: psz_value],
+                                        p_item->psz_longtext );
+                }
+                else
+                {
+                    int i;
+                    VLCComboBox *o_combo_box;
+                    char * psz_duptip = NULL;
+                    if ( p_item->psz_longtext != NULL )
+                        psz_duptip = strdup( p_item->psz_longtext );
+    
+                    s_rc.size.height = 25;
+                    s_rc.size.width = 200;
+                    s_rc.origin.y += 10;
+    
+                    CHECK_VIEW_HEIGHT;
+    
+                    o_combo_box = [[VLCComboBox alloc] initWithFrame: s_rc];
+                    CONTROL_CONFIG( o_combo_box, o_module_name,
+                                    CONFIG_ITEM_STRING, p_item->psz_name );
+                    [o_combo_box setTarget: self];
+                    [o_combo_box setAction: @selector(configChanged:)];
+                    [o_combo_box sendActionOn:NSLeftMouseUpMask];
+                    [[NSNotificationCenter defaultCenter] addObserver: self
+                        selector: @selector(configChanged:)
+                        name: NSControlTextDidChangeNotification
+                        object: o_combo_box];
+
+                    if ( psz_duptip != NULL )
                     {
-                        NSString *o_object_name = [NSString 
-                            stringWithCString: p_parser->psz_object_name];
-                        [o_modules addItemWithTitle: o_object_name];
+                        [o_combo_box setToolTip: [[VLCMain sharedInstance] wrapString: [[VLCMain sharedInstance] localizedString: psz_duptip] toWidth: PREFS_WRAP]];
+                        free( psz_duptip );
                     }
+                    [o_view addSubview: [o_combo_box autorelease]];
+                    
+                    for( i=0; p_item->ppsz_list[i]; i++ )
+                    {
+                        [o_combo_box addItemWithObjectValue:
+                            [[VLCMain sharedInstance] localizedString: p_item->ppsz_list[i]]];
+                    }
+                    [o_combo_box setStringValue: [[VLCMain sharedInstance] localizedString: 
+                        p_item->psz_value ? p_item->psz_value : ""]];
+    
+                    CONTROL_LABEL( p_item->psz_text );
+    
+                    s_rc.origin.y += s_rc.size.height;
+                    s_rc.origin.x = X_ORIGIN;
                 }
+    
             }
-
-            if( p_item->psz_value != NULL )
+            break;
+    
+            case CONFIG_ITEM_INTEGER:
             {
-                NSString *o_value =
-                    [NSString stringWithCString: p_item->psz_value];
-
-                [o_text_field setStringValue: o_value]; 
-                [o_modules selectItemWithTitle: o_value]; 
-                [o_btn_configure setEnabled: [self hasPrefs: o_value]]; 
+                if( p_item->i_min == p_item->i_max )
+                {
+                    INPUT_FIELD_INTEGER( p_item->psz_name, p_item->psz_text, 70,
+                        p_item->i_value, p_item->psz_longtext );
+                }
+                else
+                {
+                    /*create a slider */
+                    VLCSlider *o_slider;
+                    char * psz_duptip = NULL;
+                    if ( p_item->psz_longtext != NULL )
+                        psz_duptip = strdup( p_item->psz_longtext );
+        
+                    s_rc.size.height = 27;
+                    s_rc.size.width = 200;
+                    s_rc.origin.y += 10;
+        
+                    CHECK_VIEW_HEIGHT;
+        
+                    o_slider = [[VLCSlider alloc] initWithFrame: s_rc];
+                    [o_slider setMinValue: p_item->i_min];
+                    [o_slider setMaxValue: p_item->i_max];
+                    [o_slider setIntValue: p_item->i_value];
+
+                    if ( psz_duptip != NULL )
+                    {
+                        [o_slider setToolTip: [[VLCMain sharedInstance] wrapString: [[VLCMain sharedInstance] localizedString: psz_duptip] toWidth: PREFS_WRAP]];
+                        free( psz_duptip );
+                    }
+                    [o_slider setTarget: self];
+                    [o_slider setAction: @selector(configChanged:)];
+                    [o_slider sendActionOn:NSLeftMouseUpMask];
+                    CONTROL_CONFIG( o_slider, o_module_name,
+                                    CONFIG_ITEM_INTEGER, p_item->psz_name );
+                    [o_view addSubview: [o_slider autorelease]];
+                    CONTROL_LABEL( p_item->psz_text );
+        
+                    s_rc.origin.y += s_rc.size.height;
+                    s_rc.origin.x = X_ORIGIN;
+                }
             }
-            else
+            break;
+    
+            case CONFIG_ITEM_FLOAT:
             {
-                [o_modules selectItemWithTitle: _NS("None")];
-                [o_btn_configure setEnabled: NO];
+                if( p_item->f_min == p_item->f_max )
+                {
+                    INPUT_FIELD_FLOAT( p_item->psz_name, p_item->psz_text, 70,
+                        p_item->f_value, p_item->psz_longtext );
+                }
+                else
+                {
+                    /* create a slider */
+                    VLCSlider *o_slider;
+                    char * psz_duptip = NULL;
+                    if ( p_item->psz_longtext != NULL )
+                        psz_duptip = strdup( p_item->psz_longtext );
+        
+                    s_rc.size.height = 27;
+                    s_rc.size.width = 200;
+                    s_rc.origin.y += 10;
+        
+                    CHECK_VIEW_HEIGHT;
+        
+                    o_slider = [[VLCSlider alloc] initWithFrame: s_rc];
+                    [o_slider setMinValue: p_item->f_min];
+                    [o_slider setMaxValue: p_item->f_max];
+                    [o_slider setFloatValue: p_item->f_value];
+
+                    if ( psz_duptip != NULL )
+                    {
+                        [o_slider setToolTip: [[VLCMain sharedInstance] wrapString: [[VLCMain sharedInstance] localizedString: psz_duptip] toWidth: PREFS_WRAP]];
+                        free( psz_duptip );
+                    }
+                    [o_slider setTarget: self];
+                    [o_slider setAction: @selector(configChanged:)];
+                    [o_slider sendActionOn:NSLeftMouseUpMask];
+                    CONTROL_CONFIG( o_slider, o_module_name,
+                                    CONFIG_ITEM_FLOAT, p_item->psz_name );
+                    [o_view addSubview: [o_slider autorelease]];
+                    CONTROL_LABEL( p_item->psz_text );
+        
+                    s_rc.origin.y += s_rc.size.height;
+                    s_rc.origin.x = X_ORIGIN;
+                }
             }
-
-#undef MODULE_BUTTON
-        }
-        break;
-
-        case CONFIG_ITEM_STRING:
-        case CONFIG_ITEM_FILE:
-        {
-
-            if( !p_item->ppsz_list )
+            break;
+    
+            case CONFIG_ITEM_BOOL:
             {
-                char *psz_value = p_item->psz_value ?
-                                  p_item->psz_value : "";
-
-                INPUT_FIELD_STRING( p_item->psz_name, p_item->psz_text, 150,
-                                    [NSString stringWithCString: psz_value] );
+                VLCButton *o_btn_bool;
+                char * psz_duptip = NULL;
+
+                if ( p_item->psz_longtext != NULL )
+                    psz_duptip = strdup( p_item->psz_longtext );
+    
+                s_rc.size.height = 27;
+                s_rc.size.width = s_vrc.size.width - X_ORIGIN * 2 - 20;
+                s_rc.origin.y += 10;
+    
+                CHECK_VIEW_HEIGHT;
+    
+                o_btn_bool = [[VLCButton alloc] initWithFrame: s_rc];
+                [o_btn_bool setButtonType: NSSwitchButton];
+                [o_btn_bool setIntValue: p_item->i_value];
+                [o_btn_bool setTitle: [[VLCMain sharedInstance] localizedString: p_item->psz_text]];
+                if ( psz_duptip != NULL )
+                {
+                    [o_btn_bool setToolTip: [[VLCMain sharedInstance] wrapString: [[VLCMain sharedInstance] localizedString: psz_duptip] toWidth: PREFS_WRAP]];
+                    free( psz_duptip );
+                }
+                [o_btn_bool setTarget: self];
+                [o_btn_bool setAction: @selector(configChanged:)];
+                CONTROL_CONFIG( o_btn_bool, o_module_name,
+                                CONFIG_ITEM_BOOL, p_item->psz_name );
+                [o_view addSubview: [o_btn_bool autorelease]];
+    
+                s_rc.origin.y += s_rc.size.height;
             }
-            else
+            break;
+
+            case CONFIG_ITEM_KEY:
             {
                 int i;
+                char *psz_duptip = NULL;
                 VLCComboBox *o_combo_box;
 
-                s_rc.size.height = 25;
-                s_rc.size.width = 150;
+                if ( p_item->psz_longtext != NULL )
+                    psz_duptip = strdup( p_item->psz_longtext );
+
                 s_rc.origin.y += 10;
+                s_rc.size.width = - 10;
+                s_rc.size.height = 20;
+                CHECK_VIEW_HEIGHT;
+                CONTROL_LABEL( p_item->psz_text );
+                s_rc.origin.x = X_ORIGIN;
+                s_rc.origin.y += s_rc.size.height;
+                s_rc.size.width = s_vrc.size.width - X_ORIGIN * 2;
+                CHECK_VIEW_HEIGHT;
+                VLCMatrix *o_matrix = [[VLCMatrix alloc] initWithFrame: s_rc mode: NSHighlightModeMatrix cellClass: [NSButtonCell class] numberOfRows:2 numberOfColumns:2];
+                NSArray *o_cells = [o_matrix cells];
+                for( i=0; i < [o_cells count]; i++ )
+                {
+                    NSButtonCell *o_current_cell = [o_cells objectAtIndex:i];
+                    [o_current_cell setButtonType: NSSwitchButton];
+                    [o_current_cell setControlSize: NSSmallControlSize];
+                    if( psz_duptip != NULL )
+                    {
+                        [o_matrix setToolTip: [[VLCMain sharedInstance] wrapString: [[VLCMain sharedInstance] localizedString: psz_duptip] toWidth: PREFS_WRAP] forCell: o_current_cell];
+                    }
+                    switch( i )
+                    {
+                        case 0:
+                            [o_current_cell setTitle:_NS("Command")];
+                            [o_current_cell setState: p_item->i_value & KEY_MODIFIER_COMMAND];
+                            break;
+                        case 1:
+                            [o_current_cell setTitle:_NS("Control")];
+                            [o_current_cell setState: p_item->i_value & KEY_MODIFIER_CTRL];
+                            break;
+                        case 2:
+                            [o_current_cell setTitle:_NS("Option/Alt")];
+                            [o_current_cell setState: p_item->i_value & KEY_MODIFIER_ALT];
+                            break;
+                        case 3:
+                            [o_current_cell setTitle:_NS("Shift")];
+                            [o_current_cell setState: p_item->i_value & KEY_MODIFIER_SHIFT];
+                            break;
+                    }
+                    [o_current_cell setTarget: self];
+                    [o_current_cell setAction: @selector(configChanged:)];
+                    [o_current_cell sendActionOn:NSLeftMouseUpMask];
+                }
+                CONTROL_CONFIG( o_matrix, o_module_name,
+                                CONFIG_ITEM_KEY, p_item->psz_name );
+                [o_matrix sizeToCells];
+                [o_view addSubview: [o_matrix autorelease]];
+
+                s_rc.origin.x += [o_matrix frame].size.width + 20;
+                s_rc.size.height = 25;
+                s_rc.size.width = 100;
 
                 CHECK_VIEW_HEIGHT;
 
                 o_combo_box = [[VLCComboBox alloc] initWithFrame: s_rc];
-                CONTROL_CONFIG( o_combo_box, o_module_name, 
-                                CONFIG_ITEM_STRING, p_item->psz_name );
-                [o_view addSubview: [o_combo_box autorelease]];
+                CONTROL_CONFIG( o_combo_box, o_module_name,
+                                CONFIG_ITEM_KEY, p_item->psz_name );
+                [o_combo_box setTarget: self];
+                [o_combo_box setAction: @selector(configChanged:)];
+                [o_combo_box sendActionOn:NSLeftMouseUpMask];
                 [[NSNotificationCenter defaultCenter] addObserver: self
-                    selector: @selector(configChanged:)
-                    name: NSControlTextDidChangeNotification
-                    object: o_combo_box];
-                [[NSNotificationCenter defaultCenter] addObserver: self
-                    selector: @selector(configChanged:)
-                    name: NSComboBoxSelectionDidChangeNotification 
-                    object: o_combo_box];
+                        selector: @selector(configChanged:)
+                        name: NSControlTextDidChangeNotification
+                        object: o_combo_box];
 
-                for( i=0; p_item->ppsz_list[i]; i++ )
+                if ( psz_duptip != NULL )
                 {
-                    [o_combo_box addItemWithObjectValue:
-                        [NSString stringWithCString: p_item->ppsz_list[i]]]; 
+                    [o_combo_box setToolTip: [[VLCMain sharedInstance] wrapString: [[VLCMain sharedInstance] localizedString: psz_duptip] toWidth: PREFS_WRAP]];
                 }
-
-                CONTROL_LABEL( p_item->psz_text ); 
-
+                [o_view addSubview: [o_combo_box autorelease]];
+                
+                for( i = 0; i < sizeof(vlc_keys) / sizeof(key_descriptor_t); i++ )
+                {
+                    
+                    if( vlc_keys[i].psz_key_string && *vlc_keys[i].psz_key_string )
+                    [o_combo_box addItemWithObjectValue: [[VLCMain sharedInstance] localizedString:vlc_keys[i].psz_key_string]];
+                }
+                
+                [o_combo_box setStringValue: [[VLCMain sharedInstance] localizedString:KeyToString(( ((unsigned int)p_item->i_value) & ~KEY_MODIFIER ))]];
+                
                 s_rc.origin.y += s_rc.size.height;
                 s_rc.origin.x = X_ORIGIN;
+                if( psz_duptip ) free( psz_duptip );
             }
-
-        }
-        break;
-
-        case CONFIG_ITEM_INTEGER:
-        {
-            INPUT_FIELD_INTEGER( p_item->psz_name, p_item->psz_text, 70, 
-                                 p_item->i_value );
-        }
-        break;
-
-        case CONFIG_ITEM_FLOAT:
-        {
-            INPUT_FIELD_FLOAT( p_item->psz_name, p_item->psz_text, 70,
-                               p_item->f_value );
-        }
-        break;
-
-        case CONFIG_ITEM_BOOL:
-        {
-            VLCButton *o_btn_bool;
-
-            s_rc.size.height = 20;
-            s_rc.size.width = s_vrc.size.width - X_ORIGIN * 2 - 20;
-            s_rc.origin.y += 10;
-
-            CHECK_VIEW_HEIGHT;
-
-            o_btn_bool = [[VLCButton alloc] initWithFrame: s_rc];
-            [o_btn_bool setButtonType: NSSwitchButton];
-            [o_btn_bool setIntValue: p_item->i_value];
-            [o_btn_bool setTitle: 
-                [NSString stringWithCString: p_item->psz_text]]; 
-            [o_btn_bool setTarget: self];
-            [o_btn_bool setAction: @selector(configChanged:)];
-            CONTROL_CONFIG( o_btn_bool, o_module_name, 
-                            CONFIG_ITEM_BOOL, p_item->psz_name ); 
-            [o_view addSubview: [o_btn_bool autorelease]];
-
-            s_rc.origin.y += s_rc.size.height;
-        }
-        break;
-
+            break;
+    
+            }
+    
+    #undef INPUT_FIELD_INTEGER
+    #undef INPUT_FIELD_FLOAT
+    #undef INPUT_FIELD_STRING
+    #undef INPUT_FIELD
+    #undef CHECK_VIEW_HEIGHT
+    #undef CONTROL_LABEL
+    #undef Y_ORIGIN
+    #undef X_ORIGIN
         }
-
-#undef INPUT_FIELD_INTEGER
-#undef INPUT_FIELD_FLOAT
-#undef INPUT_FIELD_STRING
-#undef INPUT_FIELD
-#undef CHECK_VIEW_HEIGHT
-#undef CONTROL_LABEL
-#undef Y_ORIGIN
-#undef X_ORIGIN
-    }
-    while( p_item->i_type != CONFIG_HINT_END && p_item++ );
-
-    vlc_list_release( &list );
-
-    [o_toolbars setObject: o_tb_items forKey: o_module_name];
-    [o_toolbar setDelegate: self];
-    [o_panel setToolbar: [o_toolbar autorelease]];
-
-#define DEF_PANEL_BUTTON( tag, title, sel ) \
-    { \
-        o_button = [[NSButton alloc] initWithFrame: s_rc]; \
-        [o_button setButtonType: NSMomentaryPushInButton]; \
-        [o_button setBezelStyle: NSRoundedBezelStyle]; \
-        [o_button setAction: @selector(sel)]; \
-        [o_button setTarget: self]; \
-        [o_button setTitle: title]; \
-        [o_button setTag: tag]; \
-        [o_panel_view addSubview: [o_button autorelease]]; \
-    }
-
-    s_rc.origin.y = s_panel_rc.origin.y + 14;
-    s_rc.size.height = 25; s_rc.size.width = 100;
-    s_rc.origin.x = s_panel_rc.size.width - s_rc.size.width - 14;
-    DEF_PANEL_BUTTON( 0, _NS("OK"), clickedCancelOK: ); 
-    [o_panel setDefaultButtonCell: [o_button cell]];
-
-    s_rc.origin.x -= s_rc.size.width;
-    DEF_PANEL_BUTTON( 1, _NS("Cancel"), clickedCancelOK: );
-
-    s_rc.origin.x -= s_rc.size.width;
-    DEF_PANEL_BUTTON( 2, _NS("Apply"), clickedApply: );
-    [o_button setEnabled: NO];
-
-#undef DEF_PANEL_BUTTON
-
-    [o_pref_panels setObject: o_panel forKey: o_module_name];
-    [o_panel_views setObject: o_views forKey: o_module_name];
-
-    [o_panel center];
-    [o_panel makeKeyAndOrderFront: nil];
+        while( p_item->i_type != CONFIG_HINT_END && p_item++ );
+        vlc_object_release( p_parser );
+        vlc_list_release( p_list );
+    
+    [o_prefs_view setDocumentView: o_view];
+    [o_prefs_view setNeedsDisplay: TRUE];
 }
 
-- (void)destroyPrefPanel:(id)o_unknown
-{
-    id v1;
-    NSPanel *o_panel;
-    NSEnumerator *o_e1;
-    NSMutableArray *o_prefs;
-    NSMutableDictionary *o_dic;
-    NSScrollView *o_scroll_view;
-    NSString *o_module_name;
-
-    o_module_name = (NSString *)([o_unknown isKindOfClass: [NSTimer class]] ?
-                                 [o_unknown userInfo] : o_unknown);
 
-#define DIC_REL(dic) \
-    { \
-    o_dic = [dic objectForKey: o_module_name]; \
-    [dic removeObjectForKey: o_module_name]; \
-    o_e1 = [o_dic objectEnumerator]; \
-    while( (v1 = [o_e1 nextObject]) ) \
-    { \
-        [v1 release]; \
-    } \
-    [o_dic removeAllObjects]; \
-    [o_dic release]; \
-    }
-
-    o_panel = [o_pref_panels objectForKey: o_module_name];
-    [o_pref_panels removeObjectForKey: o_module_name];
-    [o_panel release];
-
-    DIC_REL(o_toolbars);
-
-    o_scroll_view = [o_scroll_views objectForKey: o_module_name];
-    [o_scroll_views removeObjectForKey: o_module_name];
-    [o_scroll_view release];
-
-    DIC_REL(o_panel_views);
-
-    o_prefs = [o_save_prefs objectForKey: o_module_name];
-    [o_save_prefs removeObjectForKey: o_module_name];
-    [o_prefs removeAllObjects];
-    [o_prefs release];
+@end
 
-#undef DIC_REL
+@implementation VLCPrefs (NSTableDataSource)
 
+- (int)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item {
+    return (item == nil) ? [[VLCTreeItem rootItem] numberOfChildren] : [item numberOfChildren];
 }
 
-- (void)selectPrefView:(id)sender
-{
-    NSView *o_view;
-    NSString *o_module_name;
-    NSScrollView *o_scroll_view;
-    NSMutableDictionary *o_views;
-
-    o_module_name = [[sender toolbar] identifier];
-    o_views = [o_panel_views objectForKey: o_module_name];
-    o_view = [o_views objectForKey: [sender label]];
-
-    o_scroll_view = [o_scroll_views objectForKey: o_module_name];
-    [o_scroll_view setDocumentView: o_view]; 
+- (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item {
+    return (item == nil) ? YES : ([item numberOfChildren] != -1);
 }
 
-- (void)moduleSelected:(id)sender
-{
-    NSButton *o_btn_config;
-    NSString *o_module_name;
-    BOOL b_has_prefs = NO;
-
-    o_module_name = [sender titleOfSelectedItem];
-    o_btn_config = [[sender superview] viewWithTag: [sender tag] + 1];
-
-    if( ![o_module_name isEqualToString: _NS("None")] )
-    {
-        b_has_prefs = [self hasPrefs: o_module_name];
-    }
-
-    [o_btn_config setEnabled: b_has_prefs];
+- (id)outlineView:(NSOutlineView *)outlineView child:(int)index ofItem:(id)item {
+    return (item == nil) ? [[VLCTreeItem rootItem] childAtIndex:index] : [item childAtIndex:index];
 }
 
-- (void)configureModule:(id)sender
-{
-    NSString *o_module_name;
-    NSPopUpButton *o_modules;
-
-    o_modules = [[sender superview] viewWithTag: [sender tag] - 1]; 
-    o_module_name = [o_modules titleOfSelectedItem];
-
-    [self createPrefPanel: o_module_name];
+- (id)outlineView:(NSOutlineView *)outlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item {
+    return (item == nil) ? @"" : (id)[item getName];
 }
 
-- (void)selectModule:(id)sender
-{
-    NSString *o_module_name;
-    NSPopUpButton *o_modules;
-    NSTextField *o_module;
+@end
 
-    o_module = [[sender superview] viewWithTag: [sender tag] - 1];
-    o_modules = [[sender superview] viewWithTag: [sender tag] - 3];
-    o_module_name = [o_modules titleOfSelectedItem];
+@implementation VLCTreeItem
 
-    if( [o_module_name isEqualToString: _NS("None")] )
-    {
-        o_module_name = [NSString string];
-    }
+static VLCTreeItem *o_root_item = nil;
 
-    [o_module setStringValue: o_module_name];
-    [self configChanged: o_module];
-}
+#define IsALeafNode ((id)-1)
 
-- (void)configChanged:(id)o_unknown
+- (id)initWithName: (NSString *)o_item_name ID: (int)i_id parent:(VLCTreeItem *)o_parent_item
 {
-    id o_vlc_config = [o_unknown isKindOfClass: [NSNotification class]] ?
-                      [o_unknown object] : o_unknown;
-
-    NSString *o_module_name = [o_vlc_config moduleName]; 
-    NSPanel *o_pref_panel = [o_pref_panels objectForKey: o_module_name]; 
-    NSMutableArray *o_prefs = [o_save_prefs objectForKey: o_module_name];
+    self = [super init];
 
-    if( [o_prefs indexOfObjectIdenticalTo: o_vlc_config] == NSNotFound )
+    if( self != nil )
     {
-        NSView *o_pref_view = [o_pref_panel contentView];
-        NSButton *o_btn_apply = [o_pref_view viewWithTag: 2]; 
-
-        [o_prefs addObject: o_vlc_config];
-        [o_btn_apply setEnabled: YES];
+        o_name = [o_item_name copy];
+        i_object_id = i_id;
+        o_parent = o_parent_item;
     }
+    return( self );
 }
 
-- (void)clickedApply:(id)sender
-{
-    id o_vlc_control;
-    NSEnumerator *o_enum;
-
-    NSView *o_config_view = [sender superview];
-    NSWindow *o_config_panel = [o_config_view window];    
-    NSButton *o_btn_apply = [o_config_view viewWithTag: 2]; 
-    NSString *o_module_name = [[o_config_panel toolbar] identifier];
-    NSMutableArray *o_prefs = [o_save_prefs objectForKey: o_module_name];
++ (VLCTreeItem *)rootItem {
+   if (o_root_item == nil) o_root_item = [[VLCTreeItem alloc] initWithName:@"main" ID: 0 parent:nil];
+   return o_root_item;       
+}
 
-    o_enum = [o_prefs objectEnumerator];
-    while( ( o_vlc_control = [o_enum nextObject] ) )
-    {
-        int i_type = [o_vlc_control configType];
-        NSString *o_name = [o_vlc_control configName];
-        char *psz_name = (char *)[o_name lossyCString];
+- (void)dealloc
+{
+    if (o_children != IsALeafNode) [o_children release];
+    [o_name release];
+    [super dealloc];
+}
 
-        switch( i_type )
+/* Creates and returns the array of children
+ * Loads children incrementally */
+- (NSArray *)children {
+    if (o_children == NULL) {
+        intf_thread_t *p_intf = VLCIntf;
+        vlc_list_t      *p_list;
+        module_t        *p_module = NULL;
+        module_config_t *p_item;
+        int i_index,j;
+
+        /* List the modules */
+        p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
+        if( !p_list ) return nil;
+
+        if( [[self getName] isEqualToString: @"main"] )
         {
-
-        case CONFIG_ITEM_MODULE:
-        case CONFIG_ITEM_STRING:
-        case CONFIG_ITEM_FILE:
+            /*
+            * Build a tree of the main options
+            */
+            for( i_index = 0; i_index < p_list->i_count; i_index++ )
             {
-                char *psz_value;
-                NSString *o_value;
-
-                o_value = [o_vlc_control stringValue];
-                psz_value = (char *)[o_value lossyCString];
-
-                config_PutPsz( p_intf, psz_name, 
-                               *psz_value ? psz_value : NULL );
+                p_module = (module_t *)p_list->p_values[i_index].p_object;
+                if( !strcmp( p_module->psz_object_name, "main" ) )
+                    break;
             }
-            break;
-
-        case CONFIG_ITEM_INTEGER:
-        case CONFIG_ITEM_BOOL:
+            if( p_module == NULL )
             {
-                int i_value = [o_vlc_control intValue];
-
-                config_PutInt( p_intf, psz_name, i_value );
+                msg_Err( p_intf, "could not find the main module in our preferences" );
+                return nil;
             }
-            break;
-
-        case CONFIG_ITEM_FLOAT:
+            if( i_index < p_list->i_count )
             {
-                float f_value = [o_vlc_control floatValue];
-
-                config_PutFloat( p_intf, psz_name, f_value );
+                /* We found the main module */
+        
+                /* Enumerate config categories and store a reference so we can
+                 * generate their config panel them when it is asked by the user. */
+                p_item = p_module->p_config;
+                o_children = [[NSMutableArray alloc] initWithCapacity:10];
+
+                if( p_item ) do
+                {
+                    NSString *o_child_name;
+                    
+                    switch( p_item->i_type )
+                    {
+                    case CONFIG_HINT_CATEGORY:
+                        o_child_name = [[VLCMain sharedInstance] localizedString: p_item->psz_text];
+                        [o_children addObject:[[VLCTreeItem alloc] initWithName: o_child_name
+                            ID: p_module->i_object_id parent:self]];
+                        break;
+                    }
+                }
+                while( p_item->i_type != CONFIG_HINT_END && p_item++ );
+                
+                /* Add the modules item */
+                [o_children addObject:[[VLCTreeItem alloc] initWithName: _NS("Modules")
+                    ID: 0 parent:self]];
             }
-            break;
+            else
+            {
+                o_children = IsALeafNode;
+            }
+        }
+        else if( [[self getName] isEqualToString: _NS("Modules")] )
+        {
+            /* Add the capabilities */
+            o_children = [[NSMutableArray alloc] initWithCapacity:10];
+            for( i_index = 0; i_index < p_list->i_count; i_index++ )
+            {
+                p_module = (module_t *)p_list->p_values[i_index].p_object;
+        
+                /* Exclude the main module */
+                if( !strcmp( p_module->psz_object_name, "main" ) )
+                    continue;
+        
+                /* Exclude empty modules */
+                p_item = p_module->p_config;
+                if( !p_item ) continue;
+                do
+                {
+                    if( p_item->i_type & CONFIG_ITEM )
+                        break;
+                }
+                while( p_item->i_type != CONFIG_HINT_END && p_item++ );
+                if( p_item->i_type == CONFIG_HINT_END ) continue;
+        
+                /* Create the capability tree if it doesn't already exist */
+                NSString *o_capability;
+                o_capability = [[VLCMain sharedInstance] localizedString: p_module->psz_capability];
+                if( !p_module->psz_capability || !*p_module->psz_capability )
+                {
+                    /* Empty capability ? Let's look at the submodules */
+                    module_t * p_submodule;
+                    for( j = 0; j < p_module->i_children; j++ )
+                    {
+                        p_submodule = (module_t*)p_module->pp_children[ j ];
+                        if( p_submodule->psz_capability && *p_submodule->psz_capability )
+                        {
+                            o_capability = [[VLCMain sharedInstance] localizedString: p_submodule->psz_capability];
+                            BOOL b_found = FALSE;
+                            for( j = 0; j < (int)[o_children count]; j++ )
+                            {
+                                if( [[[o_children objectAtIndex:j] getName] isEqualToString: o_capability] )
+                                {
+                                    b_found = TRUE;
+                                    break;
+                                }
+                            }
+                            if( !b_found )
+                            {
+                                [o_children addObject:[[VLCTreeItem alloc] initWithName: o_capability
+                                ID: 0 parent:self]];
+                            }
+                        }
+                    }
+                }
 
+                BOOL b_found = FALSE;
+                for( j = 0; j < (int)[o_children count]; j++ )
+                {
+                    if( [[[o_children objectAtIndex:j] getName] isEqualToString: o_capability] )
+                    {
+                        b_found = TRUE;
+                        break;
+                    }
+                }
+                if( !b_found )
+                {
+                    [o_children addObject:[[VLCTreeItem alloc] initWithName: o_capability
+                    ID: 0 parent:self]];
+                }
+            }
+        }
+        else if( [[o_parent getName] isEqualToString: _NS("Modules")] )
+        {
+            /* Now add the modules */
+            o_children = [[NSMutableArray alloc] initWithCapacity:10];
+            for( i_index = 0; i_index < p_list->i_count; i_index++ )
+            {
+                p_module = (module_t *)p_list->p_values[i_index].p_object;
+        
+                /* Exclude the main module */
+                if( !strcmp( p_module->psz_object_name, "main" ) )
+                    continue;
+        
+                /* Exclude empty modules */
+                p_item = p_module->p_config;
+                if( !p_item ) continue;
+                do
+                {
+                    if( p_item->i_type & CONFIG_ITEM )
+                        break;
+                }
+                while( p_item->i_type != CONFIG_HINT_END && p_item++ );
+                if( p_item->i_type == CONFIG_HINT_END ) continue;
+        
+                /* Check the capability */
+                NSString *o_capability;
+                o_capability = [[VLCMain sharedInstance] localizedString: p_module->psz_capability];
+                if( !p_module->psz_capability || !*p_module->psz_capability )
+                {
+                    /* Empty capability ? Let's look at the submodules */
+                    module_t * p_submodule;
+                    for( j = 0; j < p_module->i_children; j++ )
+                    {
+                        p_submodule = (module_t*)p_module->pp_children[ j ];
+                        if( p_submodule->psz_capability && *p_submodule->psz_capability )
+                        {
+                            o_capability = [[VLCMain sharedInstance] localizedString: p_submodule->psz_capability];
+                            if( [o_capability isEqualToString: [self getName]] )
+                            {
+                            [o_children addObject:[[VLCTreeItem alloc] initWithName:
+                                [[VLCMain sharedInstance] localizedString: p_module->psz_object_name ]
+                                ID: p_module->i_object_id parent:self]];
+                            }
+                        }
+                    }
+                }
+                else if( [o_capability isEqualToString: [self getName]] )
+                {
+                    [o_children addObject:[[VLCTreeItem alloc] initWithName:
+                        [[VLCMain sharedInstance] localizedString: p_module->psz_object_name ]
+                        ID: p_module->i_object_id parent:self]];
+                }
+            }
+        }
+        else
+        {
+            /* all the other stuff are leafs */
+            o_children = IsALeafNode;
         }
+        vlc_list_release( p_list );
     }
-
-    [o_btn_apply setEnabled: NO];
-    [o_prefs removeAllObjects];
-
-    config_SaveConfigFile( p_intf, NULL );
+    return o_children;
 }
 
-- (void)clickedCancelOK:(id)sender
+- (int)getObjectID
 {
-    NSWindow *o_pref_panel = [[sender superview] window];
-    NSString *o_module_name = [[o_pref_panel toolbar] identifier];
-
-    if( [[sender title] isEqualToString: _NS("OK")] )
-    {
-        [self clickedApply: sender];
-    }
-
-    [o_pref_panel close];
-
-    if( [self respondsToSelector: @selector(performSelectorOnMainThread:
-                                            withObject:waitUntilDone:)] ) 
-    {
-        [self performSelectorOnMainThread: @selector(destroyPrefPanel:)
-                                           withObject: o_module_name
-                                           waitUntilDone: NO];
-    }
-    else
-    {
-        [NSTimer scheduledTimerWithTimeInterval: 0.1
-                 target: self selector: @selector(destroyPrefPanel:)
-                 userInfo: o_module_name repeats: NO];
-    }
+    return i_object_id;
 }
 
-@end
-
-@implementation VLCPrefs (NSToolbarDelegate)
-
-- (NSToolbarItem *)toolbar:(NSToolbar *)o_toolbar 
-                   itemForItemIdentifier:(NSString *)o_item_id 
-                   willBeInsertedIntoToolbar:(BOOL)b_flag
+- (NSString *)getName
 {
-    NSMutableDictionary *o_toolbar_items;
-    NSString *o_module_name = [o_toolbar identifier];
-
-    o_toolbar_items = [o_toolbars objectForKey: o_module_name];
-    if( o_toolbar_items == nil )
-    {
-        return( nil );
-    }
+    return o_name;
+}
 
-    return( [o_toolbar_items objectForKey: o_item_id] );
+- (VLCTreeItem *)childAtIndex:(int)i_index {
+    return [[self children] objectAtIndex:i_index];
 }
 
-- (NSArray *)toolbarAllowedItemIdentifiers:(NSToolbar*)o_toolbar
-{
-    return( [self toolbarDefaultItemIdentifiers: o_toolbar] );
+- (int)numberOfChildren {
+    id i_tmp = [self children];
+    return (i_tmp == IsALeafNode) ? (-1) : (int)[i_tmp count];
 }
 
-- (NSArray *)toolbarDefaultItemIdentifiers:(NSToolbar*)o_toolbar
+- (BOOL)hasPrefs:(NSString *)o_module_name
 {
-    NSArray *o_ids;
-    NSMutableDictionary *o_toolbar_items;
-    NSString *o_module_name = [o_toolbar identifier];
+    intf_thread_t *p_intf = VLCIntf;
+    module_t *p_parser;
+    vlc_list_t *p_list;
+    char *psz_module_name;
+    int i_index;
+
+    psz_module_name = (char *)[o_module_name UTF8String];
+
+    /* look for module */
+    p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
 
-    o_toolbar_items = [o_toolbars objectForKey: o_module_name];
-    if( o_toolbar_items == nil )
+    for( i_index = 0; i_index < p_list->i_count; i_index++ )
     {
-        return( nil );
-    }  
+        p_parser = (module_t *)p_list->p_values[i_index].p_object ;
 
-    o_ids = [[o_toolbar_items allKeys] 
-        sortedArrayUsingSelector: @selector(compare:)];
+        if( !strcmp( p_parser->psz_object_name, psz_module_name ) )
+        {
+            BOOL b_has_prefs = p_parser->i_config_items != 0;
+            vlc_list_release( p_list );
+            return( b_has_prefs );
+        }
+    }
 
-    return( o_ids );
+    vlc_list_release( p_list );
+
+    return( NO );
 }
 
 @end
 
+
 @implementation VLCFlippedView
 
 - (BOOL)isFlipped
 @end
 
 IMPL_CONTROL_CONFIG(Button);
+IMPL_CONTROL_CONFIG(PopUpButton);
 IMPL_CONTROL_CONFIG(ComboBox);
 IMPL_CONTROL_CONFIG(TextField);
+IMPL_CONTROL_CONFIG(Slider);
+IMPL_CONTROL_CONFIG(Matrix);