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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * applescript.m: MacOS X AppleScript support
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2003 VideoLAN
  5.  * $Id: applescript.m 8121 2004-07-05 01:27:35Z hartman $
  6.  *
  7.  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  * 
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include "intf.h"
  27. #include "applescript.h"
  28. #include "controls.h"
  29. #include "open.h"
  30. /*****************************************************************************
  31.  * VLGetURLScriptCommand implementation 
  32.  *****************************************************************************/
  33. @implementation VLGetURLScriptCommand
  34. - (id)performDefaultImplementation {
  35.     NSString *o_command = [[self commandDescription] commandName];
  36.     NSString *o_urlString = [self directParameter];
  37.     if ( [o_command isEqualToString:@"GetURL"] || [o_command isEqualToString:@"OpenURL"] )
  38.     {
  39.         intf_thread_t * p_intf = VLCIntf;
  40.         playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
  41.                                                         FIND_ANYWHERE );
  42.         if( p_playlist == NULL )
  43.         {
  44.             return nil;
  45.         }
  46.         if ( o_urlString )
  47.         {
  48.             NSURL * o_url;
  49.     
  50.             playlist_Add( p_playlist, [o_urlString fileSystemRepresentation],
  51.                           [[[NSFileManager defaultManager] displayNameAtPath: o_urlString] UTF8String],
  52.                           PLAYLIST_INSERT, PLAYLIST_END );
  53.             o_url = [NSURL fileURLWithPath: o_urlString];
  54.             if( o_url != nil )
  55.             { 
  56.                 [[NSDocumentController sharedDocumentController]
  57.                     noteNewRecentDocumentURL: o_url]; 
  58.             }
  59.         }
  60.         vlc_object_release( p_playlist );
  61.     }
  62.     return nil;
  63. }
  64. @end
  65. /*****************************************************************************
  66.  * VLControlScriptCommand implementation 
  67.  *****************************************************************************/
  68. /*
  69.  * This entire control command needs a better design. more object oriented.
  70.  * Applescript developers would be very welcome (hartman)
  71.  */
  72. @implementation VLControlScriptCommand
  73. - (id)performDefaultImplementation {
  74.     NSString *o_command = [[self commandDescription] commandName];
  75.     intf_thread_t * p_intf = VLCIntf;
  76.     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
  77.                                                     FIND_ANYWHERE );
  78.     if( p_playlist == NULL )
  79.     {
  80.         return nil;
  81.     }
  82.     
  83.     VLCControls * o_controls = (VLCControls *)[[NSApp delegate] getControls];
  84.     
  85.     if ( o_controls )
  86.     {
  87.         if ( [o_command isEqualToString:@"play"] )
  88.         {
  89.             [o_controls play:self];
  90.             return nil;
  91.         }
  92.         else if ( [o_command isEqualToString:@"stop"] )
  93.         {
  94.             [o_controls stop:self];
  95.             return nil;
  96.         }
  97.         else if ( [o_command isEqualToString:@"previous"] )
  98.         {
  99.             [o_controls prev:self];
  100.             return nil;
  101.         }
  102.         else if ( [o_command isEqualToString:@"next"] )
  103.         {
  104.             [o_controls next:self];
  105.             return nil;
  106.         }
  107.         else if ( [o_command isEqualToString:@"fullscreen"] )
  108.         {
  109.             NSMenuItem *o_mi = [[NSMenuItem alloc] initWithTitle: _NS("Fullscreen") action: nil keyEquivalent:@""];
  110.             [o_controls windowAction:[o_mi autorelease]];
  111.             return nil;
  112.         }
  113.         else if ( [o_command isEqualToString:@"mute"] )
  114.         {
  115.             [o_controls mute:self];
  116.             return nil;
  117.         }
  118.         else if ( [o_command isEqualToString:@"volumeUp"] )
  119.         {
  120.             [o_controls volumeUp:self];
  121.             return nil;
  122.         }
  123.         else if ( [o_command isEqualToString:@"volumeDown"] )
  124.         {
  125.             [o_controls volumeDown:self];
  126.             return nil;
  127.         }
  128.     }
  129.     vlc_object_release( p_playlist );
  130.     return nil;
  131. }
  132. @end