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