intf.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:9k
源码类别:

多媒体

开发平台:

MultiPlatform

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