]> git.sesse.net Git - vlc/blob - modules/gui/macosx/applescript.m
Merge branch 'master' into lpcm_encoder
[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( p_playlist,
56                                     [o_urlString fileSystemRepresentation],
57                                     [[[NSFileManager defaultManager]
58                                     displayNameAtPath: o_urlString] UTF8String] );
59             /* FIXME: playlist_AddInput() can fail */
60             playlist_AddInput( p_playlist, p_input, PLAYLIST_INSERT,
61                                PLAYLIST_END, true, pl_Unlocked );
62
63             vlc_gc_decref( p_input );
64
65             o_url = [NSURL fileURLWithPath: o_urlString];
66             if( o_url != nil )
67             {
68                 [[NSDocumentController sharedDocumentController]
69                     noteNewRecentDocumentURL: o_url];
70             }
71         }
72     }
73     return nil;
74 }
75
76 @end
77
78
79 /*****************************************************************************
80  * VLControlScriptCommand implementation
81  *****************************************************************************/
82 /*
83  * This entire control command needs a better design. more object oriented.
84  * Applescript developers would be very welcome (hartman)
85  */
86 @implementation VLControlScriptCommand
87
88 - (id)performDefaultImplementation {
89     NSString *o_command = [[self commandDescription] commandName];
90
91     intf_thread_t * p_intf = VLCIntf;
92     playlist_t * p_playlist = pl_Get( p_intf );
93     if( p_playlist == NULL )
94     {
95         return nil;
96     }
97  
98     VLCControls * o_controls = (VLCControls *)[[NSApp delegate] controls];
99  
100     if ( o_controls )
101     {
102         if ( [o_command isEqualToString:@"play"] )
103         {
104             [o_controls play:self];
105         }
106         else if ( [o_command isEqualToString:@"stop"] )
107         {
108             [o_controls stop:self];
109         }
110         else if ( [o_command isEqualToString:@"previous"] )
111         {
112             [o_controls prev:self];
113         }
114         else if ( [o_command isEqualToString:@"next"] )
115         {
116             [o_controls next:self];
117         }
118         else if ( [o_command isEqualToString:@"fullscreen"] )
119         {
120             [o_controls toogleFullscreen: self];
121         }
122         else if ( [o_command isEqualToString:@"mute"] )
123         {
124             [o_controls mute:self];
125         }
126         else if ( [o_command isEqualToString:@"volumeUp"] )
127         {
128             [o_controls volumeUp:self];
129         }
130         else if ( [o_command isEqualToString:@"volumeDown"] )
131         {
132             [o_controls volumeDown:self];
133         }
134     }
135     return nil;
136 }
137
138 @end
139
140 /*****************************************************************************
141  * Category that adds AppleScript support to NSApplication
142  *****************************************************************************/
143 @implementation NSApplication(ScriptSupport)
144
145 - (BOOL) scriptFullscreenMode {    
146     VLCControls * o_controls = (VLCControls *)[[self delegate] controls];
147
148     return [o_controls isFullscreen];
149 }
150 - (void) setScriptFullscreenMode: (BOOL) mode {
151     VLCControls * o_controls = (VLCControls *)[[self delegate] controls];
152     if (mode == [o_controls isFullscreen]) return;
153     [o_controls toogleFullscreen: self];
154 }
155
156 @end