]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.h
OS X intf work
[vlc] / modules / gui / macosx / intf.h
1 /*****************************************************************************
2  * intf.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2004 VideoLAN
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  *
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.
15  *
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.
20  *
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  *****************************************************************************/
25
26 #include <vlc/vlc.h>
27 #include <vlc/intf.h>
28 #include <vlc/vout.h>
29 #include <vlc/aout.h>
30 #include <vlc/input.h>
31
32 #include <Cocoa/Cocoa.h>
33
34 /*****************************************************************************
35  * Local prototypes.
36  *****************************************************************************/
37 int ExecuteOnMainThread( id target, SEL sel, void * p_arg );
38 unsigned int CocoaKeyToVLC( unichar i_key );
39
40 #define VLCIntf [[VLCMain sharedInstance] getIntf]
41
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]
47
48 /*****************************************************************************
49  * intf_sys_t: description and status of the interface
50  *****************************************************************************/
51 struct intf_sys_t
52 {
53     NSAutoreleasePool * o_pool;
54     NSPort * o_sendport;
55
56     /* the current input */
57     input_thread_t * p_input;
58
59     /* special actions */
60     vlc_bool_t b_mute;
61     int i_play_status;
62
63     /* interface update */
64     vlc_bool_t b_intf_update;
65     vlc_bool_t b_playlist_update;
66     vlc_bool_t b_current_title_update;
67     vlc_bool_t b_fullscreen_update;
68
69     /* menus handlers */
70     vlc_bool_t b_input_update;
71     vlc_bool_t b_aout_update;
72     vlc_bool_t b_vout_update;
73
74     /* The messages window */
75     msg_subscription_t * p_sub;
76 };
77
78 /*****************************************************************************
79  * VLCMain interface
80  *****************************************************************************/
81 @interface VLCMain : NSObject
82 {
83     intf_thread_t *p_intf;      /* The main intf object */
84     id o_prefs;                 /* VLCPrefs       */
85     id o_about;                 /* VLAboutBox     */
86     id o_open;                  /* VLCOpen        */
87     BOOL nib_open_loaded;       /* reference to the open-nib */
88
89     IBOutlet id o_window;       /* main window    */
90     IBOutlet id o_clip_view;    /* playlist clipview    */
91     IBOutlet id o_scrollfield;  /* info field     */
92     IBOutlet id o_timefield;    /* time field     */
93     IBOutlet id o_timeslider;   /* time slider    */
94     float f_slider;             /* slider value   */
95     float f_slider_old;         /* old slider val */
96     IBOutlet id o_volumeslider; /* volume slider  */
97
98     IBOutlet id o_btn_prev;     /* btn previous   */
99     IBOutlet id o_btn_rewind;   /* btn rewind     */
100     IBOutlet id o_btn_play;     /* btn play       */
101     IBOutlet id o_btn_stop;     /* btn stop       */
102     IBOutlet id o_btn_ff;       /* btn fast forward     */
103     IBOutlet id o_btn_next;     /* btn next       */
104     IBOutlet id o_btn_fullscreen;/* btn fullscreen      */
105
106     NSImage * o_img_play;       /* btn play img   */
107     NSImage * o_img_pause;      /* btn pause img  */
108     NSImage * o_img_play_pressed;       /* btn play img   */
109     NSImage * o_img_pause_pressed;      /* btn pause img  */
110
111     IBOutlet id o_controls;     /* VLCControls    */
112     IBOutlet id o_playlist;     /* VLCPlaylist    */
113     IBOutlet id o_info;         /* VLCInfo        */
114
115     IBOutlet id o_messages;     /* messages tv    */
116     IBOutlet id o_msgs_panel;   /* messages panel */
117     NSMutableArray * o_msg_arr; /* messages array */
118     NSLock * o_msg_lock;        /* messages lock  */
119     IBOutlet id o_msgs_btn_crashlog;    /* messages open crashlog */
120
121     IBOutlet id o_error;        /* error panel    */
122     IBOutlet id o_err_msg;      /* NSTextView     */
123     IBOutlet id o_err_lbl;
124     IBOutlet id o_err_bug_lbl;
125     IBOutlet id o_err_btn_msgs; /* Open Messages  */
126     IBOutlet id o_err_btn_dismiss;
127     IBOutlet id o_err_ckbk_surpress;
128
129     IBOutlet id o_info_window;  /* Info panel     */
130
131     /* main menu */
132
133     IBOutlet id o_mi_about;
134     IBOutlet id o_mi_prefs;
135     IBOutlet id o_mi_add_intf;
136     IBOutlet id o_mu_add_intf;
137     IBOutlet id o_mi_services;
138     IBOutlet id o_mi_hide;
139     IBOutlet id o_mi_hide_others;
140     IBOutlet id o_mi_show_all;
141     IBOutlet id o_mi_quit;
142
143     IBOutlet id o_mu_file;
144     IBOutlet id o_mi_open_file;
145     IBOutlet id o_mi_open_generic;
146     IBOutlet id o_mi_open_disc;
147     IBOutlet id o_mi_open_net;
148     IBOutlet id o_mi_open_recent;
149     IBOutlet id o_mi_open_recent_cm;
150
151     IBOutlet id o_mu_edit;
152     IBOutlet id o_mi_cut;
153     IBOutlet id o_mi_copy;
154     IBOutlet id o_mi_paste;
155     IBOutlet id o_mi_clear;
156     IBOutlet id o_mi_select_all;
157
158     IBOutlet id o_mu_controls;
159     IBOutlet id o_mi_play;
160     IBOutlet id o_mi_stop;
161     IBOutlet id o_mi_faster;
162     IBOutlet id o_mi_slower;
163     IBOutlet id o_mi_previous;
164     IBOutlet id o_mi_next;
165     IBOutlet id o_mi_random;
166     IBOutlet id o_mi_repeat;
167     IBOutlet id o_mi_loop;
168     IBOutlet id o_mi_fwd;
169     IBOutlet id o_mi_bwd;
170     IBOutlet id o_mi_fwd1m;
171     IBOutlet id o_mi_bwd1m;
172     IBOutlet id o_mi_fwd5m;
173     IBOutlet id o_mi_bwd5m;
174     IBOutlet id o_mi_program;
175     IBOutlet id o_mu_program;
176     IBOutlet id o_mi_title;
177     IBOutlet id o_mu_title;
178     IBOutlet id o_mi_chapter;
179     IBOutlet id o_mu_chapter;
180
181     IBOutlet id o_mu_audio;
182     IBOutlet id o_mi_vol_up;
183     IBOutlet id o_mi_vol_down;
184     IBOutlet id o_mi_mute;
185     IBOutlet id o_mi_audiotrack;
186     IBOutlet id o_mu_audiotrack;
187     IBOutlet id o_mi_channels;
188     IBOutlet id o_mu_channels;
189     IBOutlet id o_mi_device;
190     IBOutlet id o_mu_device;
191     IBOutlet id o_mi_visual;
192     IBOutlet id o_mu_visual;
193
194     IBOutlet id o_mu_video;
195     IBOutlet id o_mi_half_window;
196     IBOutlet id o_mi_normal_window;
197     IBOutlet id o_mi_double_window;
198     IBOutlet id o_mi_fittoscreen;
199     IBOutlet id o_mi_fullscreen;
200     IBOutlet id o_mi_floatontop;
201     IBOutlet id o_mi_snapshot;
202     IBOutlet id o_mi_videotrack;
203     IBOutlet id o_mu_videotrack;
204     IBOutlet id o_mi_screen;
205     IBOutlet id o_mu_screen;
206     IBOutlet id o_mi_subtitle;
207     IBOutlet id o_mu_subtitle;
208     IBOutlet id o_mi_deinterlace;
209     IBOutlet id o_mu_deinterlace;
210     IBOutlet id o_mi_ffmpeg_pp;
211     IBOutlet id o_mu_ffmpeg_pp;
212
213     IBOutlet id o_mu_window;
214     IBOutlet id o_mi_minimize;
215     IBOutlet id o_mi_close_window;
216     IBOutlet id o_mi_controller;
217     IBOutlet id o_mi_equalizer;
218     IBOutlet id o_mi_playlist;
219     IBOutlet id o_mi_info;
220     IBOutlet id o_mi_messages;
221     IBOutlet id o_mi_bring_atf;
222
223     IBOutlet id o_mu_help;
224     IBOutlet id o_mi_readme;
225     IBOutlet id o_mi_documentation;
226     IBOutlet id o_mi_reportabug;
227     IBOutlet id o_mi_website;
228     IBOutlet id o_mi_license;
229
230     /* dock menu */
231     IBOutlet id o_dmi_play;
232     IBOutlet id o_dmi_stop;
233     IBOutlet id o_dmi_next;
234     IBOutlet id o_dmi_previous;
235     IBOutlet id o_dmi_mute;
236     
237     /* stupid outline views .... */
238     NSRect rect_remember;
239     NSView *o_document_view;
240 }
241
242 + (VLCMain *)sharedInstance;
243
244 - (intf_thread_t *)getIntf;
245 - (void)setIntf:(intf_thread_t *)p_mainintf;
246
247 - (id)getControls;
248 - (id)getPlaylist;
249 - (id)getInfo;
250 - (void)terminate;
251 - (NSString *)localizedString:(char *)psz;
252 - (char *)delocalizeString:(NSString *)psz;
253 - (NSString *)wrapString: (NSString *)o_in_string toWidth: (int)i_width;
254 - (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event;
255
256 - (void)initStrings;
257
258 - (void)manage;
259 - (void)manageIntf:(NSTimer *)o_timer;
260 - (void)setupMenus;
261
262 - (void)updateMessageArray;
263 - (void)playStatusUpdated:(int) i_status;
264 - (void)setSubmenusEnabled:(BOOL)b_enabled;
265 - (void)manageVolumeSlider;
266 - (IBAction)timesliderUpdate:(id)sender;
267
268 - (IBAction)clearRecentItems:(id)sender;
269 - (void)openRecentItem:(id)sender;
270
271 - (IBAction)intfOpenFile:(id)sender;
272 - (IBAction)intfOpenFileGeneric:(id)sender;
273 - (IBAction)intfOpenDisc:(id)sender;
274 - (IBAction)intfOpenNet:(id)sender;
275
276 - (IBAction)viewAbout:(id)sender;
277 - (IBAction)viewPreferences:(id)sender;
278 - (IBAction)closeError:(id)sender;
279 - (IBAction)openReadMe:(id)sender;
280 - (IBAction)openDocumentation:(id)sender;
281 - (IBAction)reportABug:(id)sender;
282 - (IBAction)openWebsite:(id)sender;
283 - (IBAction)openLicense:(id)sender;
284 - (IBAction)openCrashLog:(id)sender;
285
286 - (void)windowDidBecomeKey:(NSNotification *)o_notification;
287
288 @end
289
290 @interface VLCMain (Internal)
291 - (void)handlePortMessage:(NSPortMessage *)o_msg;
292 @end