]> git.sesse.net Git - vlc/blob - plugins/gtk/gtk_modules.c
* ./plugins/gtk/*: new generic "Open Target" window. Please test and
[vlc] / plugins / gtk / gtk_modules.c
1 /*****************************************************************************
2  * gtk_modules.c : functions to build modules configuration boxes.
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 VideoLAN
5  * $Id: gtk_modules.c,v 1.10 2002/07/11 19:28:13 sam Exp $
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          Stéphane Borel <stef@via.ecp.fr>
9  *      
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <sys/types.h>                                              /* off_t */
29 #include <stdlib.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/intf.h>
33
34 #ifdef MODULE_NAME_IS_gnome
35 #   include <gnome.h>
36 #else
37 #   include <gtk/gtk.h>
38 #endif
39
40 #include <string.h>
41
42 #include "gtk_callbacks.h"
43 #include "gtk_interface.h"
44 #include "gtk_support.h"
45 #include "gtk_playlist.h"
46 #include "gtk_common.h"
47
48 gboolean GtkModulesShow( GtkWidget       *widget,
49                          gpointer         user_data )
50 {
51     intf_thread_t *p_intf = GtkGetIntf( widget );
52
53     if( !GTK_IS_WIDGET( p_intf->p_sys->p_modules ) )
54     {
55 //        p_intf->p_sys->p_modules = create_intf_modules();
56         gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_modules ),
57                              "p_intf", p_intf );
58     }
59     gtk_widget_show( p_intf->p_sys->p_modules );
60     gdk_window_raise( p_intf->p_sys->p_modules->window );
61
62     return FALSE;
63 }
64
65 void GtkModulesCancel( GtkButton * button, gpointer user_data )
66 {
67     intf_thread_t *p_intf = GtkGetIntf( button );
68
69     gtk_widget_hide( p_intf->p_sys->p_modules );
70 }
71