]> git.sesse.net Git - vlc/blob - modules/gui/macosx/open.h
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / macosx / open.h
1 /*****************************************************************************
2  * open.h: MacOS X module for vlc
3  *****************************************************************************
4  * Copyright (C) 2002-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          Derk-Jan Hartman <thedj@users.sourceforge.net>
10  *          Felix K\9fhne <fkuehne at videolan dot org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 NSArray *GetEjectableMediaOfClass( const char *psz_class );
28
29 /*****************************************************************************
30  * Intf_Open interface
31  *****************************************************************************/
32 @interface VLCOpen : NSObject
33 {
34     IBOutlet id o_playlist;
35
36     IBOutlet id o_panel;
37
38     IBOutlet id o_mrl;
39     IBOutlet id o_mrl_lbl;
40     IBOutlet id o_tabview;
41
42     IBOutlet id o_btn_ok;
43     IBOutlet id o_btn_cancel;
44
45     IBOutlet id o_output_ckbox;
46     IBOutlet id o_sout_options;
47
48     /* open file */
49     IBOutlet id o_file_path;
50     IBOutlet id o_file_btn_browse;
51     IBOutlet id o_file_stream;
52
53     /* open disc */
54     IBOutlet id o_disc_type;
55     IBOutlet id o_disc_device;
56     IBOutlet id o_disc_device_lbl;
57     IBOutlet id o_disc_title;
58     IBOutlet id o_disc_title_lbl;
59     IBOutlet id o_disc_title_stp;
60     IBOutlet id o_disc_chapter;
61     IBOutlet id o_disc_chapter_lbl;
62     IBOutlet id o_disc_chapter_stp;
63     IBOutlet id o_disc_videots_folder;
64     IBOutlet id o_disc_videots_btn_browse;
65     IBOutlet id o_disc_dvd_menus;
66
67     /* open network */
68     IBOutlet id o_net_mode;
69     IBOutlet id o_net_udp_port;
70     IBOutlet id o_net_udp_port_lbl;
71     IBOutlet id o_net_udp_port_stp;
72     IBOutlet id o_net_udpm_addr;
73     IBOutlet id o_net_udpm_addr_lbl;
74     IBOutlet id o_net_udpm_port;
75     IBOutlet id o_net_udpm_port_lbl;
76     IBOutlet id o_net_udpm_port_stp;
77     IBOutlet id o_net_http_url;
78     IBOutlet id o_net_http_url_lbl;
79     IBOutlet id o_net_timeshift_ckbox;
80
81     /* open subtitle file */
82     IBOutlet id o_file_sub_ckbox;
83     IBOutlet id o_file_sub_btn_settings;
84     IBOutlet id o_file_sub_sheet;
85     IBOutlet id o_file_sub_path;
86     IBOutlet id o_file_sub_btn_browse;
87     IBOutlet id o_file_sub_override;
88     IBOutlet id o_file_sub_delay;
89     IBOutlet id o_file_sub_delay_lbl;
90     IBOutlet id o_file_sub_delay_stp;
91     IBOutlet id o_file_sub_fps;
92     IBOutlet id o_file_sub_fps_lbl;
93     IBOutlet id o_file_sub_fps_stp;
94     IBOutlet id o_file_sub_encoding_pop;
95     IBOutlet id o_file_sub_encoding_lbl;
96     IBOutlet id o_file_sub_size_pop;
97     IBOutlet id o_file_sub_size_lbl;
98     IBOutlet id o_file_sub_align_pop;
99     IBOutlet id o_file_sub_align_lbl;
100     IBOutlet id o_file_sub_ok_btn;
101     IBOutlet id o_file_sub_font_box;
102     IBOutlet id o_file_sub_file_box;
103
104     /* open eyetv support */
105     IBOutlet id o_eyetv_tabView;
106     IBOutlet id o_eyetv_channels_pop;
107     IBOutlet id o_eyetv_currentChannel_lbl;
108     IBOutlet id o_eyetv_chn_status_txt;
109     IBOutlet id o_eyetv_chn_bgbar;
110     IBOutlet id o_eyetv_launchEyeTV_btn;
111     IBOutlet id o_eyetv_nextProgram_btn;
112     IBOutlet id o_eyetv_noDevice_lbl;
113     IBOutlet id o_eyetv_noDeviceLong_lbl;
114     IBOutlet id o_eyetv_noEyeTV_lbl;
115     IBOutlet id o_eyetv_noEyeTVLong_lbl;
116     IBOutlet id o_eyetv_previousProgram_btn;
117  
118     BOOL b_autoplay;
119 }
120
121 + (VLCOpen *)sharedInstance;
122
123 - (void)setSubPanel;
124 - (void)openTarget:(int)i_type;
125 - (void)tabView:(NSTabView *)o_tv didSelectTabViewItem:(NSTabViewItem *)o_tvi;
126 - (void)textFieldWasClicked:(NSNotification *)o_notification;
127
128 - (void)openFileGeneric;
129 - (void)openFilePathChanged:(NSNotification *)o_notification;
130 - (IBAction)openFileBrowse:(id)sender;
131 - (void) pathChosenInPanel: (NSOpenPanel *) sheet withReturn:(int)returnCode contextInfo:(void  *)contextInfo;
132 - (IBAction)openFileStreamChanged:(id)sender;
133
134 - (void)openDisc;
135 - (IBAction)openDiscTypeChanged:(id)sender;
136 - (IBAction)openDiscStepperChanged:(id)sender;
137 - (void)openDiscInfoChanged:(NSNotification *)o_notification;
138 - (IBAction)openDiscMenusChanged:(id)sender;
139 - (IBAction)openVTSBrowse:(id)sender;
140
141 - (void)openNet;
142 - (IBAction)openNetModeChanged:(id)sender;
143 - (IBAction)openNetStepperChanged:(id)sender;
144 - (void)openNetInfoChanged:(NSNotification *)o_notification;
145
146 - (IBAction)eyetvSwitchChannel:(id)sender;
147 - (IBAction)eyetvLaunch:(id)sender;
148 - (void)eyetvChanged:(NSNotification *)o_notification;
149 - (void)setupChannelInfo;
150
151 - (IBAction)subsChanged:(id)sender;
152 - (IBAction)subSettings:(id)sender;
153 - (IBAction)subFileBrowse:(id)sender;
154 - (IBAction)subOverride:(id)sender;
155 - (IBAction)subDelayStepperChanged:(id)sender;
156 - (IBAction)subFpsStepperChanged:(id)sender;
157 - (IBAction)subCloseSheet:(id)sender;
158
159 - (IBAction)panelCancel:(id)sender;
160 - (IBAction)panelOk:(id)sender;
161
162 - (void)openFile;
163 @end
164
165 @interface VLCOpenTextField : NSTextField
166 {
167 }
168 - (void)mouseDown:(NSEvent *)theEvent;
169 @end