]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.h
A bit of headers cleanup
[vlc] / modules / gui / macosx / intf.h
1 /*****************************************************************************
2  * intf.h: MacOS X interface module
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 <hartman at videolan dot org>
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 #include <vlc/vlc.h>
28 #include <vlc_interface.h>
29 #include <vlc_vout.h>
30 #include <vlc_aout.h>
31 #include <vlc_input.h>
32
33 #include <Cocoa/Cocoa.h>
34
35 /*****************************************************************************
36  * Local prototypes.
37  *****************************************************************************/
38 int ExecuteOnMainThread( id target, SEL sel, void * p_arg );
39 unsigned int CocoaKeyToVLC( unichar i_key );
40
41 #define VLCIntf [[VLCMain sharedInstance] getIntf]
42
43 #define _NS(s) [[VLCMain sharedInstance] localizedString: _(s)]
44 /* Get an alternate version of the string.
45  * This string is stored as '1:string' but when displayed it only displays
46  * the translated string. the translation should be '1:translatedstring' though */
47 #define _ANS(s) [[[VLCMain sharedInstance] localizedString: _(s)] substringFromIndex:2]
48
49 #define MACOS_VERSION [[[NSDictionary dictionaryWithContentsOfFile: \
50             @"/System/Library/CoreServices/SystemVersion.plist"] \
51             objectForKey: @"ProductVersion"] floatValue]
52
53 /*****************************************************************************
54  * intf_sys_t: description and status of the interface
55  *****************************************************************************/
56 struct intf_sys_t
57 {
58     NSAutoreleasePool * o_pool;
59     NSPort * o_sendport;
60
61     /* the current input */
62     input_thread_t * p_input;
63
64     /* special actions */
65     vlc_bool_t b_mute;
66     int i_play_status;
67
68     /* interface update */
69     vlc_bool_t b_intf_update;
70     vlc_bool_t b_playlist_update;
71     vlc_bool_t b_playmode_update;
72     vlc_bool_t b_current_title_update;
73     vlc_bool_t b_fullscreen_update;
74     vlc_bool_t b_volume_update;
75     vlc_bool_t b_intf_show;
76
77     /* menus handlers */
78     vlc_bool_t b_input_update;
79     vlc_bool_t b_aout_update;
80     vlc_bool_t b_vout_update;
81
82     /* The messages window */
83     msg_subscription_t * p_sub;
84
85 };
86
87 /*****************************************************************************
88  * VLCMain interface
89  *****************************************************************************/
90 @class AppleRemote;
91 @interface VLCMain : NSObject
92 {
93     intf_thread_t *p_intf;      /* The main intf object */
94     id o_prefs;                 /* VLCPrefs       */
95     id o_about;                 /* VLAboutBox     */
96     id o_open;                  /* VLCOpen        */
97     id o_wizard;                /* VLCWizard      */
98     id o_extended;              /* VLCExtended    */
99     id o_bookmarks;             /* VLCBookmarks   */
100     id o_embedded_list;         /* VLCEmbeddedList*/
101     id o_interaction_list;      /* VLCInteractionList*/
102     id o_sfilters;              /* VLCsFilters    */
103     id o_update;                /* VLCUpdate      */
104     BOOL nib_main_loaded;       /* reference to the main-nib */
105     BOOL nib_open_loaded;       /* reference to the open-nib */
106     BOOL nib_about_loaded;      /* reference to the about-nib */
107     BOOL nib_wizard_loaded;     /* reference to the wizard-nib */
108     BOOL nib_extended_loaded;   /* reference to the extended-nib */
109     BOOL nib_bookmarks_loaded;  /* reference to the bookmarks-nib */
110     BOOL nib_sfilters_loaded;   /* reference to the sfilters-nib */
111     BOOL nib_update_loaded;     /* reference to the update-nib */
112
113     IBOutlet id o_window;       /* main window    */
114     IBOutlet id o_playlist_view;/* playlist view  */
115     IBOutlet id o_scrollfield;  /* info field     */
116     IBOutlet id o_timefield;    /* time field     */
117     IBOutlet id o_timeslider;   /* time slider    */
118     IBOutlet id o_embedded_window; /* Embedded Vout Window */
119     float f_slider;             /* slider value   */
120     float f_slider_old;         /* old slider val */
121     IBOutlet id o_volumeslider; /* volume slider  */
122
123     IBOutlet id o_main_pgbar;   /* main interface progress bar */
124     IBOutlet id o_btn_prev;     /* btn previous   */
125     IBOutlet id o_btn_rewind;   /* btn rewind     */
126     IBOutlet id o_btn_play;     /* btn play       */
127     IBOutlet id o_btn_stop;     /* btn stop       */
128     IBOutlet id o_btn_ff;       /* btn fast forward     */
129     IBOutlet id o_btn_next;     /* btn next       */
130     IBOutlet id o_btn_fullscreen;/* btn fullscreen      */
131     IBOutlet id o_btn_playlist; /* btn playlist   */
132
133     NSImage * o_img_play;       /* btn play img   */
134     NSImage * o_img_pause;      /* btn pause img  */
135     NSImage * o_img_play_pressed;       /* btn play img   */
136     NSImage * o_img_pause_pressed;      /* btn pause img  */
137
138     IBOutlet id o_controls;     /* VLCControls    */
139     IBOutlet id o_playlist;     /* VLCPlaylist    */
140     IBOutlet id o_info;         /* VLCInfo        */
141
142     IBOutlet id o_messages;     /* messages tv    */
143     IBOutlet id o_msgs_panel;   /* messages panel */
144     NSMutableArray * o_msg_arr; /* messages array */
145     NSLock * o_msg_lock;        /* messages lock  */
146     IBOutlet id o_msgs_btn_crashlog;    /* messages open crashlog */
147
148     IBOutlet id o_info_window;  /* Info panel     */
149
150     /* main menu */
151
152     IBOutlet id o_mi_about;
153     IBOutlet id o_mi_prefs;
154     IBOutlet id o_mi_checkForUpdate;
155     IBOutlet id o_mi_add_intf;
156     IBOutlet id o_mu_add_intf;
157     IBOutlet id o_mi_services;
158     IBOutlet id o_mi_hide;
159     IBOutlet id o_mi_hide_others;
160     IBOutlet id o_mi_show_all;
161     IBOutlet id o_mi_quit;
162
163     IBOutlet id o_mu_file;
164     IBOutlet id o_mi_open_file;
165     IBOutlet id o_mi_open_generic;
166     IBOutlet id o_mi_open_disc;
167     IBOutlet id o_mi_open_net;
168     IBOutlet id o_mi_open_recent;
169     IBOutlet id o_mi_open_recent_cm;
170     IBOutlet id o_mi_open_wizard;
171
172     IBOutlet id o_mu_edit;
173     IBOutlet id o_mi_cut;
174     IBOutlet id o_mi_copy;
175     IBOutlet id o_mi_paste;
176     IBOutlet id o_mi_clear;
177     IBOutlet id o_mi_select_all;
178
179     IBOutlet id o_mu_controls;
180     IBOutlet id o_mi_play;
181     IBOutlet id o_mi_stop;
182     IBOutlet id o_mi_faster;
183     IBOutlet id o_mi_slower;
184     IBOutlet id o_mi_previous;
185     IBOutlet id o_mi_next;
186     IBOutlet id o_mi_random;
187     IBOutlet id o_mi_repeat;
188     IBOutlet id o_mi_loop;
189     IBOutlet id o_mi_fwd;
190     IBOutlet id o_mi_bwd;
191     IBOutlet id o_mi_fwd1m;
192     IBOutlet id o_mi_bwd1m;
193     IBOutlet id o_mi_fwd5m;
194     IBOutlet id o_mi_bwd5m;
195     IBOutlet id o_mi_program;
196     IBOutlet id o_mu_program;
197     IBOutlet id o_mi_title;
198     IBOutlet id o_mu_title;
199     IBOutlet id o_mi_chapter;
200     IBOutlet id o_mu_chapter;
201
202     IBOutlet id o_mu_audio;
203     IBOutlet id o_mi_vol_up;
204     IBOutlet id o_mi_vol_down;
205     IBOutlet id o_mi_mute;
206     IBOutlet id o_mi_audiotrack;
207     IBOutlet id o_mu_audiotrack;
208     IBOutlet id o_mi_channels;
209     IBOutlet id o_mu_channels;
210     IBOutlet id o_mi_device;
211     IBOutlet id o_mu_device;
212     IBOutlet id o_mi_visual;
213     IBOutlet id o_mu_visual;
214
215     IBOutlet id o_mu_video;
216     IBOutlet id o_mi_half_window;
217     IBOutlet id o_mi_normal_window;
218     IBOutlet id o_mi_double_window;
219     IBOutlet id o_mi_fittoscreen;
220     IBOutlet id o_mi_fullscreen;
221     IBOutlet id o_mi_floatontop;
222     IBOutlet id o_mi_snapshot;
223     IBOutlet id o_mi_videotrack;
224     IBOutlet id o_mu_videotrack;
225     IBOutlet id o_mi_screen;
226     IBOutlet id o_mu_screen;
227     IBOutlet id o_mi_aspect_ratio;
228     IBOutlet id o_mu_aspect_ratio;
229     IBOutlet id o_mi_crop;
230     IBOutlet id o_mu_crop;
231     IBOutlet id o_mi_subtitle;
232     IBOutlet id o_mu_subtitle;
233     IBOutlet id o_mi_deinterlace;
234     IBOutlet id o_mu_deinterlace;
235     IBOutlet id o_mi_ffmpeg_pp;
236     IBOutlet id o_mu_ffmpeg_pp;
237
238     IBOutlet id o_mu_window;
239     IBOutlet id o_mi_minimize;
240     IBOutlet id o_mi_close_window;
241     IBOutlet id o_mi_controller;
242     IBOutlet id o_mi_equalizer;
243     IBOutlet id o_mi_extended;
244     IBOutlet id o_mi_bookmarks;
245     IBOutlet id o_mi_playlist;
246     IBOutlet id o_mi_info;
247     IBOutlet id o_mi_messages;
248     IBOutlet id o_mi_bring_atf;
249
250     IBOutlet id o_mu_help;
251     IBOutlet id o_mi_readme;
252     IBOutlet id o_mi_documentation;
253     IBOutlet id o_mi_reportabug;
254     IBOutlet id o_mi_website;
255     IBOutlet id o_mi_license;
256     IBOutlet id o_mi_donation;
257     IBOutlet id o_mi_forum;
258     IBOutlet id o_mi_errorsAndWarnings;
259
260     /* dock menu */
261     IBOutlet id o_dmi_play;
262     IBOutlet id o_dmi_stop;
263     IBOutlet id o_dmi_next;
264     IBOutlet id o_dmi_previous;
265     IBOutlet id o_dmi_mute;
266
267     /* vout menu */
268     IBOutlet id o_vout_menu;
269     IBOutlet id o_vmi_play;
270     IBOutlet id o_vmi_stop;
271     IBOutlet id o_vmi_prev;
272     IBOutlet id o_vmi_next;
273     IBOutlet id o_vmi_volup;
274     IBOutlet id o_vmi_voldown;
275     IBOutlet id o_vmi_mute;
276     IBOutlet id o_vmi_fullscreen;
277     IBOutlet id o_vmi_snapshot;
278
279     bool b_small_window;
280
281     mtime_t i_end_scroll;
282
283     NSSize o_size_with_playlist;
284
285     int     i_lastShownVolume;
286
287     AppleRemote * o_remote;
288     BOOL b_left_right_remote_button_hold; /* true as long as the user holds the left or right button on the remote control */
289 }
290
291 + (VLCMain *)sharedInstance;
292
293 - (intf_thread_t *)getIntf;
294 - (void)setIntf:(intf_thread_t *)p_mainintf;
295
296 - (id)getControls;
297 - (id)getPlaylist;
298 - (id)getInfo;
299 - (id)getWizard;
300 - (id)getBookmarks;
301 - (id)getEmbeddedList;
302 - (id)getInteractionList;
303 - (id)getMainIntfPgbar;
304 - (id)getControllerWindow;
305 - (id)getVoutMenu;
306 - (void)terminate;
307 - (NSString *)localizedString:(char *)psz;
308 - (char *)delocalizeString:(NSString *)psz;
309 - (NSString *)wrapString: (NSString *)o_in_string toWidth: (int)i_width;
310 - (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event;
311
312 - (void)initStrings;
313
314 - (void)manage;
315 - (void)manageIntf:(NSTimer *)o_timer;
316 - (void)setupMenus;
317 - (void)setScrollField:(NSString *)o_string stopAfter:(int )timeout;
318 - (void)resetScrollField;
319
320 - (void)updateMessageArray;
321 - (void)playStatusUpdated:(int) i_status;
322 - (void)setSubmenusEnabled:(BOOL)b_enabled;
323 - (void)manageVolumeSlider;
324 - (IBAction)timesliderUpdate:(id)sender;
325
326 - (IBAction)clearRecentItems:(id)sender;
327 - (void)openRecentItem:(id)sender;
328
329 - (IBAction)intfOpenFile:(id)sender;
330 - (IBAction)intfOpenFileGeneric:(id)sender;
331 - (IBAction)intfOpenDisc:(id)sender;
332 - (IBAction)intfOpenNet:(id)sender;
333
334 - (IBAction)showWizard:(id)sender;
335 - (IBAction)showExtended:(id)sender;
336 - (IBAction)showBookmarks:(id)sender;
337 - (IBAction)showSFilters:(id)sender;
338
339 - (IBAction)viewAbout:(id)sender;
340 - (IBAction)viewPreferences:(id)sender;
341 - (IBAction)checkForUpdate:(id)sender;
342 - (IBAction)openReadMe:(id)sender;
343 - (IBAction)openDocumentation:(id)sender;
344 - (IBAction)reportABug:(id)sender;
345 - (IBAction)openWebsite:(id)sender;
346 - (IBAction)openLicense:(id)sender;
347 - (IBAction)openForum:(id)sender;
348 - (IBAction)openDonate:(id)sender;
349 - (IBAction)openCrashLog:(id)sender;
350 - (IBAction)viewErrorsAndWarnings:(id)sender;
351 - (IBAction)showMessagesPanel:(id)sender;
352
353 - (IBAction)togglePlaylist:(id)sender;
354 - (void)updateTogglePlaylistState;
355
356 - (void)windowDidBecomeKey:(NSNotification *)o_notification;
357
358 @end
359
360 @interface VLCMain (Internal)
361 - (void)handlePortMessage:(NSPortMessage *)o_msg;
362 @end