]> git.sesse.net Git - vlc/blob - modules/gui/macosx/VideoView.m
macosx vout: public getter for vd should not be needed anymore
[vlc] / modules / gui / macosx / VideoView.m
1 /*****************************************************************************
2  * VideoView.m: MacOS X video output module
3  *****************************************************************************
4  * Copyright (C) 2002-2012 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Derk-Jan Hartman <hartman at videolan dot org>
8  *          Eric Petit <titer@m0k.org>
9  *          Benjamin Pracht <bigben at videolan dot org>
10  *          Pierre d'Herbemont <pdherbemont # videolan 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 /*****************************************************************************
29  * Preamble
30  *****************************************************************************/
31 #import <stdlib.h>                                                 /* free() */
32 #import <string.h>
33
34 #import "intf.h"
35 #import "VideoView.h"
36 #import "CoreInteraction.h"
37 #import "MainMenu.h"
38 #import "MainWindow.h"
39
40 #import <vlc_common.h>
41 #import <vlc_vout_window.h>
42 #import <vlc_vout_display.h>
43 #import <vlc_keys.h>
44 #import <vlc_mouse.h>
45 /*****************************************************************************
46  * DeviceCallback: Callback triggered when the video-device variable is changed
47  *****************************************************************************/
48 int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
49                      vlc_value_t old_val, vlc_value_t new_val, void *param )
50 {
51     vlc_value_t val;
52     vout_thread_t *p_vout = (vout_thread_t *)p_this;
53
54     msg_Dbg( p_vout, "set %"PRId64, new_val.i_int );
55     var_Create( p_vout->p_libvlc, "video-device", VLC_VAR_INTEGER );
56     var_Set( p_vout->p_libvlc, "video-device", new_val );
57
58     val.b_bool = true;
59     var_Set( p_vout, "intf-change", val );
60     return VLC_SUCCESS;
61 }
62
63 /*****************************************************************************
64  * VLCVoutView implementation
65  *****************************************************************************/
66 @implementation VLCVoutView
67
68 #pragma mark -
69 #pragma mark drag & drop support
70
71 - (void)dealloc
72 {
73     [self unregisterDraggedTypes];
74     [super dealloc];
75 }
76
77 - (void)awakeFromNib
78 {
79     [self registerForDraggedTypes:[NSArray arrayWithObject: NSFilenamesPboardType]];
80 }
81
82 - (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
83 {
84     if ((NSDragOperationGeneric & [sender draggingSourceOperationMask]) == NSDragOperationGeneric)
85         return NSDragOperationGeneric;
86     return NSDragOperationNone;
87 }
88
89 - (BOOL)prepareForDragOperation:(id <NSDraggingInfo>)sender
90 {
91     return YES;
92 }
93
94 - (BOOL)performDragOperation:(id <NSDraggingInfo>)sender
95 {
96     BOOL b_returned;
97     b_returned = [[VLCCoreInteraction sharedInstance] performDragOperation: sender];
98
99     [self setNeedsDisplay:YES];
100     return b_returned;
101 }
102
103 - (void)concludeDragOperation:(id <NSDraggingInfo>)sender
104 {
105     [self setNeedsDisplay:YES];
106 }
107
108 #pragma mark -
109 #pragma mark vout actions
110
111 - (void)closeVout
112 {
113     vout_thread_t * p_vout = getVout();
114     if( !p_vout )
115     {
116         var_DelCallback( p_vout, "video-device", DeviceCallback, NULL );
117         vlc_object_release( p_vout );
118     }
119 }
120
121 - (void)scrollWheel:(NSEvent *)theEvent
122 {
123     VLCControls * o_controls = (VLCControls *)[[NSApp delegate] controls];
124     [o_controls scrollWheel: theEvent];
125 }
126
127 - (void)keyDown:(NSEvent *)o_event
128 {
129     unichar key = 0;
130     vlc_value_t val;
131     unsigned int i_pressed_modifiers = 0;
132     val.i_int = 0;
133
134     i_pressed_modifiers = [o_event modifierFlags];
135
136     if( i_pressed_modifiers & NSShiftKeyMask )
137         val.i_int |= KEY_MODIFIER_SHIFT;
138     if( i_pressed_modifiers & NSControlKeyMask )
139         val.i_int |= KEY_MODIFIER_CTRL;
140     if( i_pressed_modifiers & NSAlternateKeyMask )
141         val.i_int |= KEY_MODIFIER_ALT;
142     if( i_pressed_modifiers & NSCommandKeyMask )
143         val.i_int |= KEY_MODIFIER_COMMAND;
144
145     key = [[[o_event charactersIgnoringModifiers] lowercaseString] characterAtIndex: 0];
146
147     if( key )
148     {
149         vout_thread_t * p_vout = getVout();
150         /* Escape should always get you out of fullscreen */
151         if( key == (unichar) 0x1b )
152         {
153             playlist_t * p_playlist = pl_Get( VLCIntf );
154              if( var_GetBool( p_playlist, "fullscreen") )
155                  [[VLCCoreInteraction sharedInstance] toggleFullscreen];
156         }
157         /* handle Lion's default key combo for fullscreen-toggle in addition to our own hotkeys */
158         else if( key == 'f' && i_pressed_modifiers & NSControlKeyMask && i_pressed_modifiers & NSCommandKeyMask )
159             [[VLCCoreInteraction sharedInstance] toggleFullscreen];
160         else if ( p_vout )
161         {
162             if( key == ' ' )
163             {
164                 [[VLCCoreInteraction sharedInstance] play];
165             }
166             else
167             {
168                 val.i_int |= (int)CocoaKeyToVLC( key );
169                 var_Set( p_vout->p_libvlc, "key-pressed", val );
170             }
171             vlc_object_release( p_vout );
172         }
173         else
174             msg_Dbg( VLCIntf, "could not send keyevent to VLC core" );
175     }
176     else
177         [super keyDown: o_event];
178 }
179
180 - (void)mouseDown:(NSEvent *)o_event
181 {
182     if( ( [o_event type] == NSLeftMouseDown ) &&
183        ( ! ( [o_event modifierFlags] &  NSControlKeyMask ) ) )
184     {
185         if( [o_event clickCount] > 1 )
186         {
187             /* multiple clicking */
188             [[VLCCoreInteraction sharedInstance] toggleFullscreen];
189         }
190     }
191     else if( ( [o_event type] == NSRightMouseDown ) ||
192             ( ( [o_event type] == NSLeftMouseDown ) &&
193              ( [o_event modifierFlags] &  NSControlKeyMask ) ) )
194     {
195         [NSMenu popUpContextMenu: [[VLCMainMenu sharedInstance] voutMenu] withEvent: o_event forView: self];
196     }
197
198     [super mouseDown: o_event];
199 }
200
201 - (void)rightMouseDown:(NSEvent *)o_event
202 {
203     if( [o_event type] == NSRightMouseDown )
204         [NSMenu popUpContextMenu: [[VLCMainMenu sharedInstance] voutMenu] withEvent: o_event forView: self];
205
206     [super mouseDown: o_event];
207 }
208
209 - (void)rightMouseUp:(NSEvent *)o_event
210 {
211     if( [o_event type] == NSRightMouseUp )
212         [NSMenu popUpContextMenu: [[VLCMainMenu sharedInstance] voutMenu] withEvent: o_event forView: self];
213
214     [super mouseUp: o_event];
215 }
216
217 - (void)mouseMoved:(NSEvent *)o_event
218 {
219     [[VLCMain sharedInstance] showFullscreenController];
220     [super mouseMoved: o_event];
221 }
222
223 - (BOOL)mouseDownCanMoveWindow
224 {
225     return YES;
226 }
227
228 - (BOOL)acceptsFirstResponder
229 {
230     return YES;
231 }
232
233 - (BOOL)becomeFirstResponder
234 {
235     return YES;
236 }
237
238 - (BOOL)resignFirstResponder
239 {
240     /* while we need to be the first responder most of the time, we need to give up that status when toggling the playlist */
241     return YES;
242 }
243
244 -(void)didAddSubview:(NSView *)subview
245 {
246     [[self window] makeFirstResponder: subview];
247 }
248
249 @end