controls.m
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:38k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * controls.m: MacOS X interface module
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2009 the VideoLAN team
  5.  * $Id: 8a2c6a29cf51e53f1d5e2f6928b4d842b21df847 $
  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.  *          Benjamin Pracht <bigben at videolan doit org>
  11.  *          Felix Paul Kühne <fkuehne at videolan dot org>
  12.  *
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  26.  *****************************************************************************/
  27. /*****************************************************************************
  28.  * Preamble
  29.  *****************************************************************************/
  30. #include <stdlib.h>                                      /* malloc(), free() */
  31. #include <sys/param.h>                                    /* for MAXPATHLEN */
  32. #include <string.h>
  33. #import "intf.h"
  34. #import "vout.h"
  35. #import "open.h"
  36. #import "controls.h"
  37. #import "playlist.h"
  38. #include <vlc_osd.h>
  39. #include <vlc_keys.h>
  40. /*****************************************************************************
  41.  * VLCAutoGeneratedMenuContent interface
  42.  *****************************************************************************
  43.  * This holds our data for autogenerated menus
  44.  *****************************************************************************/
  45. @interface VLCAutoGeneratedMenuContent : NSObject
  46. {
  47.     char *psz_name;
  48.     vlc_object_t * _vlc_object;
  49.     vlc_value_t value;
  50.     int i_type;
  51. }
  52. - (id)initWithVariableName: (const char *)name 
  53.            ofObject: (vlc_object_t *)object
  54.            andValue: (vlc_value_t)value 
  55.            ofType: (int)type;
  56. - (const char *)name;
  57. - (vlc_value_t)value;
  58. - (vlc_object_t *)vlcObject;
  59. - (int)type;
  60. @end
  61. #pragma mark -
  62. /*****************************************************************************
  63.  * VLCControls implementation
  64.  *****************************************************************************/
  65. @implementation VLCControls
  66. - (id)init
  67. {
  68.     [super init];
  69.     o_fs_panel = [[VLCFSPanel alloc] init];
  70.     b_lockAspectRatio = YES;
  71.     return self;
  72. }
  73. - (void)awakeFromNib
  74. {
  75.     [o_specificTime_mi setTitle: _NS("Jump To Time")];
  76.     [o_specificTime_cancel_btn setTitle: _NS("Cancel")];
  77.     [o_specificTime_ok_btn setTitle: _NS("OK")];
  78.     [o_specificTime_sec_lbl setStringValue: _NS("sec.")];
  79.     [o_specificTime_goTo_lbl setStringValue: _NS("Jump to time")];
  80.     o_repeat_off = [NSImage imageNamed:@"repeat_embedded"];
  81.     [self controlTintChanged];
  82.     [[NSNotificationCenter defaultCenter] addObserver: self
  83.                                              selector: @selector( controlTintChanged )
  84.                                                  name: NSControlTintDidChangeNotification
  85.                                                object: nil];
  86. }
  87. - (void)controlTintChanged
  88. {
  89.     int i_repeat = 0;
  90.     if( [o_btn_repeat image] == o_repeat_single )
  91.         i_repeat = 1;
  92.     else if( [o_btn_repeat image] == o_repeat_all )
  93.         i_repeat = 2;
  94.     if( [NSColor currentControlTint] == NSGraphiteControlTint )
  95.     {
  96.         o_repeat_single = [NSImage imageNamed:@"repeat_single_embedded_graphite"];
  97.         o_repeat_all = [NSImage imageNamed:@"repeat_embedded_graphite"];
  98.         
  99.         [o_btn_shuffle setAlternateImage: [NSImage imageNamed: @"shuffle_embedded_graphite"]];
  100.         [o_btn_addNode setAlternateImage: [NSImage imageNamed: @"add_embedded_graphite"]];
  101.     }
  102.     else
  103.     {
  104.         o_repeat_single = [NSImage imageNamed:@"repeat_single_embedded_blue"];
  105.         o_repeat_all = [NSImage imageNamed:@"repeat_embedded_blue"];
  106.         
  107.         [o_btn_shuffle setAlternateImage: [NSImage imageNamed: @"shuffle_embedded_blue"]];
  108.         [o_btn_addNode setAlternateImage: [NSImage imageNamed: @"add_embedded_blue"]];
  109.     }
  110.     
  111.     /* update the repeat button, but keep its state */
  112.     if( i_repeat == 1 )
  113.         [self repeatOne];
  114.     else if( i_repeat == 2 )
  115.         [self repeatAll];
  116.     else
  117.         [self repeatOff];
  118. }
  119. - (void)dealloc
  120. {
  121.     [[NSNotificationCenter defaultCenter] removeObserver: self];
  122.     
  123.     [o_fs_panel release];
  124.     [o_repeat_single release];
  125.     [o_repeat_all release];
  126.     [o_repeat_off release];
  127.     
  128.     [super dealloc];
  129. }
  130. - (IBAction)play:(id)sender
  131. {
  132.     intf_thread_t * p_intf = VLCIntf;
  133.     playlist_t * p_playlist = pl_Hold( p_intf );
  134.     bool empty;
  135.     PL_LOCK;
  136.     empty = playlist_IsEmpty( p_playlist );
  137.     PL_UNLOCK;
  138.     pl_Release( p_intf );
  139.     if( empty )
  140.         [o_main intfOpenFileGeneric: (id)sender];
  141.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_PLAY_PAUSE );
  142. }
  143. - (id)voutView
  144. {
  145.     id window;
  146.     id voutView = nil;
  147.     id embeddedViewList = [[VLCMain sharedInstance] embeddedList];
  148.     NSEnumerator *enumerator = [[NSApp orderedWindows] objectEnumerator];
  149.     while( !voutView && ( window = [enumerator nextObject] ) )
  150.     {
  151.         /* We have an embedded vout */
  152.         if( [embeddedViewList windowContainsEmbedded: window] )
  153.         {
  154.             voutView = [embeddedViewList viewForWindow: window];
  155.         }
  156.         /* We have a detached vout */
  157.         else if( [[window className] isEqualToString: @"VLCVoutWindow"] )
  158.         {
  159.             voutView = [window voutView];
  160.         }
  161.     }
  162.     return [[voutView retain] autorelease];
  163. }
  164. - (BOOL)aspectRatioIsLocked
  165. {
  166.     return b_lockAspectRatio;
  167. }
  168. - (IBAction)stop:(id)sender
  169. {
  170.     intf_thread_t * p_intf = VLCIntf;
  171.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_STOP );
  172.     /* Close the window directly, because we do know that there
  173.      * won't be anymore video. It's currently waiting a bit. */
  174.     [[[self voutView] window] orderOut:self];
  175. }
  176. - (IBAction)faster:(id)sender
  177. {
  178.     intf_thread_t * p_intf = VLCIntf;
  179.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_FASTER );
  180. }
  181. - (IBAction)slower:(id)sender
  182. {
  183.     intf_thread_t * p_intf = VLCIntf;
  184.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_SLOWER );
  185. }
  186. - (IBAction)prev:(id)sender
  187. {
  188.     intf_thread_t * p_intf = VLCIntf;
  189.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_PREV );
  190. }
  191. - (IBAction)next:(id)sender
  192. {
  193.     intf_thread_t * p_intf = VLCIntf;
  194.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_NEXT );
  195. }
  196. - (IBAction)random:(id)sender
  197. {
  198.     vlc_value_t val;
  199.     intf_thread_t * p_intf = VLCIntf;
  200.     playlist_t * p_playlist = pl_Hold( p_intf );
  201.     var_Get( p_playlist, "random", &val );
  202.     val.b_bool = !val.b_bool;
  203.     var_Set( p_playlist, "random", val );
  204.     if( val.b_bool )
  205.     {
  206.         vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Random On" ) );
  207.         config_PutInt( p_playlist, "random", 1 );
  208.     }
  209.     else
  210.     {
  211.         vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Random Off" ) );
  212.         config_PutInt( p_playlist, "random", 0 );
  213.     }
  214.     p_intf->p_sys->b_playmode_update = true;
  215.     p_intf->p_sys->b_intf_update = true;
  216.     pl_Release( p_intf );
  217. }
  218. /* three little ugly helpers */
  219. - (void)repeatOne
  220. {
  221.     [o_btn_repeat setImage: o_repeat_single];
  222.     [o_btn_repeat setAlternateImage: o_repeat_all];
  223. }
  224. - (void)repeatAll
  225. {
  226.     [o_btn_repeat setImage: o_repeat_all];
  227.     [o_btn_repeat setAlternateImage: o_repeat_off];
  228. }
  229. - (void)repeatOff
  230. {
  231.     [o_btn_repeat setImage: o_repeat_off];
  232.     [o_btn_repeat setAlternateImage: o_repeat_single];
  233. }
  234. - (void)shuffle
  235. {
  236.     vlc_value_t val;
  237.     playlist_t *p_playlist = pl_Hold( VLCIntf );
  238.     var_Get( p_playlist, "random", &val );
  239.     [o_btn_shuffle setState: val.b_bool];
  240.     pl_Release( VLCIntf );
  241. }
  242. - (IBAction)repeatButtonAction:(id)sender
  243. {
  244.     vlc_value_t looping,repeating;
  245.     intf_thread_t * p_intf = VLCIntf;
  246.     playlist_t * p_playlist = pl_Hold( p_intf );
  247.     var_Get( p_playlist, "repeat", &repeating );
  248.     var_Get( p_playlist, "loop", &looping );
  249.     if( !repeating.b_bool && !looping.b_bool )
  250.     {
  251.         /* was: no repeating at all, switching to Repeat One */
  252.  
  253.         /* set our button's look */
  254.         [self repeatOne];
  255.  
  256.         /* prepare core communication */
  257.         repeating.b_bool = true;
  258.         looping.b_bool = false;
  259.         config_PutInt( p_playlist, "repeat", 1 );
  260.         config_PutInt( p_playlist, "loop", 0 );
  261.  
  262.         /* show the change */
  263.         vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Repeat One" ) );
  264.     }
  265.     else if( repeating.b_bool && !looping.b_bool )
  266.     {
  267.         /* was: Repeat One, switching to Repeat All */
  268.  
  269.         /* set our button's look */
  270.         [self repeatAll];
  271.  
  272.         /* prepare core communication */
  273.         repeating.b_bool = false;
  274.         looping.b_bool = true;
  275.         config_PutInt( p_playlist, "repeat", 0 );
  276.         config_PutInt( p_playlist, "loop", 1 );
  277.  
  278.         /* show the change */
  279.         vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Repeat All" ) );
  280.     }
  281.     else
  282.     {
  283.         /* was: Repeat All or bug in VLC, switching to Repeat Off */
  284.  
  285.         /* set our button's look */
  286.         [self repeatOff];
  287.  
  288.         /* prepare core communication */
  289.         repeating.b_bool = false;
  290.         looping.b_bool = false;
  291.         config_PutInt( p_playlist, "repeat", 0 );
  292.         config_PutInt( p_playlist, "loop", 0 );
  293.  
  294.         /* show the change */
  295.         vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Repeat Off" ) );
  296.     }
  297.     /* communicate with core and the main intf loop */
  298.     var_Set( p_playlist, "repeat", repeating );
  299.     var_Set( p_playlist, "loop", looping );
  300.     p_intf->p_sys->b_playmode_update = true;
  301.     p_intf->p_sys->b_intf_update = true;
  302.     pl_Release( p_intf );
  303. }
  304. - (IBAction)repeat:(id)sender
  305. {
  306.     vlc_value_t val;
  307.     intf_thread_t * p_intf = VLCIntf;
  308.     playlist_t * p_playlist = pl_Hold( p_intf );
  309.     var_Get( p_playlist, "repeat", &val );
  310.     if (!val.b_bool)
  311.     {
  312.         var_Set( p_playlist, "loop", val );
  313.     }
  314.     val.b_bool = !val.b_bool;
  315.     var_Set( p_playlist, "repeat", val );
  316.     if( val.b_bool )
  317.     {
  318.         vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Repeat One" ) );
  319.         config_PutInt( p_playlist, "repeat", 1 );
  320.     }
  321.     else
  322.     {
  323.         vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Repeat Off" ) );
  324.         config_PutInt( p_playlist, "repeat", 0 );
  325.     }
  326.  
  327.     p_intf->p_sys->b_playmode_update = true;
  328.     p_intf->p_sys->b_intf_update = true;
  329.     pl_Release( p_intf );
  330. }
  331. - (IBAction)loop:(id)sender
  332. {
  333.     vlc_value_t val;
  334.     intf_thread_t * p_intf = VLCIntf;
  335.     playlist_t * p_playlist = pl_Hold( p_intf );
  336.     var_Get( p_playlist, "loop", &val );
  337.     if (!val.b_bool)
  338.     {
  339.         var_Set( p_playlist, "repeat", val );
  340.     }
  341.     val.b_bool = !val.b_bool;
  342.     var_Set( p_playlist, "loop", val );
  343.     if( val.b_bool )
  344.     {
  345.         vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Repeat All" ) );
  346.         config_PutInt( p_playlist, "loop", 1 );
  347.     }
  348.     else
  349.     {
  350.         vout_OSDMessage( p_intf, DEFAULT_CHAN, _( "Repeat Off" ) );
  351.         config_PutInt( p_playlist, "loop", 0 );
  352.     }
  353.     p_intf->p_sys->b_playmode_update = true;
  354.     p_intf->p_sys->b_intf_update = true;
  355.     pl_Release( p_intf );
  356. }
  357. - (IBAction)quitAfterPlayback:(id)sender
  358. {
  359.     vlc_value_t val;
  360.     playlist_t * p_playlist = pl_Hold( VLCIntf );
  361.     var_Get( p_playlist, "play-and-exit", &val );
  362.     val.b_bool = !val.b_bool;
  363.     var_Set( p_playlist, "play-and-exit", val );
  364.     pl_Release( VLCIntf );
  365. }
  366. - (IBAction)forward:(id)sender
  367. {
  368.     intf_thread_t * p_intf = VLCIntf;
  369.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_JUMP_FORWARD_SHORT );
  370. }
  371. - (IBAction)backward:(id)sender
  372. {
  373.     vlc_value_t val;
  374.     intf_thread_t * p_intf = VLCIntf;
  375.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_JUMP_BACKWARD_SHORT );
  376. }
  377. - (IBAction)volumeUp:(id)sender
  378. {
  379.     intf_thread_t * p_intf = VLCIntf;
  380.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_VOL_UP );
  381.     /* Manage volume status */
  382.     [o_main manageVolumeSlider];
  383. }
  384. - (IBAction)volumeDown:(id)sender
  385. {
  386.     intf_thread_t * p_intf = VLCIntf;
  387.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_VOL_DOWN );
  388.     /* Manage volume status */
  389.     [o_main manageVolumeSlider];
  390. }
  391. - (IBAction)mute:(id)sender
  392. {
  393.     intf_thread_t * p_intf = VLCIntf;
  394.     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_VOL_MUTE );
  395.     /* Manage volume status */
  396.     [o_main manageVolumeSlider];
  397. }
  398. - (IBAction)volumeSliderUpdated:(id)sender
  399. {
  400.     intf_thread_t * p_intf = VLCIntf;
  401.     audio_volume_t i_volume = (audio_volume_t)[sender intValue];
  402.     int i_volume_step = 0;
  403.     i_volume_step = config_GetInt( p_intf->p_libvlc, "volume-step" );
  404.     aout_VolumeSet( p_intf, i_volume * i_volume_step );
  405.     /* Manage volume status */
  406.     [o_main manageVolumeSlider];
  407. }
  408. - (IBAction)showPosition: (id)sender
  409. {
  410.     vout_thread_t *p_vout = vlc_object_find( VLCIntf, VLC_OBJECT_VOUT,
  411.                                              FIND_ANYWHERE );
  412.     if( p_vout != NULL )
  413.     {
  414.         intf_thread_t * p_intf = VLCIntf;
  415.         var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_POSITION );
  416.         vlc_object_release( (vlc_object_t *)p_vout );
  417.     }
  418. }
  419. - (IBAction)toogleFullscreen:(id)sender {
  420.     NSMenuItem *o_mi = [[NSMenuItem alloc] initWithTitle: _NS("Fullscreen") action: nil keyEquivalent:@""];
  421.     [self windowAction: [o_mi autorelease]];
  422. }
  423. - (BOOL) isFullscreen {
  424.     id o_vout_view = [self voutView];
  425.     if( o_vout_view )
  426.     {
  427.         return [o_vout_view isFullscreen];
  428.     }
  429.     return NO;
  430. }
  431. - (IBAction)windowAction:(id)sender
  432. {
  433.     NSString *o_title = [sender title];
  434.     vout_thread_t *p_vout = vlc_object_find( VLCIntf, VLC_OBJECT_VOUT,
  435.                                               FIND_ANYWHERE );
  436.     if( p_vout != NULL )
  437.     {
  438.         id o_vout_view = [self voutView];
  439.         if( o_vout_view )
  440.         {
  441.             if( [o_title isEqualToString: _NS("Half Size") ] )
  442.                 [o_vout_view scaleWindowWithFactor: 0.5 animate: YES];
  443.             else if( [o_title isEqualToString: _NS("Normal Size") ] )
  444.                 [o_vout_view scaleWindowWithFactor: 1.0 animate: YES];
  445.             else if( [o_title isEqualToString: _NS("Double Size") ] )
  446.                 [o_vout_view scaleWindowWithFactor: 2.0 animate: YES];
  447.             else if( [o_title isEqualToString: _NS("Float on Top") ] )
  448.                 [o_vout_view toggleFloatOnTop];
  449.             else if( [o_title isEqualToString: _NS("Fit to Screen") ] )
  450.             {
  451.                 id o_window = [o_vout_view voutWindow];
  452.                 if( ![o_window isZoomed] )
  453.                     [o_window performZoom:self];
  454.             }
  455.             else if( [o_title isEqualToString: _NS("Snapshot") ] )
  456.             {
  457.                 [o_vout_view snapshot];
  458.             }
  459.             else
  460.             {
  461.                 /* Fullscreen state for next time will be saved here too */
  462.                 [o_vout_view toggleFullscreen];
  463.             }
  464.         }
  465.         vlc_object_release( (vlc_object_t *)p_vout );
  466.     }
  467.     else
  468.     {
  469.         playlist_t * p_playlist = pl_Hold( VLCIntf );
  470.         if( [o_title isEqualToString: _NS("Fullscreen")] ||
  471.             [sender isKindOfClass:[NSButton class]] )
  472.         {
  473.             vlc_value_t val;
  474.             var_Get( p_playlist, "fullscreen", &val );
  475.             var_Set( p_playlist, "fullscreen", (vlc_value_t)!val.b_bool );
  476.         }
  477.         pl_Release( VLCIntf );
  478.     }
  479. }
  480. - (IBAction)telxTransparent:(id)sender
  481. {
  482.     intf_thread_t * p_intf = VLCIntf;
  483.     vlc_object_t *p_vbi;
  484.     p_vbi = (vlc_object_t *) vlc_object_find_name( p_intf,
  485.                     "zvbi", FIND_ANYWHERE );
  486.     if( p_vbi )
  487.     {
  488.         var_SetBool( p_vbi, "vbi-opaque", [sender state] );
  489.         [sender setState: ![sender state]];
  490.         vlc_object_release( p_vbi );
  491.     }
  492. }
  493. - (IBAction)telxNavLink:(id)sender
  494. {
  495.     intf_thread_t * p_intf = VLCIntf;
  496.     vlc_object_t *p_vbi;
  497.     int i_page = 0;
  498.     if( [[sender title] isEqualToString: _NS("Index")] )
  499.         i_page = 'i' << 16;
  500.     else if( [[sender title] isEqualToString: _NS("Red")] )
  501.         i_page = 'r' << 16;
  502.     else if( [[sender title] isEqualToString: _NS("Green")] )
  503.         i_page = 'g' << 16;
  504.     else if( [[sender title] isEqualToString: _NS("Yellow")] )
  505.         i_page = 'y' << 16;
  506.     else if( [[sender title] isEqualToString: _NS("Blue")] )
  507.         i_page = 'b' << 16;
  508.     if( i_page == 0 ) return;
  509.     p_vbi = (vlc_object_t *) vlc_object_find_name( p_intf,
  510.                 "zvbi", FIND_ANYWHERE );
  511.     if( p_vbi )
  512.     {
  513.         var_SetInteger( p_vbi, "vbi-page", i_page );
  514.         vlc_object_release( p_vbi );
  515.     }
  516. }
  517. - (IBAction)lockVideosAspectRatio:(id)sender
  518. {
  519.     if( [sender state] == NSOffState )
  520.         [sender setState: NSOnState];
  521.     else
  522.         [sender setState: NSOffState];
  523.     b_lockAspectRatio = !b_lockAspectRatio;
  524. }
  525. - (IBAction)addSubtitleFile:(id)sender
  526. {
  527.     NSInteger i_returnValue = 0;
  528.     input_thread_t * p_input = pl_CurrentInput( VLCIntf );
  529.     if( !p_input ) return;
  530.     input_item_t *p_item = input_GetItem( p_input );
  531.     if( !p_item ) return;
  532.     char *path = input_item_GetURI( p_item );
  533.     if( !path ) path = strdup( "" );
  534.     NSOpenPanel * openPanel = [NSOpenPanel openPanel];
  535.     [openPanel setCanChooseFiles: YES];
  536.     [openPanel setCanChooseDirectories: NO];
  537.     [openPanel setAllowsMultipleSelection: YES];
  538.     i_returnValue = [openPanel runModalForDirectory: [NSString stringWithUTF8String: path] file: nil types: [NSArray arrayWithObjects: @"cdg",@"@idx",@"srt",@"sub",@"utf",@"ass",@"ssa",@"aqt",@"jss",@"psb",@"rt",@"smi", nil]];
  539.     free( path );
  540.     if( i_returnValue == NSOKButton )
  541.     {
  542.         NSUInteger c = 0;
  543.         if( !p_input ) return;
  544.         
  545.         c = [[openPanel filenames] count];
  546.         for (int i = 0; i < [[openPanel filenames] count] ; i++)
  547.         {
  548.             msg_Dbg( VLCIntf, "loading subs from %s", [[[openPanel filenames] objectAtIndex: i] UTF8String] );
  549.             if( input_AddSubtitle( p_input, [[[openPanel filenames] objectAtIndex: i] UTF8String], TRUE ) )
  550.                 msg_Warn( VLCIntf, "unable to load subtitles from '%s'",
  551.                          [[[openPanel filenames] objectAtIndex: i] UTF8String] );
  552.         }
  553.     }
  554. }
  555. - (void)scrollWheel:(NSEvent *)theEvent
  556. {
  557.     intf_thread_t * p_intf = VLCIntf;
  558.     float f_yabsvalue = [theEvent deltaY] > 0.0f ? [theEvent deltaY] : -[theEvent deltaY];
  559.     float f_xabsvalue = [theEvent deltaX] > 0.0f ? [theEvent deltaX] : -[theEvent deltaX];
  560.     int i, i_yvlckey, i_xvlckey;
  561.     if ([theEvent deltaY] < 0.0f)
  562.         i_yvlckey = KEY_MOUSEWHEELDOWN;
  563.     else
  564.         i_yvlckey = KEY_MOUSEWHEELUP;
  565.     if ([theEvent deltaX] < 0.0f)
  566.         i_xvlckey = KEY_MOUSEWHEELRIGHT;
  567.     else
  568.         i_xvlckey = KEY_MOUSEWHEELLEFT;
  569.     /* Send multiple key event, depending on the intensity of the event */
  570.     for (i = 0; i < (int)(f_yabsvalue/4.+1.) && f_yabsvalue > 0.05 ; i++)
  571.         var_SetInteger( p_intf->p_libvlc, "key-pressed", i_yvlckey );
  572.     /* Prioritize Y event (sound volume) over X event */
  573.     if (f_yabsvalue < 0.05)
  574.     {
  575.         for (i = 0; i < (int)(f_xabsvalue/6.+1.) && f_xabsvalue > 0.05; i++)
  576.          var_SetInteger( p_intf->p_libvlc, "key-pressed", i_xvlckey );
  577.     }
  578. }
  579. - (BOOL)keyEvent:(NSEvent *)o_event
  580. {
  581.     BOOL eventHandled = NO;
  582.     unichar key = [[o_event charactersIgnoringModifiers] characterAtIndex: 0];
  583.     if( key )
  584.     {
  585.         vout_thread_t *p_vout = vlc_object_find( VLCIntf, VLC_OBJECT_VOUT,
  586.                                               FIND_ANYWHERE );
  587.         if( p_vout != NULL )
  588.         {
  589.             /* Escape */
  590.             if( key == (unichar) 0x1b )
  591.             {
  592.                 id o_vout_view = [self voutView];
  593.                 if( o_vout_view && [o_vout_view isFullscreen] )
  594.                 {
  595.                     [o_vout_view toggleFullscreen];
  596.                     eventHandled = YES;
  597.                 }
  598.             }
  599.             else if( key == ' ' )
  600.             {
  601.                 [self play:self];
  602.                 eventHandled = YES;
  603.             }
  604.             vlc_object_release( (vlc_object_t *)p_vout );
  605.         }
  606.     }
  607.     return eventHandled;
  608. }
  609. - (void)setupVarMenuItem:(NSMenuItem *)o_mi
  610.                     target:(vlc_object_t *)p_object
  611.                     var:(const char *)psz_variable
  612.                     selector:(SEL)pf_callback
  613. {
  614.     vlc_value_t val, text;
  615.     int i_type = var_Type( p_object, psz_variable );
  616.     switch( i_type & VLC_VAR_TYPE )
  617.     {
  618.     case VLC_VAR_VOID:
  619.     case VLC_VAR_BOOL:
  620.     case VLC_VAR_VARIABLE:
  621.     case VLC_VAR_STRING:
  622.     case VLC_VAR_INTEGER:
  623.         break;
  624.     default:
  625.         /* Variable doesn't exist or isn't handled */
  626.         return;
  627.     }
  628.  
  629.     /* Make sure we want to display the variable */
  630.     if( i_type & VLC_VAR_HASCHOICE )
  631.     {
  632.         var_Change( p_object, psz_variable, VLC_VAR_CHOICESCOUNT, &val, NULL );
  633.         if( val.i_int == 0 ) return;
  634.         if( (i_type & VLC_VAR_TYPE) != VLC_VAR_VARIABLE && val.i_int == 1 )
  635.             return;
  636.     }
  637.  
  638.     /* Get the descriptive name of the variable */
  639.     var_Change( p_object, psz_variable, VLC_VAR_GETTEXT, &text, NULL );
  640.     [o_mi setTitle: [[VLCMain sharedInstance] localizedString: text.psz_string ?
  641.                                         text.psz_string : psz_variable ]];
  642.     if( i_type & VLC_VAR_HASCHOICE )
  643.     {
  644.         NSMenu *o_menu = [o_mi submenu];
  645.         [self setupVarMenu: o_menu forMenuItem: o_mi target:p_object
  646.                         var:psz_variable selector:pf_callback];
  647.  
  648.         free( text.psz_string );
  649.         return;
  650.     }
  651.     if( var_Get( p_object, psz_variable, &val ) < 0 )
  652.     {
  653.         return;
  654.     }
  655.     VLCAutoGeneratedMenuContent *o_data;
  656.     switch( i_type & VLC_VAR_TYPE )
  657.     {
  658.     case VLC_VAR_VOID:
  659.         o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
  660.                 andValue: val ofType: i_type];
  661.         [o_mi setRepresentedObject: [o_data autorelease]];
  662.         break;
  663.     case VLC_VAR_BOOL:
  664.         o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
  665.                 andValue: val ofType: i_type];
  666.         [o_mi setRepresentedObject: [o_data autorelease]];
  667.         if( !( i_type & VLC_VAR_ISCOMMAND ) )
  668.             [o_mi setState: val.b_bool ? TRUE : FALSE ];
  669.         break;
  670.     default:
  671.         break;
  672.     }
  673.     if( ( i_type & VLC_VAR_TYPE ) == VLC_VAR_STRING ) free( val.psz_string );
  674.     free( text.psz_string );
  675. }
  676. - (void)setupVarMenu:(NSMenu *)o_menu
  677.                     forMenuItem: (NSMenuItem *)o_parent
  678.                     target:(vlc_object_t *)p_object
  679.                     var:(const char *)psz_variable
  680.                     selector:(SEL)pf_callback
  681. {
  682.     vlc_value_t val, val_list, text_list;
  683.     int i_type, i, i_nb_items;
  684.     /* remove previous items */
  685.     i_nb_items = [o_menu numberOfItems];
  686.     for( i = 0; i < i_nb_items; i++ )
  687.     {
  688.         [o_menu removeItemAtIndex: 0];
  689.     }
  690.     /* Check the type of the object variable */
  691.     i_type = var_Type( p_object, psz_variable );
  692.     /* Make sure we want to display the variable */
  693.     if( i_type & VLC_VAR_HASCHOICE )
  694.     {
  695.         var_Change( p_object, psz_variable, VLC_VAR_CHOICESCOUNT, &val, NULL );
  696.         if( val.i_int == 0 ) return;
  697.         if( (i_type & VLC_VAR_TYPE) != VLC_VAR_VARIABLE && val.i_int == 1 )
  698.             return;
  699.     }
  700.     else
  701.     {
  702.         return;
  703.     }
  704.     switch( i_type & VLC_VAR_TYPE )
  705.     {
  706.     case VLC_VAR_VOID:
  707.     case VLC_VAR_BOOL:
  708.     case VLC_VAR_VARIABLE:
  709.     case VLC_VAR_STRING:
  710.     case VLC_VAR_INTEGER:
  711.         break;
  712.     default:
  713.         /* Variable doesn't exist or isn't handled */
  714.         return;
  715.     }
  716.     if( var_Get( p_object, psz_variable, &val ) < 0 )
  717.     {
  718.         return;
  719.     }
  720.     if( var_Change( p_object, psz_variable, VLC_VAR_GETLIST,
  721.                     &val_list, &text_list ) < 0 )
  722.     {
  723.         if( (i_type & VLC_VAR_TYPE) == VLC_VAR_STRING ) free( val.psz_string );
  724.         return;
  725.     }
  726.     /* make (un)sensitive */
  727.     [o_parent setEnabled: ( val_list.p_list->i_count > 1 )];
  728.     /* Aspect Ratio */
  729.     if( [[o_parent title] isEqualToString: _NS("Aspect-ratio")] == YES )
  730.     {
  731.         NSMenuItem *o_lmi_tmp2;
  732.         o_lmi_tmp2 = [o_menu addItemWithTitle: _NS("Lock Aspect Ratio") action: @selector(lockVideosAspectRatio:) keyEquivalent: @""];
  733.         [o_lmi_tmp2 setTarget: self];
  734.         [o_lmi_tmp2 setEnabled: YES];
  735.         [o_lmi_tmp2 setState: b_lockAspectRatio];
  736.         [o_parent setEnabled: YES];
  737.         [o_menu addItem: [NSMenuItem separatorItem]];
  738.     }
  739.     /* special case for the subtitles items */
  740.     if( [[o_parent title] isEqualToString: _NS("Subtitles Track")] == YES )
  741.     {
  742.         NSMenuItem * o_lmi_tmp;
  743.         o_lmi_tmp = [o_menu addItemWithTitle: _NS("Open File...") action: @selector(addSubtitleFile:) keyEquivalent: @""];
  744.         [o_lmi_tmp setTarget: self];
  745.         [o_lmi_tmp setEnabled: YES];
  746.         [o_parent setEnabled: YES];
  747.         [o_menu addItem: [NSMenuItem separatorItem]];
  748.     }
  749.     for( i = 0; i < val_list.p_list->i_count; i++ )
  750.     {
  751.         NSMenuItem * o_lmi;
  752.         NSString *o_title = @"";
  753.         VLCAutoGeneratedMenuContent *o_data;
  754.         switch( i_type & VLC_VAR_TYPE )
  755.         {
  756.         case VLC_VAR_STRING:
  757.             o_title = [[VLCMain sharedInstance] localizedString: text_list.p_list->p_values[i].psz_string ?
  758.                 text_list.p_list->p_values[i].psz_string : val_list.p_list->p_values[i].psz_string ];
  759.             o_lmi = [o_menu addItemWithTitle: o_title action: pf_callback keyEquivalent: @""];
  760.             o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
  761.                     andValue: val_list.p_list->p_values[i] ofType: i_type];
  762.             [o_lmi setRepresentedObject: [o_data autorelease]];
  763.             [o_lmi setTarget: self];
  764.             if( !strcmp( val.psz_string, val_list.p_list->p_values[i].psz_string ) && !( i_type & VLC_VAR_ISCOMMAND ) )
  765.                 [o_lmi setState: TRUE ];
  766.             break;
  767.         case VLC_VAR_INTEGER:
  768.              o_title = text_list.p_list->p_values[i].psz_string ?
  769.                                  [[VLCMain sharedInstance] localizedString: text_list.p_list->p_values[i].psz_string] :
  770.                                  [NSString stringWithFormat: @"%d",
  771.                                  val_list.p_list->p_values[i].i_int];
  772.             o_lmi = [o_menu addItemWithTitle: o_title action: pf_callback keyEquivalent: @""];
  773.             o_data = [[VLCAutoGeneratedMenuContent alloc] initWithVariableName: psz_variable ofObject: p_object
  774.                     andValue: val_list.p_list->p_values[i] ofType: i_type];
  775.             [o_lmi setRepresentedObject: [o_data autorelease]];
  776.             [o_lmi setTarget: self];
  777.             if( val_list.p_list->p_values[i].i_int == val.i_int && !( i_type & VLC_VAR_ISCOMMAND ) )
  778.                 [o_lmi setState: TRUE ];
  779.             break;
  780.         default:
  781.           break;
  782.         }
  783.     }
  784.     /* special case for the subtitles sub-menu
  785.      * In case that we don't have any subs, we don't want a separator item at the end */
  786.     if( [[o_parent title] isEqualToString: _NS("Subtitles Track")] == YES )
  787.     {
  788.         if( [o_menu numberOfItems] == 2 )
  789.             [o_menu removeItemAtIndex: 1];
  790.     }
  791.     /* clean up everything */
  792.     if( (i_type & VLC_VAR_TYPE) == VLC_VAR_STRING ) free( val.psz_string );
  793.     var_Change( p_object, psz_variable, VLC_VAR_FREELIST, &val_list, &text_list );
  794. }
  795. - (IBAction)toggleVar:(id)sender
  796. {
  797.     NSMenuItem *o_mi = (NSMenuItem *)sender;
  798.     VLCAutoGeneratedMenuContent *o_data = [o_mi representedObject];
  799.     [NSThread detachNewThreadSelector: @selector(toggleVarThread:)
  800.         toTarget: self withObject: o_data];
  801.     return;
  802. }
  803. - (int)toggleVarThread: (id)data
  804. {
  805.     vlc_object_t *p_object;
  806.     NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init];
  807.     assert([data isKindOfClass:[VLCAutoGeneratedMenuContent class]]);
  808.     VLCAutoGeneratedMenuContent *menuContent = (VLCAutoGeneratedMenuContent *)data;
  809.     vlc_thread_set_priority( VLCIntf , VLC_THREAD_PRIORITY_LOW );
  810.     p_object = [menuContent vlcObject];
  811.     if( p_object != NULL )
  812.     {
  813.         var_Set( p_object, [menuContent name], [menuContent value] );
  814.         vlc_object_release( p_object );
  815.         [o_pool release];
  816.         return true;
  817.     }
  818.     [o_pool release];
  819.     return VLC_EGENERIC;
  820. }
  821. - (IBAction)goToSpecificTime:(id)sender
  822. {
  823.     if( sender == o_specificTime_cancel_btn )
  824.     {
  825.         [NSApp endSheet: o_specificTime_win];
  826.         [o_specificTime_win close];
  827.     }
  828.     else if( sender == o_specificTime_ok_btn )
  829.     {
  830.         input_thread_t * p_input = pl_CurrentInput( VLCIntf );
  831.         if( p_input )
  832.         {
  833.             unsigned int timeInSec = 0;
  834.             NSString * fieldContent = [o_specificTime_enter_fld stringValue];
  835.             if( [[fieldContent componentsSeparatedByString: @":"] count] > 1 &&
  836.                 [[fieldContent componentsSeparatedByString: @":"] count] <= 3 )
  837.             {
  838.                 NSArray * ourTempArray = 
  839.                     [fieldContent componentsSeparatedByString: @":"];
  840.                 if( [[fieldContent componentsSeparatedByString: @":"] count] == 3 )
  841.                 {
  842.                     timeInSec += ([[ourTempArray objectAtIndex: 0] intValue] * 3600); //h
  843.                     timeInSec += ([[ourTempArray objectAtIndex: 1] intValue] * 60); //m
  844.                     timeInSec += [[ourTempArray objectAtIndex: 2] intValue];        //s
  845.                 }
  846.                 else
  847.                 {
  848.                     timeInSec += ([[ourTempArray objectAtIndex: 0] intValue] * 60); //m
  849.                     timeInSec += [[ourTempArray objectAtIndex: 1] intValue]; //s
  850.                 }
  851.             }
  852.             else
  853.                 timeInSec = [fieldContent intValue];
  854.             input_Control( p_input, INPUT_SET_TIME, (int64_t)(timeInSec * 1000000));
  855.             vlc_object_release( p_input );
  856.         }
  857.         [NSApp endSheet: o_specificTime_win];
  858.         [o_specificTime_win close];
  859.     }
  860.     else
  861.     {
  862.         input_thread_t * p_input = pl_CurrentInput( VLCIntf );
  863.         if( p_input )
  864.         {
  865.             /* we can obviously only do that if an input is available */
  866.             vlc_value_t pos, length;
  867.             var_Get( p_input, "time", &pos );
  868.             [o_specificTime_enter_fld setIntValue: (pos.i_time / 1000000)];
  869.             var_Get( p_input, "length", &length );
  870.             [o_specificTime_stepper setMaxValue: (length.i_time / 1000000)];
  871.             [NSApp beginSheet: o_specificTime_win modalForWindow: 
  872.                 [NSApp mainWindow] modalDelegate: self didEndSelector: nil 
  873.                 contextInfo: nil];
  874.             [o_specificTime_win makeKeyWindow];
  875.             vlc_object_release( p_input );
  876.         }
  877.     }
  878. }
  879. - (id)fspanel
  880. {
  881.     if( o_fs_panel )
  882.         return o_fs_panel;
  883.     else
  884.     {
  885.         msg_Err( VLCIntf, "FSPanel is nil" );
  886.         return NULL;
  887.     }
  888. }
  889. @end
  890. @implementation VLCControls (NSMenuValidation)
  891. - (BOOL)validateMenuItem:(NSMenuItem *)o_mi
  892. {
  893.     BOOL bEnabled = TRUE;
  894.     vlc_value_t val;
  895.     intf_thread_t * p_intf = VLCIntf;
  896.     playlist_t * p_playlist = pl_Hold( p_intf );
  897.     input_thread_t * p_input = playlist_CurrentInput( p_playlist );
  898.     if( [[o_mi title] isEqualToString: _NS("Faster")] ||
  899.         [[o_mi title] isEqualToString: _NS("Slower")] )
  900.     {
  901.         if( p_input != NULL )
  902.         {
  903.             bEnabled = var_GetBool( p_input, "can-rate" );
  904.         }
  905.         else
  906.         {
  907.             bEnabled = FALSE;
  908.         }
  909.     }
  910.     else if( [[o_mi title] isEqualToString: _NS("Stop")] )
  911.     {
  912.         if( p_input == NULL )
  913.         {
  914.             bEnabled = FALSE;
  915.         }
  916.         [o_main setupMenus]; /* Make sure input menu is up to date */
  917.     }
  918.     else if( [[o_mi title] isEqualToString: _NS("Previous")] ||
  919.              [[o_mi title] isEqualToString: _NS("Next")] )
  920.     {
  921.         /** todo fix i_size use */
  922.         PL_LOCK;
  923.         bEnabled = p_playlist->items.i_size > 1;
  924.         PL_UNLOCK;
  925.     }
  926.     else if( [[o_mi title] isEqualToString: _NS("Random")] )
  927.     {
  928.         int i_state;
  929.         var_Get( p_playlist, "random", &val );
  930.         i_state = val.b_bool ? NSOnState : NSOffState;
  931.         [o_mi setState: i_state];
  932.     }
  933.     else if( [[o_mi title] isEqualToString: _NS("Repeat One")] )
  934.     {
  935.         int i_state;
  936.         var_Get( p_playlist, "repeat", &val );
  937.         i_state = val.b_bool ? NSOnState : NSOffState;
  938.         [o_mi setState: i_state];
  939.     }
  940.     else if( [[o_mi title] isEqualToString: _NS("Repeat All")] )
  941.     {
  942.         int i_state;
  943.         var_Get( p_playlist, "loop", &val );
  944.         i_state = val.b_bool ? NSOnState : NSOffState;
  945.         [o_mi setState: i_state];
  946.     }
  947.     else if( [[o_mi title] isEqualToString: _NS("Quit after Playback")] )
  948.     {
  949.         int i_state;
  950.         var_Get( p_playlist, "play-and-exit", &val );
  951.         i_state = val.b_bool ? NSOnState : NSOffState;
  952.         [o_mi setState: i_state];
  953.     }
  954.     else if( [[o_mi title] isEqualToString: _NS("Step Forward")] ||
  955.              [[o_mi title] isEqualToString: _NS("Step Backward")] ||
  956.              [[o_mi title] isEqualToString: _NS("Jump To Time")])
  957.     {
  958.         if( p_input != NULL )
  959.         {
  960.             var_Get( p_input, "can-seek", &val);
  961.             bEnabled = val.b_bool;
  962.         }
  963.         else bEnabled = FALSE;
  964.     }
  965.     else if( [[o_mi title] isEqualToString: _NS("Mute")] )
  966.     {
  967.         [o_mi setState: p_intf->p_sys->b_mute ? NSOnState : NSOffState];
  968.         [o_main setupMenus]; /* Make sure audio menu is up to date */
  969.     }
  970.     else if( [[o_mi title] isEqualToString: _NS("Half Size")] ||
  971.                 [[o_mi title] isEqualToString: _NS("Normal Size")] ||
  972.                 [[o_mi title] isEqualToString: _NS("Double Size")] ||
  973.                 [[o_mi title] isEqualToString: _NS("Fit to Screen")] ||
  974.                 [[o_mi title] isEqualToString: _NS("Snapshot")] ||
  975.                 [[o_mi title] isEqualToString: _NS("Fullscreen")] ||
  976.                 [[o_mi title] isEqualToString: _NS("Float on Top")] )
  977.     {
  978.         id o_window;
  979.         NSArray *o_windows = [NSApp orderedWindows];
  980.         NSEnumerator *o_enumerator = [o_windows objectEnumerator];
  981.         bEnabled = FALSE;
  982.  
  983.         vout_thread_t   *p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT,
  984.                                               FIND_ANYWHERE );
  985.         if( p_vout != NULL )
  986.         {
  987.             if( [[o_mi title] isEqualToString: _NS("Float on Top")] )
  988.             {
  989.                 var_Get( p_vout, "video-on-top", &val );
  990.                 [o_mi setState: val.b_bool ?  NSOnState : NSOffState];
  991.             }
  992.             while( (o_window = [o_enumerator nextObject]))
  993.             {
  994.                 if( [[o_window className] isEqualToString: @"VLCVoutWindow"] ||
  995.                             [[[VLCMain sharedInstance] embeddedList]
  996.                             windowContainsEmbedded: o_window])
  997.                 {
  998.                     bEnabled = TRUE;
  999.                     break;
  1000.                 }
  1001.             }
  1002.             vlc_object_release( (vlc_object_t *)p_vout );
  1003.         }
  1004.         if( [[o_mi title] isEqualToString: _NS("Fullscreen")] )
  1005.         {
  1006.             var_Get( p_playlist, "fullscreen", &val );
  1007.             [o_mi setState: val.b_bool];
  1008.             bEnabled = TRUE;
  1009.         }
  1010.         [o_main setupMenus]; /* Make sure video menu is up to date */
  1011.     }
  1012.     /* Special case for telx menu */
  1013.     if( [[o_mi title] isEqualToString: _NS("Normal Size")] )
  1014.     {
  1015.         NSMenuItem *item = [[o_mi menu] itemWithTitle:_NS("Teletext")];
  1016. bool b_telx = p_input && var_GetInteger( p_input, "teletext-es" ) >= 0;
  1017.         [[item submenu] setAutoenablesItems:NO];
  1018.         for( int k=0; k < [[item submenu] numberOfItems]; k++ )
  1019.         {
  1020.             [[[item submenu] itemAtIndex:k] setEnabled: b_telx];
  1021.         }
  1022.     }
  1023.     if( p_input ) vlc_object_release( p_input );
  1024.     pl_Release( p_intf );
  1025.     return( bEnabled );
  1026. }
  1027. @end
  1028. /*****************************************************************************
  1029.  * VLCAutoGeneratedMenuContent implementation
  1030.  *****************************************************************************
  1031.  * Object connected to a playlistitem which remembers the data belonging to
  1032.  * the variable of the autogenerated menu
  1033.  *****************************************************************************/
  1034. @implementation VLCAutoGeneratedMenuContent
  1035. -(id) initWithVariableName:(const char *)name ofObject:(vlc_object_t *)object
  1036.         andValue:(vlc_value_t)val ofType:(int)type
  1037. {
  1038.     self = [super init];
  1039.     if( self != nil )
  1040.     {
  1041.         _vlc_object = vlc_object_hold( object );
  1042.         psz_name = strdup( name );
  1043.         i_type = type;
  1044.         value = val;
  1045.         if( (i_type & VLC_VAR_TYPE) == VLC_VAR_STRING )
  1046.             value.psz_string = strdup( val.psz_string );
  1047.     }
  1048.     return( self );
  1049. }
  1050. - (void)dealloc
  1051. {
  1052.     vlc_object_release( _vlc_object );
  1053.     if( (i_type & VLC_VAR_TYPE) == VLC_VAR_STRING )
  1054.         free( value.psz_string );
  1055.     free( psz_name );
  1056.     [super dealloc];
  1057. }
  1058. - (const char *)name
  1059. {
  1060.     return psz_name;
  1061. }
  1062. - (vlc_value_t)value
  1063. {
  1064.     return value;
  1065. }
  1066. - (vlc_object_t *)vlcObject
  1067. {
  1068.     return vlc_object_hold( _vlc_object );
  1069. }
  1070. - (int)type
  1071. {
  1072.     return i_type;
  1073. }
  1074. @end
  1075. /*****************************************************************************
  1076.  * VLCTimeField implementation
  1077.  *****************************************************************************
  1078.  * we need this to catch our click-event in the controller window
  1079.  *****************************************************************************/
  1080. @implementation VLCTimeField
  1081. - (void)mouseDown: (NSEvent *)ourEvent
  1082. {
  1083.     if( [ourEvent clickCount] > 1 )
  1084.         [[[VLCMain sharedInstance] controls] goToSpecificTime: nil];
  1085.     else
  1086.         [[VLCMain sharedInstance] timeFieldWasClicked: self];
  1087. }
  1088. @end