]> git.sesse.net Git - vlc/blob - modules/gui/minimal_macosx/intf.m
modules/gui/minimal_macosx: Add a minimal_macosx interface and vout that is used...
[vlc] / modules / gui / minimal_macosx / intf.m
1 /*****************************************************************************
2  * intf.m: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          Derk-Jan Hartman <hartman at videolan.org>
10  *          Felix K\9fhne <fkuehne at videolan dot org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include <stdlib.h>                                      /* malloc(), free() */
31 #include <sys/param.h>                                    /* for MAXPATHLEN */
32 #include <string.h>
33 #include <vlc/vlc.h>
34
35 #include <vlc_keys.h>
36
37 #include <vlc_input.h>
38
39 #import <intf.h>
40
41 /*****************************************************************************
42  * Local prototypes.
43  *****************************************************************************/
44 static void Run ( intf_thread_t *p_intf );
45
46 /*****************************************************************************
47  * OpenIntf: initialize interface
48  *****************************************************************************/
49 int E_(OpenIntf) ( vlc_object_t *p_this )
50 {
51     intf_thread_t *p_intf = (intf_thread_t*) p_this;
52
53     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
54     if( p_intf->p_sys == NULL )
55     {
56         return( 1 );
57     }
58
59     memset( p_intf->p_sys, 0, sizeof( *p_intf->p_sys ) );
60
61     p_intf->p_sys->o_pool = [[NSAutoreleasePool alloc] init];
62
63     p_intf->b_play = VLC_TRUE;
64     p_intf->pf_run = Run;
65
66     return( 0 );
67 }
68
69 /*****************************************************************************
70  * CloseIntf: destroy interface
71  *****************************************************************************/
72 void E_(CloseIntf) ( vlc_object_t *p_this )
73 {
74     intf_thread_t *p_intf = (intf_thread_t*) p_this;
75
76     free( p_intf->p_sys );
77 }
78
79 /*****************************************************************************
80  * Run: main loop
81  *****************************************************************************/
82 static void Run( intf_thread_t *p_intf )
83 {
84     sigset_t set;
85
86     /* Do it again - for some unknown reason, vlc_thread_create() often
87      * fails to go to real-time priority with the first launched thread
88      * (???) --Meuuh */
89     vlc_thread_set_priority( p_intf, VLC_THREAD_PRIORITY_LOW );
90
91     /* Make sure the "force quit" menu item does quit instantly.
92      * VLC overrides SIGTERM which is sent by the "force quit"
93      * menu item to make sure deamon mode quits gracefully, so
94      * we un-override SIGTERM here. */
95     sigemptyset( &set );
96     sigaddset( &set, SIGTERM );
97     pthread_sigmask( SIG_UNBLOCK, &set, NULL );
98
99     [NSApp run];
100 }
101