extended.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * extended.h: MacOS X Extended interface panel
  3.  *****************************************************************************
  4.  * Copyright (C) 2005-2007 the VideoLAN team
  5.  * $Id: ca38b23476615ded641b21e842a69d3f8dd45154 $
  6.  *
  7.  * Authors: Felix Paul Kühne <fkuehne@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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * VLCExtended
  25.  *****************************************************************************/
  26. #import <Cocoa/Cocoa.h>
  27. #import "intf.h"
  28. #import <vlc_common.h>
  29. @interface VLCExtended : NSObject
  30. {
  31.     /* views and window */
  32.     IBOutlet id o_adjustImg_view;
  33.     IBOutlet id o_audioFlts_view;
  34.     IBOutlet id o_videoFilters_view;
  35.     IBOutlet id o_extended_window;
  36.     /* window content */
  37.     IBOutlet id o_selector_pop;
  38.     IBOutlet id o_top_controls_box;
  39.     /* video filters */
  40.     IBOutlet id o_btn_vidFlts_mrInfo;
  41.     IBOutlet id o_ckb_blur;
  42.     IBOutlet id o_ckb_imgClone;
  43.     IBOutlet id o_ckb_imgCrop;
  44.     IBOutlet id o_ckb_imgInvers;
  45.     IBOutlet id o_ckb_trnsform;
  46.     IBOutlet id o_ckb_intZoom;
  47.     IBOutlet id o_ckb_wave;
  48.     IBOutlet id o_ckb_ripple;
  49.     IBOutlet id o_ckb_psycho;
  50.     IBOutlet id o_ckb_gradient;
  51.     IBOutlet id o_lbl_general;
  52.     IBOutlet id o_lbl_distort;
  53.     /* audio filters */
  54.     IBOutlet id o_ckb_vlme_norm;
  55.     IBOutlet id o_ckb_hdphnVirt;
  56.     IBOutlet id o_lbl_maxLevel;
  57.     IBOutlet id o_sld_maxLevel;
  58.     /* adjust image */
  59.     IBOutlet id o_btn_rstrDefaults;
  60.     IBOutlet id o_ckb_enblAdjustImg;
  61.     IBOutlet id o_lbl_brightness;
  62.     IBOutlet id o_lbl_contrast;
  63.     IBOutlet id o_lbl_gamma;
  64.     IBOutlet id o_lbl_hue;
  65.     IBOutlet id o_lbl_saturation;
  66.     IBOutlet id o_lbl_opaque;
  67.     IBOutlet id o_sld_brightness;
  68.     IBOutlet id o_sld_contrast;
  69.     IBOutlet id o_sld_gamma;
  70.     IBOutlet id o_sld_hue;
  71.     IBOutlet id o_sld_saturation;
  72.     IBOutlet id o_sld_opaque;
  73.     /* global variables */
  74.     NSView * o_currentlyshown_view;
  75.     BOOL o_config_changed;
  76. }
  77. - (IBAction)viewSelectorAction:(id)sender;
  78. - (IBAction)enableAdjustImage:(id)sender;
  79. - (IBAction)restoreDefaultsForAdjustImage:(id)sender;
  80. - (IBAction)sliderActionAdjustImage:(id)sender;
  81. - (IBAction)opaqueSliderAction:(id)sender;
  82. - (IBAction)enableHeadphoneVirtualizer:(id)sender;
  83. - (IBAction)sliderActionMaximumAudioLevel:(id)sender;
  84. - (IBAction)enableVolumeNormalization:(id)sender;
  85. - (IBAction)videoFilterAction:(id)sender;
  86. - (IBAction)moreInfoVideoFilters:(id)sender;
  87. + (VLCExtended *)sharedInstance;
  88. - (BOOL)configChanged;
  89. - (void)showPanel;
  90. - (void)initStrings;
  91. - (void)changeVoutFiltersString: (char *)psz_name onOrOff: (bool )b_add;
  92. - (void)changeVideoFiltersString: (char *)psz_name onOrOff: (bool )b_add;
  93. - (void)changeAFiltersString: (char *)psz_name onOrOff: (bool )b_add;
  94. - (void)savePrefs;
  95. @end