]> git.sesse.net Git - vlc/blob - modules/gui/macosx/VideoView.h
macosx: add custom numberformatter to goto time field to only allow digits and :
[vlc] / modules / gui / macosx / VideoView.h
1 /*****************************************************************************
2  * VideoView.h: MacOS X video output module
3  *****************************************************************************
4  * Copyright (C) 2002-2013 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  *          David Fuhrmann <david dot fuhrmann at googlemail dot com>
13  *
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
27  *****************************************************************************/
28
29 #import <vlc_vout.h>
30
31
32 /*****************************************************************************
33  * VLCVoutView interface
34  *****************************************************************************/
35 @interface VLCVoutView : NSView
36 {
37     NSInteger i_lastScrollWheelDirection;
38     NSTimeInterval t_lastScrollEvent;
39
40     CGFloat f_cumulated_magnification;
41
42     vout_thread_t *p_vout;
43 }
44
45 - (void)setVoutThread:(vout_thread_t *)p_vout_thread;
46 - (vout_thread_t *)voutThread;
47 - (void)releaseVoutThread;
48
49 @end