1 /*****************************************************************************
2 * intf.h: MacOS X interface module
3 *****************************************************************************
4 * Copyright (C) 2002-2005 the VideoLAN team
7 * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8 * Christophe Massiot <massiot@via.ecp.fr>
9 * Derk-Jan Hartman <hartman at videolan dot org>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
24 *****************************************************************************/
30 #include <vlc/input.h>
32 #include <Cocoa/Cocoa.h>
34 /*****************************************************************************
36 *****************************************************************************/
37 int ExecuteOnMainThread( id target, SEL sel, void * p_arg );
38 unsigned int CocoaKeyToVLC( unichar i_key );
40 #define VLCIntf [[VLCMain sharedInstance] getIntf]
42 #define _NS(s) [[VLCMain sharedInstance] localizedString: _(s)]
43 /* Get an alternate version of the string.
44 * This string is stored as '1:string' but when displayed it only displays
45 * the translated string. the translation should be '1:translatedstring' though */
46 #define _ANS(s) [[[VLCMain sharedInstance] localizedString: _(s)] substringFromIndex:2]
48 #define MACOS_VERSION [[[NSDictionary dictionaryWithContentsOfFile: \
49 @"/System/Library/CoreServices/SystemVersion.plist"] \
50 objectForKey: @"ProductVersion"] floatValue]
52 /*****************************************************************************
53 * intf_sys_t: description and status of the interface
54 *****************************************************************************/
57 NSAutoreleasePool * o_pool;
60 /* the current input */
61 input_thread_t * p_input;
67 /* interface update */
68 vlc_bool_t b_intf_update;
69 vlc_bool_t b_playlist_update;
70 vlc_bool_t b_playmode_update;
71 vlc_bool_t b_current_title_update;
72 vlc_bool_t b_fullscreen_update;
73 vlc_bool_t b_volume_update;
76 vlc_bool_t b_input_update;
77 vlc_bool_t b_aout_update;
78 vlc_bool_t b_vout_update;
80 /* The messages window */
81 msg_subscription_t * p_sub;
84 /*****************************************************************************
86 *****************************************************************************/
87 @interface VLCMain : NSObject
89 intf_thread_t *p_intf; /* The main intf object */
90 id o_prefs; /* VLCPrefs */
91 id o_about; /* VLAboutBox */
92 id o_open; /* VLCOpen */
93 id o_wizard; /* VLCWizard */
94 BOOL nib_open_loaded; /* reference to the open-nib */
95 BOOL nib_wizard_loaded; /* reference to the wizard-nib */
97 IBOutlet id o_window; /* main window */
98 IBOutlet id o_playlist_view;/* playlist view */
99 IBOutlet id o_scrollfield; /* info field */
100 IBOutlet id o_timefield; /* time field */
101 IBOutlet id o_timeslider; /* time slider */
102 float f_slider; /* slider value */
103 float f_slider_old; /* old slider val */
104 IBOutlet id o_volumeslider; /* volume slider */
106 IBOutlet id o_btn_prev; /* btn previous */
107 IBOutlet id o_btn_rewind; /* btn rewind */
108 IBOutlet id o_btn_play; /* btn play */
109 IBOutlet id o_btn_stop; /* btn stop */
110 IBOutlet id o_btn_ff; /* btn fast forward */
111 IBOutlet id o_btn_next; /* btn next */
112 IBOutlet id o_btn_fullscreen;/* btn fullscreen */
113 IBOutlet id o_btn_playlist; /* btn playlist */
115 NSImage * o_img_play; /* btn play img */
116 NSImage * o_img_pause; /* btn pause img */
117 NSImage * o_img_play_pressed; /* btn play img */
118 NSImage * o_img_pause_pressed; /* btn pause img */
120 IBOutlet id o_controls; /* VLCControls */
121 IBOutlet id o_playlist; /* VLCPlaylist */
122 IBOutlet id o_info; /* VLCInfo */
124 IBOutlet id o_messages; /* messages tv */
125 IBOutlet id o_msgs_panel; /* messages panel */
126 NSMutableArray * o_msg_arr; /* messages array */
127 NSLock * o_msg_lock; /* messages lock */
128 IBOutlet id o_msgs_btn_crashlog; /* messages open crashlog */
130 IBOutlet id o_error; /* error panel */
131 IBOutlet id o_err_msg; /* NSTextView */
132 IBOutlet id o_err_lbl;
133 IBOutlet id o_err_bug_lbl;
134 IBOutlet id o_err_btn_msgs; /* Open Messages */
135 IBOutlet id o_err_btn_dismiss;
136 IBOutlet id o_err_ckbk_surpress;
138 IBOutlet id o_info_window; /* Info panel */
142 IBOutlet id o_mi_about;
143 IBOutlet id o_mi_prefs;
144 IBOutlet id o_mi_add_intf;
145 IBOutlet id o_mu_add_intf;
146 IBOutlet id o_mi_services;
147 IBOutlet id o_mi_hide;
148 IBOutlet id o_mi_hide_others;
149 IBOutlet id o_mi_show_all;
150 IBOutlet id o_mi_quit;
152 IBOutlet id o_mu_file;
153 IBOutlet id o_mi_open_file;
154 IBOutlet id o_mi_open_generic;
155 IBOutlet id o_mi_open_disc;
156 IBOutlet id o_mi_open_net;
157 IBOutlet id o_mi_open_recent;
158 IBOutlet id o_mi_open_recent_cm;
159 IBOutlet id o_mi_open_wizard;
161 IBOutlet id o_mu_edit;
162 IBOutlet id o_mi_cut;
163 IBOutlet id o_mi_copy;
164 IBOutlet id o_mi_paste;
165 IBOutlet id o_mi_clear;
166 IBOutlet id o_mi_select_all;
168 IBOutlet id o_mu_controls;
169 IBOutlet id o_mi_play;
170 IBOutlet id o_mi_stop;
171 IBOutlet id o_mi_faster;
172 IBOutlet id o_mi_slower;
173 IBOutlet id o_mi_previous;
174 IBOutlet id o_mi_next;
175 IBOutlet id o_mi_random;
176 IBOutlet id o_mi_repeat;
177 IBOutlet id o_mi_loop;
178 IBOutlet id o_mi_fwd;
179 IBOutlet id o_mi_bwd;
180 IBOutlet id o_mi_fwd1m;
181 IBOutlet id o_mi_bwd1m;
182 IBOutlet id o_mi_fwd5m;
183 IBOutlet id o_mi_bwd5m;
184 IBOutlet id o_mi_program;
185 IBOutlet id o_mu_program;
186 IBOutlet id o_mi_title;
187 IBOutlet id o_mu_title;
188 IBOutlet id o_mi_chapter;
189 IBOutlet id o_mu_chapter;
191 IBOutlet id o_mu_audio;
192 IBOutlet id o_mi_vol_up;
193 IBOutlet id o_mi_vol_down;
194 IBOutlet id o_mi_mute;
195 IBOutlet id o_mi_audiotrack;
196 IBOutlet id o_mu_audiotrack;
197 IBOutlet id o_mi_channels;
198 IBOutlet id o_mu_channels;
199 IBOutlet id o_mi_device;
200 IBOutlet id o_mu_device;
201 IBOutlet id o_mi_visual;
202 IBOutlet id o_mu_visual;
204 IBOutlet id o_mu_video;
205 IBOutlet id o_mi_half_window;
206 IBOutlet id o_mi_normal_window;
207 IBOutlet id o_mi_double_window;
208 IBOutlet id o_mi_fittoscreen;
209 IBOutlet id o_mi_fullscreen;
210 IBOutlet id o_mi_floatontop;
211 IBOutlet id o_mi_snapshot;
212 IBOutlet id o_mi_videotrack;
213 IBOutlet id o_mu_videotrack;
214 IBOutlet id o_mi_screen;
215 IBOutlet id o_mu_screen;
216 IBOutlet id o_mi_subtitle;
217 IBOutlet id o_mu_subtitle;
218 IBOutlet id o_mi_deinterlace;
219 IBOutlet id o_mu_deinterlace;
220 IBOutlet id o_mi_ffmpeg_pp;
221 IBOutlet id o_mu_ffmpeg_pp;
223 IBOutlet id o_mu_window;
224 IBOutlet id o_mi_minimize;
225 IBOutlet id o_mi_close_window;
226 IBOutlet id o_mi_controller;
227 IBOutlet id o_mi_equalizer;
228 IBOutlet id o_mi_playlist;
229 IBOutlet id o_mi_info;
230 IBOutlet id o_mi_messages;
231 IBOutlet id o_mi_bring_atf;
233 IBOutlet id o_mu_help;
234 IBOutlet id o_mi_readme;
235 IBOutlet id o_mi_documentation;
236 IBOutlet id o_mi_reportabug;
237 IBOutlet id o_mi_website;
238 IBOutlet id o_mi_license;
241 IBOutlet id o_dmi_play;
242 IBOutlet id o_dmi_stop;
243 IBOutlet id o_dmi_next;
244 IBOutlet id o_dmi_previous;
245 IBOutlet id o_dmi_mute;
249 mtime_t i_end_scroll;
251 NSSize o_size_with_playlist;
253 int i_lastShownVolume;
256 + (VLCMain *)sharedInstance;
258 - (intf_thread_t *)getIntf;
259 - (void)setIntf:(intf_thread_t *)p_mainintf;
265 - (NSString *)localizedString:(char *)psz;
266 - (char *)delocalizeString:(NSString *)psz;
267 - (NSString *)wrapString: (NSString *)o_in_string toWidth: (int)i_width;
268 - (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event;
273 - (void)manageIntf:(NSTimer *)o_timer;
275 - (void)setScrollField:(NSString *)o_string stopAfter:(int )timeout;
276 - (void)resetScrollField;
278 - (void)updateMessageArray;
279 - (void)playStatusUpdated:(int) i_status;
280 - (void)setSubmenusEnabled:(BOOL)b_enabled;
281 - (void)manageVolumeSlider;
282 - (IBAction)timesliderUpdate:(id)sender;
284 - (IBAction)clearRecentItems:(id)sender;
285 - (void)openRecentItem:(id)sender;
287 - (IBAction)intfOpenFile:(id)sender;
288 - (IBAction)intfOpenFileGeneric:(id)sender;
289 - (IBAction)intfOpenDisc:(id)sender;
290 - (IBAction)intfOpenNet:(id)sender;
292 - (IBAction)showWizard:(id)sender;
294 - (IBAction)viewAbout:(id)sender;
295 - (IBAction)viewPreferences:(id)sender;
296 - (IBAction)closeError:(id)sender;
297 - (IBAction)openReadMe:(id)sender;
298 - (IBAction)openDocumentation:(id)sender;
299 - (IBAction)reportABug:(id)sender;
300 - (IBAction)openWebsite:(id)sender;
301 - (IBAction)openLicense:(id)sender;
302 - (IBAction)openForum:(id)sender;
303 - (IBAction)openDonate:(id)sender;
304 - (IBAction)openCrashLog:(id)sender;
306 - (IBAction)togglePlaylist:(id)sender;
307 - (void)updateTogglePlaylistState;
309 - (void)windowDidBecomeKey:(NSNotification *)o_notification;
313 @interface VLCMain (Internal)
314 - (void)handlePortMessage:(NSPortMessage *)o_msg;