]> git.sesse.net Git - vlc/blob - modules/misc/gtk_main.c
Use var_GetGlobalMutex
[vlc] / modules / misc / gtk_main.c
1 /*****************************************************************************
2  * gtk_main.c : Gtk+ wrapper for gtk_main
3  *****************************************************************************
4  * Copyright (C) 2002 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
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 <vlc/vlc.h>
28
29 #include <stdlib.h>                                              /* atexit() */
30
31 #include <gtk/gtk.h>
32
33 #if defined(MODULE_NAME_IS_gtk2_main)
34 #   include <glib.h>
35 #endif
36
37 #if defined(MODULE_NAME_IS_gnome_main) || defined(MODULE_NAME_IS_gnome2_main)
38 #   include <gnome.h>
39 #endif
40
41 /*****************************************************************************
42  * Local prototypes.
43  *****************************************************************************/
44 static int  Open    ( vlc_object_t * );
45 static void Close   ( vlc_object_t * );
46
47 static void GtkMain ( vlc_object_t * );
48
49 /*****************************************************************************
50  * Local variables (mutex-protected).
51  *****************************************************************************/
52 static int            i_refcount = 0;
53 static vlc_object_t * p_gtk_main = NULL;
54
55 /*****************************************************************************
56  * Module descriptor
57  *****************************************************************************/
58 vlc_module_begin();
59     int i_cap;
60     set_description( _("Gtk+ GUI helper") );
61 #if defined(MODULE_NAME_IS_gtk_main)
62     i_cap = 90;
63     add_shortcut( "gtk" );
64 #elif defined(MODULE_NAME_IS_gnome_main)
65     i_cap = 100;
66     add_shortcut( "gtk" );
67     add_shortcut( "gnome" );
68 #elif defined(MODULE_NAME_IS_gtk2_main)
69     i_cap = 95;
70     add_shortcut( "gtk2" );
71 #elif defined(MODULE_NAME_IS_gnome2_main)
72     i_cap = 105;
73     add_shortcut( "gtk2" );
74     add_shortcut( "gnome2" );
75 #endif
76     set_capability( "gui-helper", i_cap );
77     set_callbacks( Open, Close );
78     linked_with_a_crap_library_which_uses_atexit();
79 vlc_module_end();
80
81 /*****************************************************************************
82  * Open: initialize and create window
83  *****************************************************************************/
84 static int Open( vlc_object_t *p_this )
85 {
86     vlc_mutex_t *lock;
87
88     /* FIXME: put this in the module (de)initialization ASAP */
89     lock = var_GetGlobalCreate( "gtk" );
90     vlc_mutex_lock( lock );
91
92     if( i_refcount > 0 )
93     {
94         i_refcount++;
95         vlc_mutex_unlock( lock );
96
97         return VLC_SUCCESS;
98     }
99
100     p_gtk_main = vlc_object_create( p_this, VLC_OBJECT_GENERIC );
101
102     /* Only initialize gthreads if it's the first time we do it */
103     if( !g_thread_supported() )
104     {
105         g_thread_init( NULL );
106     }
107
108     /* Launch the gtk_main() thread. It will not return until it has
109      * called gdk_threads_enter(), which ensures us thread safety. */
110     if( vlc_thread_create( p_gtk_main, "gtk_main", GtkMain,
111                            VLC_THREAD_PRIORITY_LOW, VLC_TRUE ) )
112     {
113         vlc_object_destroy( p_gtk_main );
114         i_refcount--;
115         vlc_mutex_unlock( lock );
116         return VLC_ETHREAD;
117     }
118
119     i_refcount++;
120     vlc_mutex_unlock( lock );
121
122     return VLC_SUCCESS;
123 }
124
125 /*****************************************************************************
126  * Close: destroy interface window
127  *****************************************************************************/
128 static void Close( vlc_object_t *p_this )
129 {
130     vlc_mutex_t *lock;
131
132     lock = var_GetGlobalMutex( "gtk" );
133     vlc_mutex_lock( lock );
134
135     i_refcount--;
136
137     if( i_refcount > 0 )
138     {
139         vlc_mutex_unlock( lock );
140         return;
141     }
142
143     gtk_main_quit();
144     vlc_thread_join( p_gtk_main );
145
146     vlc_object_destroy( p_gtk_main );
147     p_gtk_main = NULL;
148
149     vlc_mutex_unlock( lock );
150 }
151
152 static gint foo( gpointer bar ) { return TRUE; }
153
154 /*****************************************************************************
155  * GtkMain: Gtk+ thread
156  *****************************************************************************
157  * this part of the interface is in a separate thread so that we can call
158  * gtk_main() from within it without annoying the rest of the program.
159  *****************************************************************************/
160 static void GtkMain( vlc_object_t *p_this )
161 {
162     /* gtk_init needs to know the command line. We don't care, so we
163      * give it an empty one */
164     static char  *p_args[] = { "", NULL };
165 #if defined(MODULE_NAME_IS_gtk_main) || defined(MODULE_NAME_IS_gtk2_main)
166     static char **pp_args  = p_args;
167 #endif
168     static int    i_args   = 1;
169
170     /* FIXME: deprecated ? */
171 #if defined(MODULE_NAME_IS_gtk2_main) || defined(MODULE_NAME_IS_gnome2_main)
172     gdk_threads_init();
173 #endif
174
175 #if defined(MODULE_NAME_IS_gnome_main)
176     gnome_init( p_this->p_libvlc->psz_object_name, VERSION, i_args, p_args );
177 #elif defined(MODULE_NAME_IS_gnome2_main)
178     gnome_program_init( PACKAGE, VERSION, LIBGNOMEUI_MODULE,
179                         i_args, p_args,
180                         GNOME_PARAM_APP_DATADIR, "",//PACKAGE_DATA_DIR,
181                         NULL );
182 #else
183     gtk_set_locale();
184     gtk_init( &i_args, &pp_args );
185 #endif
186
187     gdk_threads_enter();
188
189     vlc_thread_ready( p_this );
190
191     /* If we don't add this simple timeout, gtk_main remains stuck if
192      * we try to close the window without having sent any gtk event. */
193     gtk_timeout_add( INTF_IDLE_SLEEP / 1000, foo, p_this );
194
195     /* Enter Gtk mode */
196     gtk_main();
197
198     gdk_threads_leave();
199 }
200