]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.h
* include/vlc_keys.h: added StringToKey()
[vlc] / modules / gui / macosx / intf.h
1 /*****************************************************************************
2  * intf.h: MacOS X interface plugin
3  *****************************************************************************
4  * Copyright (C) 2002-2003 VideoLAN
5  * $Id: intf.h,v 1.48 2003/11/11 23:50:41 hartman Exp $
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  *
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
31 #include <Cocoa/Cocoa.h>
32
33 /*****************************************************************************
34  * VLCApplication interface 
35  *****************************************************************************/
36 @interface VLCApplication : NSApplication
37 {
38     intf_thread_t *p_intf;
39 }
40
41 - (NSString *)localizedString:(char *)psz;
42 - (char *)delocalizeString:(NSString *)psz;
43 - (NSString *)wrapString: (NSString *)o_in_string toWidth: (int)i_width;
44
45 - (void)setIntf:(intf_thread_t *)p_intf;
46 - (intf_thread_t *)getIntf;
47
48 @end
49
50 #define _NS(s) [NSApp localizedString: _(s)]
51 /* Get an alternate version of the string.
52  * This string is stored as '1:string' but when displayed it only displays
53  * the translated string. the translation should be '1:translatedstring' though */
54 #define _ANS(s) [[NSApp localizedString: _(s)] substringFromIndex:2]
55
56 int ExecuteOnMainThread( id target, SEL sel, void * p_arg );
57 int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
58                      vlc_value_t old_val, vlc_value_t new_val, void *param );
59 unsigned int CocoaKeyToVLC( unichar i_key );
60
61 /*****************************************************************************
62  * intf_sys_t: description and status of the interface
63  *****************************************************************************/
64 struct intf_sys_t
65 {
66     NSAutoreleasePool * o_pool;
67     NSPort * o_sendport;
68
69     /* special actions */
70     vlc_bool_t b_playing;
71     vlc_bool_t b_mute;
72
73     /* interface update */
74     vlc_bool_t b_intf_update;
75     vlc_bool_t b_play_status;
76     vlc_bool_t b_playlist_update;
77     vlc_bool_t b_current_title_update;
78     
79     /* menus handlers */
80     vlc_bool_t b_input_update;
81     vlc_bool_t b_aout_update;
82     vlc_bool_t b_vout_update;
83
84     /* The messages window */
85     msg_subscription_t * p_sub;
86 };
87
88 /*****************************************************************************
89  * VLCMain interface 
90  *****************************************************************************/
91 @interface VLCMain : NSObject
92 {
93     id o_prefs;                 /* VLCPrefs       */
94
95     IBOutlet id o_window;       /* main window    */
96     IBOutlet id o_timefield;    /* time field     */
97     IBOutlet id o_timeslider;   /* time slider    */
98     float f_slider;             /* slider value   */
99     float f_slider_old;         /* old slider val */ 
100     IBOutlet id o_volumeslider; /* volume slider  */
101
102     IBOutlet id o_btn_playlist; /* btn playlist   */
103     IBOutlet id o_btn_prev;     /* btn previous   */
104     IBOutlet id o_btn_slower;   /* btn slower     */
105     IBOutlet id o_btn_play;     /* btn play       */
106     IBOutlet id o_btn_stop;     /* btn stop       */
107     IBOutlet id o_btn_faster;   /* btn faster     */
108     IBOutlet id o_btn_next;     /* btn next       */
109     IBOutlet id o_btn_prefs;    /* btn prefs      */
110
111     NSImage * o_img_play;       /* btn play img   */
112     NSImage * o_img_pause;      /* btn pause img  */
113
114     IBOutlet id o_controls;     /* VLCControls    */
115     IBOutlet id o_playlist;     /* VLCPlaylist    */
116     IBOutlet id o_info;         /* VLCInfo        */
117
118     IBOutlet id o_messages;     /* messages tv    */
119     IBOutlet id o_msgs_panel;   /* messages panel */
120     NSMutableArray * o_msg_arr; /* messages array */
121     NSLock * o_msg_lock;        /* messages lock  */
122     IBOutlet id o_msgs_btn_crashlog;    /* messages open crashlog */
123
124     IBOutlet id o_error;        /* error panel    */
125     IBOutlet id o_err_msg;      /* NSTextView     */
126     IBOutlet id o_err_lbl;
127     IBOutlet id o_err_bug_lbl;
128     IBOutlet id o_err_btn_msgs; /* Open Messages  */
129     IBOutlet id o_err_btn_dismiss;
130     
131     IBOutlet id o_info_window;  /* Info panel     */
132
133     /* main menu */
134
135     IBOutlet id o_mi_about;
136     IBOutlet id o_mi_prefs;
137     IBOutlet id o_mi_hide;
138     IBOutlet id o_mi_hide_others;
139     IBOutlet id o_mi_show_all;
140     IBOutlet id o_mi_quit;
141
142     IBOutlet id o_mu_file;
143     IBOutlet id o_mi_open_file;
144     IBOutlet id o_mi_open_generic;
145     IBOutlet id o_mi_open_disc;
146     IBOutlet id o_mi_open_net;
147     IBOutlet id o_mi_open_recent;
148     IBOutlet id o_mi_open_recent_cm;
149
150     IBOutlet id o_mu_edit;
151     IBOutlet id o_mi_cut;
152     IBOutlet id o_mi_copy;
153     IBOutlet id o_mi_paste;
154     IBOutlet id o_mi_clear;
155     IBOutlet id o_mi_select_all;
156
157     IBOutlet id o_mu_controls;
158     IBOutlet id o_mi_play;
159     IBOutlet id o_mi_stop;
160     IBOutlet id o_mi_faster;
161     IBOutlet id o_mi_slower;
162     IBOutlet id o_mi_previous;
163     IBOutlet id o_mi_next;
164     IBOutlet id o_mi_random;
165     IBOutlet id o_mi_repeat;
166     IBOutlet id o_mi_loop;
167     IBOutlet id o_mi_fwd;
168     IBOutlet id o_mi_bwd;
169     IBOutlet id o_mi_program;
170     IBOutlet id o_mu_program;
171     IBOutlet id o_mi_title;
172     IBOutlet id o_mu_title;
173     IBOutlet id o_mi_chapter;
174     IBOutlet id o_mu_chapter;
175
176     IBOutlet id o_mu_audio;
177     IBOutlet id o_mi_vol_up;
178     IBOutlet id o_mi_vol_down;
179     IBOutlet id o_mi_mute;
180     IBOutlet id o_mi_audiotrack;
181     IBOutlet id o_mu_audiotrack;
182     IBOutlet id o_mi_channels;
183     IBOutlet id o_mu_channels;
184     IBOutlet id o_mi_device;
185     IBOutlet id o_mu_device;
186     IBOutlet id o_mi_visual;
187     IBOutlet id o_mu_visual;
188
189     IBOutlet id o_mu_video;
190     IBOutlet id o_mi_half_window;
191     IBOutlet id o_mi_normal_window;
192     IBOutlet id o_mi_double_window;
193     IBOutlet id o_mi_fittoscreen;
194     IBOutlet id o_mi_fullscreen;
195     IBOutlet id o_mi_floatontop;
196     IBOutlet id o_mi_videotrack;
197     IBOutlet id o_mu_videotrack;
198     IBOutlet id o_mi_screen;
199     IBOutlet id o_mu_screen;
200     IBOutlet id o_mi_subtitle;
201     IBOutlet id o_mu_subtitle;
202     IBOutlet id o_mi_deinterlace;
203     IBOutlet id o_mu_deinterlace;
204
205     IBOutlet id o_mu_window;
206     IBOutlet id o_mi_minimize;
207     IBOutlet id o_mi_close_window;
208     IBOutlet id o_mi_controller;
209     IBOutlet id o_mi_playlist;
210     IBOutlet id o_mi_info;
211     IBOutlet id o_mi_messages;
212     IBOutlet id o_mi_bring_atf;
213     
214     IBOutlet id o_mu_help;
215     IBOutlet id o_mi_readme;
216     IBOutlet id o_mi_documentation;
217     IBOutlet id o_mi_reportabug;
218     IBOutlet id o_mi_website;
219     IBOutlet id o_mi_license;
220
221     /* dock menu */
222     IBOutlet id o_dmi_play;
223     IBOutlet id o_dmi_stop;
224     IBOutlet id o_dmi_next;
225     IBOutlet id o_dmi_previous;
226 }
227
228 - (id)getControls;
229 - (void)terminate;
230
231 - (void)initStrings;
232
233 - (void)manage;
234 - (void)manageIntf:(NSTimer *)o_timer;
235 - (void)setupMenus;
236
237 - (void)updateMessageArray;
238 - (void)playStatusUpdated:(BOOL)b_pause;
239 - (void)setSubmenusEnabled:(BOOL)b_enabled;
240 - (void)manageVolumeSlider;
241 - (IBAction)timesliderUpdate:(id)sender;
242
243 - (IBAction)clearRecentItems:(id)sender;
244 - (void)openRecentItem:(id)sender;
245
246 - (IBAction)viewPreferences:(id)sender;
247 - (IBAction)closeError:(id)sender;
248 - (IBAction)openReadMe:(id)sender;
249 - (IBAction)openDocumentation:(id)sender;
250 - (IBAction)reportABug:(id)sender;
251 - (IBAction)openWebsite:(id)sender;
252 - (IBAction)openLicense:(id)sender;
253 - (IBAction)openCrashLog:(id)sender;
254
255 - (void)windowDidBecomeKey:(NSNotification *)o_notification;
256
257 @end
258
259 @interface VLCMain (Internal)
260 - (void)handlePortMessage:(NSPortMessage *)o_msg;
261 @end