]> git.sesse.net Git - vlc/blob - modules/gui/macosx/applescript.m
macosx: remove 2 interface update timers (2 threads), 1 additional interface update...
[vlc] / modules / gui / macosx / applescript.m
1 /*****************************************************************************
2  * applescript.m: MacOS X AppleScript support
3  *****************************************************************************
4  * Copyright (C) 2002-2009 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include "intf.h"
28 #include "applescript.h"
29 #include "controls.h"
30 #include "open.h"
31
32 /*****************************************************************************
33  * VLGetURLScriptCommand implementation
34  *****************************************************************************/
35 @implementation VLGetURLScriptCommand
36
37 - (id)performDefaultImplementation {
38     NSString *o_command = [[self commandDescription] commandName];
39     NSString *o_urlString = [self directParameter];
40
41     if ( [o_command isEqualToString:@"GetURL"] || [o_command isEqualToString:@"OpenURL"] )
42     {
43         intf_thread_t * p_intf = VLCIntf;
44         playlist_t * p_playlist = pl_Get( p_intf );
45         if( p_playlist == NULL )
46         {
47             return nil;
48         }
49
50         if ( o_urlString )
51         {
52             NSURL * o_url;
53             input_item_t *p_input;
54
55             p_input = input_item_New( [o_urlString fileSystemRepresentation],
56                                     [[[NSFileManager defaultManager]
57                                     displayNameAtPath: o_urlString] UTF8String] );
58             /* FIXME: playlist_AddInput() can fail */
59             playlist_AddInput( p_playlist, p_input, PLAYLIST_INSERT,
60                                PLAYLIST_END, true, pl_Unlocked );
61
62             vlc_gc_decref( p_input );
63
64             o_url = [NSURL fileURLWithPath: o_urlString];
65             if( o_url != nil )
66             {
67                 [[NSDocumentController sharedDocumentController]
68                     noteNewRecentDocumentURL: o_url];
69             }
70         }
71     }
72     return nil;
73 }
74
75 @end
76
77
78 /*****************************************************************************
79  * VLControlScriptCommand implementation
80  *****************************************************************************/
81 /*
82  * This entire control command needs a better design. more object oriented.
83  * Applescript developers would be very welcome (hartman)
84  */
85 @implementation VLControlScriptCommand
86
87 - (id)performDefaultImplementation {
88     NSString *o_command = [[self commandDescription] commandName];
89
90     intf_thread_t * p_intf = VLCIntf;
91     playlist_t * p_playlist = pl_Get( p_intf );
92     if( p_playlist == NULL )
93     {
94         return nil;
95     }
96  
97     VLCControls * o_controls = [[VLCMain sharedInstance] controls];
98  
99     if ( o_controls )
100     {
101         if ( [o_command isEqualToString:@"play"] )
102         {
103             [o_controls play:self];
104         }
105         else if ( [o_command isEqualToString:@"stop"] )
106         {
107             [o_controls stop:self];
108         }
109         else if ( [o_command isEqualToString:@"previous"] )
110         {
111             [o_controls prev:self];
112         }
113         else if ( [o_command isEqualToString:@"next"] )
114         {
115             [o_controls next:self];
116         }
117         else if ( [o_command isEqualToString:@"fullscreen"] )
118         {
119             [o_controls toogleFullscreen: self];
120         }
121         else if ( [o_command isEqualToString:@"mute"] )
122         {
123             [o_controls mute:self];
124         }
125         else if ( [o_command isEqualToString:@"volumeUp"] )
126         {
127             [o_controls volumeUp:self];
128         }
129         else if ( [o_command isEqualToString:@"volumeDown"] )
130         {
131             [o_controls volumeDown:self];
132         }
133     }
134     return nil;
135 }
136
137 @end
138
139 /*****************************************************************************
140  * Category that adds AppleScript support to NSApplication
141  *****************************************************************************/
142 @implementation NSApplication(ScriptSupport)
143
144 - (BOOL) scriptFullscreenMode {    
145     return [[[VLCMain sharedInstance] controls] isFullscreen];
146 }
147 - (void) setScriptFullscreenMode: (BOOL) mode {
148     VLCControls * o_controls = [[VLCMain sharedInstance] controls];
149     if (mode == [o_controls isFullscreen]) return;
150     [o_controls toogleFullscreen: self];
151 }
152
153 @end