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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * prefs_widgets.h: Preferences controls
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2003 VideoLAN
  5.  * $Id: prefs_widgets.h 7090 2004-03-15 19:33:18Z bigben $
  6.  *
  7.  * Authors: Derk-Jan Hartman <hartman at videolan.org> 
  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. @interface VLCConfigControl : NSBox
  24. {
  25.     vlc_object_t    *p_this;
  26.     char            *psz_name;
  27.     NSTextField     *o_label;
  28.     int             i_type;
  29.     vlc_bool_t      b_advanced;
  30. }
  31. + (VLCConfigControl *)newControl: (module_config_t *)p_item withView: (NSView *)o_parent_view withObject: (vlc_object_t *)p_this;
  32. - (id)initWithFrame: (NSRect)frame item: (module_config_t *)p_item withObject: (vlc_object_t *)_p_this;
  33. - (NSString *)getName;
  34. - (int)getType;
  35. - (BOOL)isAdvanced;
  36. - (int)intValue;
  37. - (float)floatValue;
  38. - (char *)stringValue;
  39. @end
  40. @interface KeyConfigControl : VLCConfigControl
  41. {
  42.     NSMatrix        *o_matrix;
  43.     NSComboBox      *o_combo;
  44. }
  45. @end
  46. @interface ModuleConfigControl : VLCConfigControl
  47. {
  48.     NSPopUpButton   *o_popup;
  49. }
  50. @end
  51. @interface StringConfigControl : VLCConfigControl
  52. {
  53.     NSTextField     *o_textfield;
  54. }
  55. @end
  56. @interface StringListConfigControl : VLCConfigControl
  57. {
  58.     NSComboBox      *o_combo;
  59. }
  60. @end
  61. @interface FileConfigControl : VLCConfigControl
  62. {
  63.     NSTextField     *o_textfield;
  64.     NSButton        *o_button;
  65.     BOOL            b_directory;
  66. }
  67. - (IBAction)openFileDialog: (id)sender;
  68. - (void)pathChosenInPanel:(NSOpenPanel *)o_sheet withReturn:(int)i_return_code contextInfo:(void  *)o_context_info;
  69. @end
  70. @interface IntegerConfigControl : VLCConfigControl
  71. {
  72.     NSTextField     *o_textfield;
  73.     NSStepper       *o_stepper;
  74. }
  75. - (IBAction)stepperChanged:(id)sender;
  76. - (void)textfieldChanged:(NSNotification *)o_notification;
  77. @end
  78. @interface IntegerListConfigControl : VLCConfigControl
  79. {
  80.     NSComboBox      *o_combo;
  81. }
  82. @end
  83. @interface RangedIntegerConfigControl : VLCConfigControl
  84. {
  85.     NSSlider        *o_slider;
  86.     NSTextField     *o_textfield;
  87.     NSTextField     *o_textfield_min;
  88.     NSTextField     *o_textfield_max;
  89. }
  90. - (IBAction)sliderChanged:(id)sender;
  91. - (void)textfieldChanged:(NSNotification *)o_notification;
  92. @end
  93. @interface FloatConfigControl : VLCConfigControl
  94. {
  95.     NSTextField     *o_textfield;
  96. }
  97. @end
  98. @interface RangedFloatConfigControl : VLCConfigControl
  99. {
  100.     NSSlider        *o_slider;
  101.     NSTextField     *o_textfield;
  102.     NSTextField     *o_textfield_min;
  103.     NSTextField     *o_textfield_max;
  104. }
  105. - (IBAction)sliderChanged:(id)sender;
  106. - (void)textfieldChanged:(NSNotification *)o_notification;
  107. @end
  108. @interface BoolConfigControl : VLCConfigControl
  109. {
  110.     NSButton        *o_checkbox;
  111. }
  112. @end