]> git.sesse.net Git - vlc/blob - modules/gui/macosx/applescript.m
* Fixed applescript Fullscreen command.
[vlc] / modules / gui / macosx / applescript.m
1 /*****************************************************************************
2  * applescript.m: MacOS X AppleScript support
3  *****************************************************************************
4  * Copyright (C) 2002-2003 VideoLAN
5  * $Id: applescript.m,v 1.3 2003/06/15 15:20:21 hartman Exp $
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include "intf.h"
28 #include "applescript.h"
29 #include "controls.h"
30 #include "open.h"
31
32
33 /*****************************************************************************
34  * VLGetURLScriptCommand implementation 
35  *****************************************************************************/
36 @implementation VLGetURLScriptCommand
37
38 - (id)performDefaultImplementation {
39     NSString *o_command = [[self commandDescription] commandName];
40     NSString *o_urlString = [self directParameter];
41
42     if ( [o_command isEqualToString:@"GetURL"] || [o_command isEqualToString:@"OpenURL"] )
43     {
44         intf_thread_t * p_intf = [NSApp getIntf];
45         playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
46                                                         FIND_ANYWHERE );
47         if( p_playlist == NULL )
48         {
49             return nil;
50         }
51
52         if ( o_urlString )
53         {
54             NSURL * o_url;
55     
56             int i_mode = PLAYLIST_INSERT | PLAYLIST_GO;
57             
58             playlist_Add( p_playlist, [o_urlString fileSystemRepresentation],
59                                                     i_mode, PLAYLIST_END );
60
61             o_url = [NSURL fileURLWithPath: o_urlString];
62             if( o_url != nil )
63             { 
64                 [[NSDocumentController sharedDocumentController]
65                     noteNewRecentDocumentURL: o_url]; 
66             }
67         }
68         vlc_object_release( p_playlist );
69     }
70     return nil;
71 }
72
73 @end
74
75
76 /*****************************************************************************
77  * VLControlScriptCommand implementation 
78  *****************************************************************************/
79 /*
80  * This entire control command needs a better design. more object oriented.
81  * Applescript developers would be very welcome (hartman)
82  */
83 @implementation VLControlScriptCommand
84
85 - (id)performDefaultImplementation {
86     NSString *o_command = [[self commandDescription] commandName];
87
88     intf_thread_t * p_intf = [NSApp getIntf];
89     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
90                                                     FIND_ANYWHERE );
91     if( p_playlist == NULL )
92     {
93         return nil;
94     }
95     
96     VLCControls * o_controls = (VLCControls *)[[NSApp delegate] getControls];
97     
98     if ( o_controls )
99     {
100         if ( [o_command isEqualToString:@"play"] )
101         {
102             [o_controls play:self];
103             return nil;
104         }
105         else if ( [o_command isEqualToString:@"stop"] )
106         {
107             [o_controls stop:self];
108             return nil;
109         }
110         else if ( [o_command isEqualToString:@"previous"] )
111         {
112             [o_controls prev:self];
113             return nil;
114         }
115         else if ( [o_command isEqualToString:@"next"] )
116         {
117             [o_controls next:self];
118             return nil;
119         }
120         else if ( [o_command isEqualToString:@"fullscreen"] )
121         {
122             NSMenuItem *o_mi = [[NSMenuItem alloc] initWithTitle: _NS("Fullscreen") action: nil keyEquivalent:@""];
123             [o_controls windowAction:[o_mi autorelease]];
124             return nil;
125         }
126         else if ( [o_command isEqualToString:@"mute"] )
127         {
128             [o_controls mute:self];
129             return nil;
130         }
131         else if ( [o_command isEqualToString:@"volumeUp"] )
132         {
133             [o_controls volumeUp:self];
134             return nil;
135         }
136         else if ( [o_command isEqualToString:@"volumeDown"] )
137         {
138             [o_controls volumeDown:self];
139             return nil;
140         }
141     }
142     vlc_object_release( p_playlist );
143     return nil;
144 }
145
146 @end