]> git.sesse.net Git - vlc/blob - modules/gui/macosx/extended.h
* intf.m: -make sure that objects like o_open, o_wizard, etc. get released in any...
[vlc] / modules / gui / macosx / extended.h
1 /*****************************************************************************
2  * extended.h: MacOS X Extended interface panel
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Felix Kühne <fkuehne@users.sf.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
24 /*****************************************************************************
25  * VLCExtended 
26  *****************************************************************************/
27
28 #import <Cocoa/Cocoa.h>
29 #import <vlc/vlc.h>
30
31 @interface VLCExtended : NSObject
32 {
33     /* views and window */
34     IBOutlet id o_adjustImg_view;
35     IBOutlet id o_audioFlts_view;
36     IBOutlet id o_videoFilters_view;
37     IBOutlet id o_extended_window;
38     
39     /* window content */
40     IBOutlet id o_expBtn_adjustImage;
41     IBOutlet id o_expBtn_audioFlts;
42     IBOutlet id o_expBtn_videoFlts;
43     IBOutlet id o_lbl_audioFlts;
44     IBOutlet id o_lbl_videoFlts;
45     IBOutlet id o_lbl_adjustImage;
46     IBOutlet id o_lbl_video;
47     IBOutlet id o_lbl_audio;
48     IBOutlet id o_extWin_adjImg_sepe;
49     IBOutlet id o_extWin_vidFlts_sepe;
50     IBOutlet id o_box_vidFlts;
51     IBOutlet id o_box_audFlts;
52     IBOutlet id o_box_adjImg;
53     
54     /* video filters */
55     IBOutlet id o_btn_vidFlts_mrInfo;
56     IBOutlet id o_ckb_blur;
57     IBOutlet id o_ckb_distortion;
58     IBOutlet id o_ckb_imgClone;
59     IBOutlet id o_ckb_imgCrop;
60     IBOutlet id o_ckb_imgInvers;
61     IBOutlet id o_ckb_trnsform;
62     
63     /* audio filters */
64     IBOutlet id o_ckb_vlme_norm;
65     IBOutlet id o_ckb_hdphnVirt;
66     IBOutlet id o_lbl_maxLevel;
67     IBOutlet id o_sld_maxLevel;
68     
69     /* adjust image */
70     IBOutlet id o_btn_rstrDefaults;
71     IBOutlet id o_ckb_enblAdjustImg;
72     IBOutlet id o_lbl_brightness;
73     IBOutlet id o_lbl_contrast;
74     IBOutlet id o_lbl_gamma;
75     IBOutlet id o_lbl_hue;
76     IBOutlet id o_lbl_saturation;
77     IBOutlet id o_lbl_opaque;
78     IBOutlet id o_sld_brightness;
79     IBOutlet id o_sld_contrast;
80     IBOutlet id o_sld_gamma;
81     IBOutlet id o_sld_hue;
82     IBOutlet id o_sld_saturation;
83     IBOutlet id o_sld_opaque;
84     
85     /* global variables */
86     BOOL o_adjImg_expanded;
87     BOOL o_audFlts_expanded;
88     BOOL o_vidFlts_expanded;
89     
90     BOOL o_config_changed;
91 }
92
93 - (IBAction)adjImg_Enbl:(id)sender;
94 - (IBAction)adjImg_rstrDefaults:(id)sender;
95 - (IBAction)adjImg_sliders:(id)sender;
96 - (IBAction)adjImg_opaque:(id)sender;
97 - (IBAction)audFtls_hdphnVirt:(id)sender;
98 - (IBAction)audFtls_maxLevelSld:(id)sender;
99 - (IBAction)audFtls_vlmeNorm:(id)sender;
100 - (IBAction)extWin_exp_adjImg:(id)sender;
101 - (IBAction)extWin_exp_audFlts:(id)sender;
102 - (IBAction)extWin_exp_vidFlts:(id)sender;
103 - (IBAction)vidFlts:(id)sender;
104 - (IBAction)vidFlts_mrInfo:(id)sender;
105
106 + (VLCExtended *)sharedInstance;
107 - (BOOL)getConfigChanged;
108 - (void)collapsAll;
109
110 - (void)showPanel;
111 - (void)initStrings;
112 - (void)changeVFiltersString: (char *)psz_name onOrOff: (vlc_bool_t )b_add;
113 - (void)changeAFiltersString: (char *)psz_name onOrOff: (vlc_bool_t )b_add;
114 - (void)savePrefs;
115 @end