]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.h
Fixed a small bug which prevented the translation of a string.
[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.54 2004/01/04 21:44:44 kuehne 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     vlc_bool_t b_fullscreen_update;
79
80     /* menus handlers */
81     vlc_bool_t b_input_update;
82     vlc_bool_t b_aout_update;
83     vlc_bool_t b_vout_update;
84
85     /* The messages window */
86     msg_subscription_t * p_sub;
87 };
88
89 /*****************************************************************************
90  * VLCMain interface
91  *****************************************************************************/
92 @interface VLCMain : NSObject
93 {
94     id o_prefs;                 /* VLCPrefs       */
95
96     IBOutlet id o_window;       /* main window    */
97     IBOutlet id o_scrollfield;  /* info field     */
98     IBOutlet id o_timefield;    /* time field     */
99     IBOutlet id o_timeslider;   /* time slider    */
100     float f_slider;             /* slider value   */
101     float f_slider_old;         /* old slider val */
102     IBOutlet id o_volumeslider; /* volume slider  */
103
104     IBOutlet id o_btn_prev;     /* btn previous   */
105     IBOutlet id o_btn_rewind;   /* btn rewind     */
106     IBOutlet id o_btn_play;     /* btn play       */
107     IBOutlet id o_btn_stop;     /* btn stop       */
108     IBOutlet id o_btn_ff;       /* btn fast forward     */
109     IBOutlet id o_btn_next;     /* btn next       */
110     IBOutlet id o_btn_fullscreen;/* btn fullscreen      */
111
112     NSImage * o_img_play;       /* btn play img   */
113     NSImage * o_img_pause;      /* btn pause img  */
114     NSImage * o_img_play_pressed;       /* btn play img   */
115     NSImage * o_img_pause_pressed;      /* btn pause img  */
116
117     IBOutlet id o_controls;     /* VLCControls    */
118     IBOutlet id o_playlist;     /* VLCPlaylist    */
119     IBOutlet id o_info;         /* VLCInfo        */
120
121     IBOutlet id o_messages;     /* messages tv    */
122     IBOutlet id o_msgs_panel;   /* messages panel */
123     NSMutableArray * o_msg_arr; /* messages array */
124     NSLock * o_msg_lock;        /* messages lock  */
125     IBOutlet id o_msgs_btn_crashlog;    /* messages open crashlog */
126
127     IBOutlet id o_error;        /* error panel    */
128     IBOutlet id o_err_msg;      /* NSTextView     */
129     IBOutlet id o_err_lbl;
130     IBOutlet id o_err_bug_lbl;
131     IBOutlet id o_err_btn_msgs; /* Open Messages  */
132     IBOutlet id o_err_btn_dismiss;
133
134     IBOutlet id o_info_window;  /* Info panel     */
135
136     /* main menu */
137
138     IBOutlet id o_mi_about;
139     IBOutlet id o_mi_prefs;
140     IBOutlet id o_mi_hide;
141     IBOutlet id o_mi_hide_others;
142     IBOutlet id o_mi_show_all;
143     IBOutlet id o_mi_quit;
144
145     IBOutlet id o_mu_file;
146     IBOutlet id o_mi_open_file;
147     IBOutlet id o_mi_open_generic;
148     IBOutlet id o_mi_open_disc;
149     IBOutlet id o_mi_open_net;
150     IBOutlet id o_mi_open_recent;
151     IBOutlet id o_mi_open_recent_cm;
152
153     IBOutlet id o_mu_edit;
154     IBOutlet id o_mi_cut;
155     IBOutlet id o_mi_copy;
156     IBOutlet id o_mi_paste;
157     IBOutlet id o_mi_clear;
158     IBOutlet id o_mi_select_all;
159
160     IBOutlet id o_mu_controls;
161     IBOutlet id o_mi_play;
162     IBOutlet id o_mi_stop;
163     IBOutlet id o_mi_faster;
164     IBOutlet id o_mi_slower;
165     IBOutlet id o_mi_previous;
166     IBOutlet id o_mi_next;
167     IBOutlet id o_mi_random;
168     IBOutlet id o_mi_repeat;
169     IBOutlet id o_mi_loop;
170     IBOutlet id o_mi_fwd;
171     IBOutlet id o_mi_bwd;
172     IBOutlet id o_mi_program;
173     IBOutlet id o_mu_program;
174     IBOutlet id o_mi_title;
175     IBOutlet id o_mu_title;
176     IBOutlet id o_mi_chapter;
177     IBOutlet id o_mu_chapter;
178
179     IBOutlet id o_mu_audio;
180     IBOutlet id o_mi_vol_up;
181     IBOutlet id o_mi_vol_down;
182     IBOutlet id o_mi_mute;
183     IBOutlet id o_mi_audiotrack;
184     IBOutlet id o_mu_audiotrack;
185     IBOutlet id o_mi_channels;
186     IBOutlet id o_mu_channels;
187     IBOutlet id o_mi_device;
188     IBOutlet id o_mu_device;
189     IBOutlet id o_mi_visual;
190     IBOutlet id o_mu_visual;
191
192     IBOutlet id o_mu_video;
193     IBOutlet id o_mi_half_window;
194     IBOutlet id o_mi_normal_window;
195     IBOutlet id o_mi_double_window;
196     IBOutlet id o_mi_fittoscreen;
197     IBOutlet id o_mi_fullscreen;
198     IBOutlet id o_mi_floatontop;
199     IBOutlet id o_mi_videotrack;
200     IBOutlet id o_mu_videotrack;
201     IBOutlet id o_mi_screen;
202     IBOutlet id o_mu_screen;
203     IBOutlet id o_mi_subtitle;
204     IBOutlet id o_mu_subtitle;
205     IBOutlet id o_mi_deinterlace;
206     IBOutlet id o_mu_deinterlace;
207
208     IBOutlet id o_mu_window;
209     IBOutlet id o_mi_minimize;
210     IBOutlet id o_mi_close_window;
211     IBOutlet id o_mi_controller;
212     IBOutlet id o_mi_playlist;
213     IBOutlet id o_mi_info;
214     IBOutlet id o_mi_messages;
215     IBOutlet id o_mi_bring_atf;
216
217     IBOutlet id o_mu_help;
218     IBOutlet id o_mi_readme;
219     IBOutlet id o_mi_documentation;
220     IBOutlet id o_mi_reportabug;
221     IBOutlet id o_mi_website;
222     IBOutlet id o_mi_license;
223
224     /* dock menu */
225     IBOutlet id o_dmi_play;
226     IBOutlet id o_dmi_stop;
227     IBOutlet id o_dmi_next;
228     IBOutlet id o_dmi_previous;
229     IBOutlet id o_dmi_mute;
230 }
231
232 - (id)getControls;
233 - (id)getPlaylist;
234 - (void)terminate;
235
236 - (void)initStrings;
237
238 - (void)manage;
239 - (void)manageIntf:(NSTimer *)o_timer;
240 - (void)setupMenus;
241
242 - (void)updateMessageArray;
243 - (void)playStatusUpdated:(BOOL)b_pause;
244 - (void)setSubmenusEnabled:(BOOL)b_enabled;
245 - (void)manageVolumeSlider;
246 - (IBAction)timesliderUpdate:(id)sender;
247
248 - (IBAction)clearRecentItems:(id)sender;
249 - (void)openRecentItem:(id)sender;
250
251 - (IBAction)viewPreferences:(id)sender;
252 - (IBAction)closeError:(id)sender;
253 - (IBAction)openReadMe:(id)sender;
254 - (IBAction)openDocumentation:(id)sender;
255 - (IBAction)reportABug:(id)sender;
256 - (IBAction)openWebsite:(id)sender;
257 - (IBAction)openLicense:(id)sender;
258 - (IBAction)openCrashLog:(id)sender;
259
260 - (void)windowDidBecomeKey:(NSNotification *)o_notification;
261
262 @end
263
264 @interface VLCMain (Internal)
265 - (void)handlePortMessage:(NSPortMessage *)o_msg;
266 @end