prefs.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * prefs.h: MacOS X module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2003 VideoLAN
  5.  * $Id: prefs.h 7090 2004-03-15 19:33:18Z bigben $
  6.  *
  7.  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net> 
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  * 
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #define PREFS_WRAP 300
  24. @interface VLCTreeItem : NSObject
  25. {
  26.     NSString *o_name;
  27.     int i_object_id;
  28.     VLCTreeItem *o_parent;
  29.     NSMutableArray *o_children;
  30. }
  31. + (VLCTreeItem *)rootItem;
  32. - (int)numberOfChildren;
  33. - (VLCTreeItem *)childAtIndex:(int)i_index;
  34. - (int)getObjectID;
  35. - (NSString *)getName;
  36. - (BOOL)hasPrefs:(NSString *)o_module_name;
  37. @end
  38. /*****************************************************************************
  39.  * VLCPrefs interface
  40.  *****************************************************************************/
  41. @interface VLCPrefs : NSObject
  42. {
  43.     intf_thread_t *p_intf;
  44.     vlc_bool_t b_advanced;
  45.     VLCTreeItem *o_config_tree;
  46.     NSView *o_empty_view;
  47.     NSMutableDictionary *o_save_prefs;
  48.     
  49.     IBOutlet id o_prefs_window;
  50.     IBOutlet id o_tree;
  51.     IBOutlet id o_prefs_view;
  52.     IBOutlet id o_save_btn;
  53.     IBOutlet id o_cancel_btn;
  54.     IBOutlet id o_reset_btn;
  55.     IBOutlet id o_advanced_ckb;
  56. }
  57. - (void)initStrings;
  58. - (void)showPrefs;
  59. - (IBAction)savePrefs: (id)sender;
  60. - (IBAction)closePrefs: (id)sender;
  61. - (IBAction)resetAll: (id)sender;
  62. - (void)sheetDidEnd:(NSWindow *)o_sheet returnCode:(int)i_return contextInfo:(void *)o_context;
  63. - (IBAction)advancedToggle: (id)sender;
  64. - (IBAction)openFileDialog: (id)sender;
  65. - (void)pathChosenInPanel:(NSOpenPanel *)o_sheet withReturn:(int)i_return_code contextInfo:(void  *)o_context_info;
  66. - (void)showViewForID: (int) i_id andName:(NSString *)o_item_name;
  67. - (void)configChanged:(id)o_unknown;
  68. @end
  69. @interface VLCFlippedView : NSView
  70. {
  71. }
  72. @end
  73. #define INTF_CONTROL_CONFIG(x) 
  74. @interface VLC##x : NS##x 
  75.     NSString *o_module_name; 
  76.     NSString *o_config_name; 
  77.     int i_config_type; 
  78. - (void)setModuleName:(NSString *)_o_module_name; 
  79. - (void)setConfigName:(NSString *)_o_config_name; 
  80. - (void)setConfigType:(int)_i_config_type; 
  81. - (NSString *)moduleName; 
  82. - (NSString *)configName; 
  83. - (int)configType; 
  84. @end
  85. #define IMPL_CONTROL_CONFIG(x) 
  86. @implementation VLC##x 
  87. - (id)init 
  88.     self = [super init]; 
  89.     if( self != nil ) 
  90.     { 
  91.         o_module_name = nil; 
  92.         o_config_name = nil; 
  93.         i_config_type = 0; 
  94.     } 
  95.     return( self ); 
  96. - (void)dealloc 
  97.     if( o_module_name != nil ) 
  98.     { 
  99.         [o_module_name release]; 
  100.     } 
  101.     if( o_config_name != nil ) 
  102.     { 
  103.         [o_config_name release]; 
  104.     } 
  105.     [super dealloc]; 
  106. - (void)setModuleName:(NSString *)_o_module_name 
  107.     if( o_module_name != nil ) 
  108.     { 
  109.         [o_module_name release]; 
  110.     } 
  111.     o_module_name = [_o_module_name retain]; 
  112. - (void)setConfigName:(NSString *)_o_config_name 
  113.     if( o_config_name != nil ) 
  114.     { 
  115.         [o_config_name release]; 
  116.     } 
  117.     o_config_name = [_o_config_name retain]; 
  118. - (void)setConfigType:(int)_i_config_type 
  119.     i_config_type = _i_config_type; 
  120. - (NSString *)moduleName 
  121.     return( o_module_name ); 
  122. - (NSString *)configName 
  123.     return( o_config_name ); 
  124. - (int)configType 
  125.     return( i_config_type ); 
  126. @end
  127. INTF_CONTROL_CONFIG(Button);
  128. INTF_CONTROL_CONFIG(PopUpButton);
  129. INTF_CONTROL_CONFIG(ComboBox);
  130. INTF_CONTROL_CONFIG(TextField);
  131. INTF_CONTROL_CONFIG(Slider);
  132. INTF_CONTROL_CONFIG(Matrix);
  133. #define CONTROL_CONFIG( obj, mname, ctype, cname ) 
  134.     { 
  135.         [obj setModuleName: mname]; 
  136.         [obj setConfigType: ctype]; 
  137.         [obj setConfigName: [NSString stringWithUTF8String: cname]]; 
  138.     }