1 /*****************************************************************************
2 * prefs.m: MacOS X module for vlc
3 *****************************************************************************
4 * Copyright (C) 2002-2006 the VideoLAN team
7 * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8 * Derk-Jan Hartman <hartman at videolan dot org>
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.
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.
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 *****************************************************************************/
25 /* VLCPrefs manages the main preferences dialog
26 the class is related to wxwindows intf, PrefsPanel */
27 /* VLCTreeItem should contain:
28 - the children of the treeitem
29 - the associated prefs widgets
30 - the documentview with all the prefs widgets in it
31 - a saveChanges action
32 - a revertChanges action
33 - an advanced action (to hide/show advanced options)
34 - a redraw view action
35 - the children action should generate a list of the treeitems children (to be used by VLCPrefs datasource)
37 The class is sort of a mix of wxwindows intfs, PrefsTreeCtrl and ConfigTreeData
39 /* VLCConfigControl are subclassed NSView's containing and managing individual config items
40 the classes are VERY closely related to wxwindows ConfigControls */
42 /*****************************************************************************
44 *****************************************************************************/
45 #include <stdlib.h> /* malloc(), free() */
46 #include <sys/param.h> /* for MAXPATHLEN */
50 #include <vlc_config_cat.h>
54 #include "prefs_widgets.h"
57 /*****************************************************************************
58 * VLCPrefs implementation
59 *****************************************************************************/
60 @implementation VLCPrefs
62 static VLCPrefs *_o_sharedMainInstance = nil;
64 + (VLCPrefs *)sharedInstance
66 return _o_sharedMainInstance ? _o_sharedMainInstance : [[self alloc] init];
71 if( _o_sharedMainInstance ) {
76 _o_sharedMainInstance = [super init];
78 o_empty_view = [[NSView alloc] init];
81 return _o_sharedMainInstance;
86 [o_empty_view release];
93 b_advanced = config_GetInt( p_intf, "advanced" );
96 [o_advanced_ckb setState: b_advanced];
97 [o_prefs_view setBorderType: NSGrooveBorder];
98 [o_prefs_view setHasVerticalScroller: YES];
99 [o_prefs_view setDrawsBackground: NO];
100 [o_prefs_view setDocumentView: o_empty_view];
101 [o_tree selectRow:0 byExtendingSelection:NO];
104 - (void)setTitle: (NSString *) o_title_name
106 [o_title setStringValue: o_title_name];
111 /* load our nib (if not already loaded) */
112 [NSBundle loadNibNamed:@"Preferences" owner:self];
114 [o_prefs_window center];
115 [o_prefs_window makeKeyAndOrderFront:self];
120 [o_prefs_window setTitle: _NS("Preferences")];
121 [o_save_btn setTitle: _NS("Save")];
122 [o_cancel_btn setTitle: _NS("Cancel")];
123 [o_reset_btn setTitle: _NS("Reset All")];
124 [o_advanced_ckb setTitle: _NS("Advanced")];
127 - (IBAction)savePrefs: (id)sender
129 /* TODO: call savePrefs on Root item */
130 [[VLCTreeItem rootItem] applyChanges];
131 config_SaveConfigFile( p_intf, NULL );
132 [o_prefs_window orderOut:self];
135 - (IBAction)closePrefs: (id)sender
137 [o_prefs_window orderOut:self];
140 - (IBAction)resetAll: (id)sender
142 NSBeginInformationalAlertSheet(_NS("Reset Preferences"), _NS("Cancel"),
143 _NS("Continue"), nil, o_prefs_window, self,
144 @selector(sheetDidEnd: returnCode: contextInfo:), NULL, nil,
145 _NS("Beware this will reset the VLC media player preferences.\n"
146 "Are you sure you want to continue?") );
149 - (void)sheetDidEnd:(NSWindow *)o_sheet returnCode:(int)i_return
150 contextInfo:(void *)o_context
152 if( i_return == NSAlertAlternateReturn )
154 [o_prefs_view setDocumentView: o_empty_view];
155 config_ResetAll( p_intf );
156 [[VLCTreeItem rootItem] resetView];
157 [[o_tree itemAtRow:[o_tree selectedRow]]
158 showView:o_prefs_view advancedView:
159 ( [o_advanced_ckb state] == NSOnState ) ? VLC_TRUE : VLC_FALSE];
163 - (IBAction)advancedToggle: (id)sender
165 b_advanced = !b_advanced;
166 [o_advanced_ckb setState: b_advanced];
167 /* refresh the view of the current treeitem */
168 [[o_tree itemAtRow:[o_tree selectedRow]] showView:o_prefs_view advancedView:
169 ( [o_advanced_ckb state] == NSOnState ) ? VLC_TRUE : VLC_FALSE];
172 - (void)loadConfigTree
176 - (void)outlineViewSelectionIsChanging:(NSNotification *)o_notification
180 /* update the document view to the view of the selected tree item */
181 - (void)outlineViewSelectionDidChange:(NSNotification *)o_notification
183 [[o_tree itemAtRow:[o_tree selectedRow]] showView: o_prefs_view
184 advancedView:( [o_advanced_ckb state] == NSOnState ) ?
185 VLC_TRUE : VLC_FALSE];
190 @implementation VLCPrefs (NSTableDataSource)
192 - (int)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item {
193 return (item == nil) ? [[VLCTreeItem rootItem] numberOfChildren] :
194 [item numberOfChildren];
197 - (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item
199 return (item == nil) ? YES : ( ([item numberOfChildren] != -1) &&
200 ([item numberOfChildren] != 0));
203 - (id)outlineView:(NSOutlineView *)outlineView child:(int)index ofItem:(id)item {
204 return (item == nil) ? [[VLCTreeItem rootItem] childAtIndex:index] :
205 (id)[item childAtIndex:index];
208 - (id)outlineView:(NSOutlineView *)outlineView
209 objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item
211 return (item == nil) ? @"" : (id)[item getName];
216 @implementation VLCTreeItem
218 static VLCTreeItem *o_root_item = nil;
220 #define IsALeafNode ((id)-1)
222 - (id)initWithName: (NSString *)o_item_name
223 withTitle: (NSString *)o_item_title
224 withHelp: (NSString *)o_item_help
226 parent:(VLCTreeItem *)o_parent_item
227 children:(NSMutableArray *)o_children_array
228 whithCategory: (int) i_category
234 o_name = [o_item_name copy];
235 o_title= [o_item_title copy];
236 o_help= [o_item_help copy];
238 o_parent = o_parent_item;
239 o_children = o_children_array;
240 i_object_category = i_category;
246 + (VLCTreeItem *)rootItem
248 if (o_root_item == nil)
249 o_root_item = [[VLCTreeItem alloc] initWithName:@"main" withTitle:@"main" withHelp:@"" ID:0
250 parent:nil children:[[NSMutableArray alloc] initWithCapacity:10]
257 if (o_children != IsALeafNode) [o_children release];
264 /* Creates and returns the array of children
265 * Loads children incrementally */
266 - (NSArray *)children
268 if( o_children == IsALeafNode )
270 if( [ o_children count] == 0 )
272 intf_thread_t *p_intf = VLCIntf;
274 module_t *p_module = NULL;
276 module_config_t *p_item,
280 /* List the modules */
281 p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
282 if( !p_list ) return nil;
285 p_parser = (module_t *)p_list->p_values[i_index].p_object;
286 p_end = p_parser->p_config + p_parser->confsize;
288 if( [[self getName] isEqualToString: @"main"] )
291 * Find the main module
293 for( i_index = 0; i_index < p_list->i_count; i_index++ )
295 p_module = (module_t *)p_list->p_values[i_index].p_object;
296 if( !strcmp( p_module->psz_object_name, "main" ) )
299 if( p_module == NULL )
302 "could not load the preferences" );
305 if( i_index < p_list->i_count )
307 /* We found the main module */
308 /* Enumerate config categories and store a reference so we can
309 * generate their config panel them when it is asked by the user. */
310 VLCTreeItem *p_last_category = NULL;
311 p_item = p_module->p_config;
312 o_children = [[NSMutableArray alloc] initWithCapacity:10];
315 NSString *o_child_name;
316 NSString *o_child_title;
317 NSString *o_child_help;
318 switch( p_item->i_type )
320 case CONFIG_CATEGORY:
321 if( p_item->value.i == -1 ) break;
323 o_child_name = [[VLCMain sharedInstance]
324 localizedString: config_CategoryNameGet( p_item->value.i )];
325 o_child_title = o_child_name;
326 o_child_help = [[VLCMain sharedInstance]
327 localizedString: config_CategoryHelpGet( p_item->value.i )];
328 p_last_category = [VLCTreeItem alloc];
329 [o_children addObject:[p_last_category
330 initWithName: o_child_name
331 withTitle: o_child_title
332 withHelp: o_child_help
335 children:[[NSMutableArray alloc]
337 whithCategory: p_item - p_module->p_config]];
339 case CONFIG_SUBCATEGORY:
340 if( p_item->value.i == -1 ) break;
342 if( p_item->value.i != SUBCAT_PLAYLIST_GENERAL &&
343 p_item->value.i != SUBCAT_VIDEO_GENERAL &&
344 p_item->value.i != SUBCAT_INPUT_GENERAL &&
345 p_item->value.i != SUBCAT_INTERFACE_GENERAL &&
346 p_item->value.i != SUBCAT_SOUT_GENERAL &&
347 p_item->value.i != SUBCAT_ADVANCED_MISC &&
348 p_item->value.i != SUBCAT_AUDIO_GENERAL )
350 o_child_name = [[VLCMain sharedInstance]
351 localizedString: config_CategoryNameGet( p_item->value.i ) ];
352 o_child_title = o_child_name;
353 o_child_help = [[VLCMain sharedInstance]
354 localizedString: config_CategoryHelpGet( p_item->value.i ) ];
356 [p_last_category->o_children
357 addObject:[[VLCTreeItem alloc]
358 initWithName: o_child_name
359 withTitle: o_child_title
360 withHelp: o_child_help
362 parent:p_last_category
363 children:[[NSMutableArray alloc]
365 whithCategory: p_item - p_module->p_config]];
372 } while( p_item < p_end && p_item++ );
375 /* Build a tree of the plugins */
376 /* Add the capabilities */
377 for( i_index = 0; i_index < p_list->i_count; i_index++ )
379 p_module = (module_t *)p_list->p_values[i_index].p_object;
381 /* Exclude the main module */
382 if( !strcmp( p_module->psz_object_name, "main" ) )
385 /* Exclude empty plugins (submodules don't have config */
386 /* options, they are stored in the parent module) */
387 if( p_module->b_submodule )
390 p_item = p_module->p_config;
392 if( !p_item ) continue;
394 int i_subcategory = -1;
398 if( p_item->i_type == CONFIG_CATEGORY )
399 i_category = p_item->value.i;
400 else if( p_item->i_type == CONFIG_SUBCATEGORY )
401 i_subcategory = p_item->value.i;
403 if( p_item->i_type & CONFIG_ITEM )
405 if( i_options > 0 && i_category >= 0 && i_subcategory >= 0 )
407 } while( p_item < p_end && p_item++ );
408 if( !i_options ) continue;
410 /* Find the right category item */
413 vlc_bool_t b_found = VLC_FALSE;
415 VLCTreeItem* p_category_item, * p_subcategory_item;
416 for (i = 0 ; i < [o_children count] ; i++)
418 p_category_item = [o_children objectAtIndex: i];
419 if( p_category_item->i_object_id == i_category )
425 if( !b_found ) continue;
427 /* Find subcategory item */
430 for (i = 0 ; i < [p_category_item->o_children count] ; i++)
432 p_subcategory_item = [p_category_item->o_children
434 if( p_subcategory_item->i_object_id == i_subcategory )
441 p_subcategory_item = p_category_item;
443 [p_subcategory_item->o_children addObject:[[VLCTreeItem alloc]
444 initWithName:[[VLCMain sharedInstance]
445 localizedString: (char *)p_module->psz_shortname ?
446 (char *)p_module->psz_shortname : (char *)p_module->psz_object_name ]
447 withTitle:[[VLCMain sharedInstance]
448 localizedString: (char *)p_module->psz_longname ?
449 (char *)p_module->psz_longname : (char *)p_module->psz_object_name ]
451 ID: p_module->i_object_id
452 parent:p_subcategory_item
457 vlc_list_release( p_list );
467 - (NSString *)getName
472 - (NSString *)getTitle
477 - (NSString *)getHelp
482 - (VLCTreeItem *)childAtIndex:(int)i_index
484 return [[self children] objectAtIndex:i_index];
487 - (int)numberOfChildren {
488 id i_tmp = [self children];
489 return (i_tmp == IsALeafNode) ? (-1) : (int)[i_tmp count];
492 - (BOOL)hasPrefs:(NSString *)o_module_name
494 intf_thread_t *p_intf = VLCIntf;
497 char *psz_module_name;
500 psz_module_name = (char *)[o_module_name UTF8String];
502 /* look for module */
503 p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
505 for( i_index = 0; i_index < p_list->i_count; i_index++ )
507 p_parser = (module_t *)p_list->p_values[i_index].p_object ;
509 if( !strcmp( p_parser->psz_object_name, psz_module_name ) )
511 BOOL b_has_prefs = p_parser->i_config_items != 0;
512 vlc_list_release( p_list );
513 return( b_has_prefs );
517 vlc_list_release( p_list );
522 - (NSView *)showView:(NSScrollView *)o_prefs_view
523 advancedView:(vlc_bool_t) b_advanced
528 [[VLCPrefs sharedInstance] setTitle: [self getTitle]];
529 /* NSLog( [self getHelp] ); */
530 s_vrc = [[o_prefs_view contentView] bounds]; s_vrc.size.height -= 4;
531 o_view = [[VLCFlippedView alloc] initWithFrame: s_vrc];
532 [o_view setAutoresizingMask: NSViewWidthSizable | NSViewMinYMargin |
535 /* Create all subviews if it isn't already done because we cannot use */
536 /* setHiden for MacOS < 10.3*/
537 if( o_subviews == nil )
539 intf_thread_t *p_intf = VLCIntf;
541 module_t *p_parser = NULL;
542 module_config_t *p_item,
545 o_subviews = [[NSMutableArray alloc] initWithCapacity:10];
546 /* Get a pointer to the module */
547 if( i_object_category == -1 )
549 p_parser = (module_t *) vlc_object_get( p_intf, i_object_id );
550 if( !p_parser || p_parser->i_object_type != VLC_OBJECT_MODULE )
552 /* 0OOoo something went really bad */
556 p_end = p_parser->p_config + p_parser->confsize;
558 p_item = p_parser->p_config;
560 p_item = p_parser->p_config + 1;
566 msg_Err( p_intf, "invalid preference item found" );
571 switch(p_item->i_type)
573 case CONFIG_SUBCATEGORY:
575 case CONFIG_CATEGORY:
579 case CONFIG_HINT_USAGE:
583 VLCConfigControl *o_control = nil;
584 o_control = [VLCConfigControl newControl:p_item
586 if( o_control != nil )
588 [o_control setAutoresizingMask: NSViewMaxYMargin |
590 [o_subviews addObject: o_control];
595 } while( p_item < p_end && p_item++ );
597 vlc_object_release( p_parser );
602 p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
603 if( !p_list ) return o_view;
606 * Find the main module
608 for( i_index = 0; i_index < p_list->i_count; i_index++ )
610 p_parser = (module_t *)p_list->p_values[i_index].p_object;
611 if( !strcmp( p_parser->psz_object_name, "main" ) )
614 if( p_parser == NULL )
616 msg_Err( p_intf, "could not load preferences" );
619 p_end = p_parser->p_config + p_parser->confsize;
621 p_item = (p_parser->p_config + i_object_category);
622 if( ( p_item->i_type == CONFIG_CATEGORY ) &&
623 ( ( p_item->value.i == CAT_PLAYLIST ) ||
624 ( p_item->value.i == CAT_AUDIO ) ||
625 ( p_item->value.i == CAT_VIDEO ) ||
626 ( p_item->value.i == CAT_INTERFACE ) ||
627 ( p_item->value.i == CAT_INPUT ) ||
628 ( p_item->value.i == CAT_SOUT ) ) )
636 msg_Err( p_intf, "invalid preference item found" );
641 switch( p_item->i_type )
643 case CONFIG_SUBCATEGORY:
645 case CONFIG_CATEGORY:
649 case CONFIG_HINT_USAGE:
653 VLCConfigControl *o_control = nil;
654 if( p_item->b_internal == VLC_TRUE )
658 o_control = [VLCConfigControl newControl:p_item
660 if( o_control != nil )
662 [o_control setAutoresizingMask: NSViewMaxYMargin |
664 [o_subviews addObject: o_control];
669 } while ( ( p_item < p_end ) &&
670 ( p_item->i_type != CONFIG_SUBCATEGORY ) );
672 vlc_list_release( p_list );
681 int i_show_advanced = 0;
683 NSEnumerator *enumerator = [o_subviews objectEnumerator];
684 VLCConfigControl *o_widget;
687 while( ( o_widget = [enumerator nextObject] ) )
688 if( ( [o_widget isAdvanced] ) && (! b_advanced) )
690 else if( i_max_label < [o_widget getLabelSize] )
691 i_max_label = [o_widget getLabelSize];
693 enumerator = [o_subviews objectEnumerator];
694 while( ( o_widget = [enumerator nextObject] ) )
697 if( ( [o_widget isAdvanced] ) && (! b_advanced) )
703 i_widget = [o_widget getViewType];
704 i_yPos += [VLCConfigControl calcVerticalMargin:i_widget
705 lastItem:i_lastItem];
706 [o_widget setYPos:i_yPos];
707 o_frame = [o_widget frame];
708 o_frame.size.width = [o_view frame].size.width -
709 LEFTMARGIN - RIGHTMARGIN;
710 [o_widget setFrame:o_frame];
711 [o_widget alignWithXPosition: i_max_label];
712 i_yPos += [o_widget frame].size.height;
713 i_lastItem = i_widget;
714 [o_view addSubview:o_widget];
716 if( i_show_advanced != 0 )
718 /* We add the advanced notice... */
719 NSRect s_rc = [o_view frame];
720 NSTextField *o_label;
721 s_rc.size.height = 17;
722 s_rc.origin.x = LEFTMARGIN;
723 s_rc.origin.y = i_yPos += [VLCConfigControl
724 calcVerticalMargin:CONFIG_ITEM_STRING
725 lastItem:i_lastItem];
726 o_label = [[[NSTextField alloc] initWithFrame: s_rc] retain];
727 [o_label setDrawsBackground: NO];
728 [o_label setBordered: NO];
729 [o_label setEditable: NO];
730 [o_label setSelectable: NO];
731 [o_label setStringValue: _NS("Some options are hidden. " \
732 "Check \"Advanced\" to display them.")];
733 [o_label setFont:[NSFont systemFontOfSize:10]];
735 [o_view addSubview:o_label];
736 i_yPos += [o_label frame].size.height;
738 o_frame = [o_view frame];
739 o_frame.size.height = i_yPos;
740 [o_view setFrame:o_frame];
741 [o_prefs_view setDocumentView:o_view];
750 if( o_subviews != nil )
751 //Item has been shown
752 for( i = 0 ; i < [o_subviews count] ; i++ )
753 [[o_subviews objectAtIndex:i] applyChanges];
755 if( o_children != IsALeafNode )
756 for( i = 0 ; i < [o_children count] ; i++ )
757 [[o_children objectAtIndex:i] applyChanges];
763 if( o_subviews != nil )
765 //Item has been shown
766 [o_subviews release];
770 if( o_children != IsALeafNode )
771 for( i = 0 ; i < [o_children count] ; i++ )
772 [[o_children objectAtIndex:i] resetView];
778 @implementation VLCFlippedView