]> git.sesse.net Git - vlc/blob - modules/gui/macosx/simple_prefs.h
macosx: don't initiate a modal dialog during a modal session (close #7575)
[vlc] / modules / gui / macosx / simple_prefs.h
1 /*****************************************************************************
2 * simple_prefs.h: Simple Preferences for Mac OS X
3 *****************************************************************************
4 * Copyright (C) 2008-2012 VLC authors and VideoLAN
5 * $Id$
6 *
7 * Authors: Felix Paul Kühne <fkuehne at videolan dot 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 #import <Cocoa/Cocoa.h>
25 #import "intf.h"
26 #import <vlc_common.h>
27
28 @interface VLCSimplePrefs : NSObject <NSToolbarDelegate>
29 {
30     IBOutlet id o_audio_dolby_pop;
31     IBOutlet id o_audio_dolby_txt;
32     IBOutlet id o_audio_effects_box;
33     IBOutlet id o_audio_enable_ckb;
34     IBOutlet id o_audio_general_box;
35     IBOutlet id o_audio_lang_fld;
36     IBOutlet id o_audio_lang_txt;
37     IBOutlet id o_audio_last_box;
38     IBOutlet id o_audio_last_ckb;
39     IBOutlet id o_audio_lastpwd_sfld;
40     IBOutlet id o_audio_lastpwd_txt;
41     IBOutlet id o_audio_lastuser_fld;
42     IBOutlet id o_audio_lastuser_txt;
43     IBOutlet id o_audio_spdif_ckb;
44     IBOutlet id o_audio_view;
45     IBOutlet id o_audio_visual_pop;
46     IBOutlet id o_audio_visual_txt;
47     IBOutlet id o_audio_vol_fld;
48     IBOutlet id o_audio_vol_sld;
49     IBOutlet id o_audio_autosavevol_matrix;
50     IBOutlet id o_audio_autosavevol_yes_bcell;
51     IBOutlet id o_audio_autosavevol_no_bcell;
52
53     IBOutlet id o_hotkeys_change_btn;
54     IBOutlet id o_hotkeys_change_lbl;
55     IBOutlet id o_hotkeys_change_keys_lbl;
56     IBOutlet id o_hotkeys_change_taken_lbl;
57     IBOutlet id o_hotkeys_change_win;
58     IBOutlet id o_hotkeys_change_cancel_btn;
59     IBOutlet id o_hotkeys_change_ok_btn;
60     IBOutlet id o_hotkeys_clear_btn;
61     IBOutlet id o_hotkeys_lbl;
62     IBOutlet id o_hotkeys_listbox;
63     IBOutlet id o_hotkeys_view;
64
65     IBOutlet id o_input_record_box;
66     IBOutlet id o_input_record_fld;
67     IBOutlet id o_input_record_btn;
68     IBOutlet id o_input_avi_pop;
69     IBOutlet id o_input_avi_txt;
70     IBOutlet id o_input_cachelevel_pop;
71     IBOutlet id o_input_cachelevel_txt;
72     IBOutlet id o_input_cachelevel_custom_txt;
73     IBOutlet id o_input_caching_box;
74     IBOutlet id o_input_httpproxy_fld;
75     IBOutlet id o_input_httpproxy_txt;
76     IBOutlet id o_input_httpproxypwd_sfld;
77     IBOutlet id o_input_httpproxypwd_txt;
78     IBOutlet id o_input_mux_box;
79     IBOutlet id o_input_net_box;
80     IBOutlet id o_input_avcodec_hw_ckb;
81     IBOutlet id o_input_postproc_fld;
82     IBOutlet id o_input_postproc_txt;
83     IBOutlet id o_input_rtsp_ckb;
84     IBOutlet id o_input_skipLoop_txt;
85     IBOutlet id o_input_skipLoop_pop;
86     IBOutlet id o_input_mkv_preload_dir_ckb;
87     IBOutlet id o_input_view;
88
89     IBOutlet id o_intf_style_txt;
90     IBOutlet id o_intf_style_dark_bcell;
91     IBOutlet id o_intf_style_bright_bcell;
92     IBOutlet id o_intf_art_pop;
93     IBOutlet id o_intf_art_txt;
94     IBOutlet id o_intf_embedded_ckb;
95     IBOutlet id o_intf_fspanel_ckb;
96     IBOutlet id o_intf_appleremote_ckb;
97     IBOutlet id o_intf_appleremote_sysvol_ckb;
98     IBOutlet id o_intf_mediakeys_ckb;
99     IBOutlet id o_intf_network_box;
100     IBOutlet id o_intf_view;
101     IBOutlet id o_intf_update_ckb;
102     IBOutlet id o_intf_last_update_lbl;
103     IBOutlet id o_intf_enableGrowl_ckb;
104     IBOutlet id o_intf_nativefullscreen_ckb;
105     IBOutlet id o_intf_autoresize_ckb;
106     IBOutlet id o_intf_pauseminimized_ckb;
107
108     IBOutlet id o_osd_encoding_pop;
109     IBOutlet id o_osd_encoding_txt;
110     IBOutlet id o_osd_font_box;
111     IBOutlet id o_osd_font_btn;
112     IBOutlet id o_osd_font_color_pop;
113     IBOutlet id o_osd_font_color_txt;
114     IBOutlet id o_osd_font_fld;
115     IBOutlet id o_osd_font_size_pop;
116     IBOutlet id o_osd_font_size_txt;
117     IBOutlet id o_osd_font_txt;
118     IBOutlet id o_osd_lang_box;
119     IBOutlet id o_osd_lang_fld;
120     IBOutlet id o_osd_lang_txt;
121     IBOutlet id o_osd_opacity_txt;
122     IBOutlet id o_osd_opacity_fld;
123     IBOutlet id o_osd_opacity_sld;
124     IBOutlet id o_osd_outline_color_pop;
125     IBOutlet id o_osd_outline_color_txt;
126     IBOutlet id o_osd_outline_thickness_pop;
127     IBOutlet id o_osd_outline_thickness_txt;
128     IBOutlet id o_osd_forcebold_ckb;
129     IBOutlet id o_osd_osd_box;
130     IBOutlet id o_osd_osd_ckb;
131     IBOutlet id o_osd_view;
132
133     IBOutlet id o_sprefs_showAll_btn;
134     IBOutlet id o_sprefs_cancel_btn;
135     IBOutlet id o_sprefs_controls_box;
136     IBOutlet id o_sprefs_reset_btn;
137     IBOutlet id o_sprefs_save_btn;
138     IBOutlet id o_sprefs_win;
139
140     IBOutlet id o_video_black_ckb;
141     IBOutlet id o_video_device_pop;
142     IBOutlet id o_video_device_txt;
143     IBOutlet id o_video_display_box;
144     IBOutlet id o_video_enable_ckb;
145     IBOutlet id o_video_fullscreen_ckb;
146     IBOutlet id o_video_videodeco_ckb;
147     IBOutlet id o_video_onTop_ckb;
148     IBOutlet id o_video_output_pop;
149     IBOutlet id o_video_output_txt;
150     IBOutlet id o_video_skipFrames_ckb;
151     IBOutlet id o_video_snap_box;
152     IBOutlet id o_video_snap_folder_btn;
153     IBOutlet id o_video_snap_folder_fld;
154     IBOutlet id o_video_snap_folder_txt;
155     IBOutlet id o_video_snap_format_pop;
156     IBOutlet id o_video_snap_format_txt;
157     IBOutlet id o_video_snap_prefix_fld;
158     IBOutlet id o_video_snap_prefix_txt;
159     IBOutlet id o_video_snap_seqnum_ckb;
160     IBOutlet id o_video_deinterlace_txt;
161     IBOutlet id o_video_deinterlace_pop;
162     IBOutlet id o_video_deinterlace_mode_txt;
163     IBOutlet id o_video_deinterlace_mode_pop;
164     IBOutlet id o_video_video_box;
165     IBOutlet id o_video_view;
166
167     BOOL b_audioSettingChanged;
168     BOOL b_intfSettingChanged;
169     BOOL b_videoSettingChanged;
170     BOOL b_osdSettingChanged;
171     BOOL b_inputSettingChanged;
172     BOOL b_hotkeyChanged;
173     id o_currentlyShownCategoryView;
174
175     NSOpenPanel *o_selectFolderPanel;
176     NSArray *o_hotkeyDescriptions;
177     NSArray *o_hotkeyNames;
178     NSArray *o_hotkeysNonUseableKeys;
179     NSMutableArray *o_hotkeySettings;
180     NSString *o_keyInTransition;
181
182     intf_thread_t *p_intf;
183 }
184 + (VLCSimplePrefs *)sharedInstance;
185
186 /* toolbar */
187 - (NSToolbarItem *) toolbar: (NSToolbar *)o_toolbar
188       itemForItemIdentifier: (NSString *)o_itemIdent
189   willBeInsertedIntoToolbar: (BOOL)b_willBeInserted;
190 - (NSArray *)toolbarDefaultItemIdentifiers: (NSToolbar *)toolbar;
191 - (NSArray *)toolbarAllowedItemIdentifiers: (NSToolbar *)toolbar;
192
193 - (void)initStrings;
194 - (void)resetControls;
195 - (void)showSimplePrefs;
196 - (void)showSimplePrefsWithLevel:(NSInteger)i_window_level;
197
198 - (IBAction)buttonAction:(id)sender;
199 - (void)sheetDidEnd:(NSWindow *)o_sheet
200          returnCode:(int)i_return
201         contextInfo:(void *)o_context;
202
203 - (void)saveChangedSettings;
204
205 /* interface */
206 - (IBAction)interfaceSettingChanged:(id)sender;
207 - (void)showInterfaceSettings;
208
209 /* audio */
210 - (IBAction)audioSettingChanged:(id)sender;
211 - (void)showAudioSettings;
212
213 /* video */
214 - (IBAction)videoSettingChanged:(id)sender;
215 - (void)showVideoSettings;
216
217 /* OSD / subtitles */
218 - (IBAction)osdSettingChanged:(id)sender;
219 - (IBAction)showFontPicker:(id)sender;
220 - (void)showOSDSettings;
221 - (void)changeFont:(id)sender;
222
223 /* input & codecs */
224 - (IBAction)inputSettingChanged:(id)sender;
225 - (void)showInputSettings;
226
227 /* hotkeys */
228 - (IBAction)hotkeySettingChanged:(id)sender;
229 - (void)showHotkeySettings;
230 - (int)numberOfRowsInTableView:(NSTableView *)aTableView;
231 - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex;
232 - (BOOL)changeHotkeyTo: (NSString *)theKey;
233
234 @end
235
236 @interface VLCHotkeyChangeWindow : NSWindow
237
238 @end
239
240 @interface VLCSimplePrefsWindow : NSWindow
241
242 @end