]> git.sesse.net Git - vlc/blob - plugins/gtk/gtk_modules.c
8a515c69673dce8719fa5895bb17c254fe4bcbd5
[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.7 2001/12/30 07:09:55 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 <videolan/vlc.h>
32
33 #ifdef MODULE_NAME_IS_gnome
34 #   include <gnome.h>
35 #else
36 #   include <gtk/gtk.h>
37 #endif
38
39 #include <string.h>
40
41 #include "stream_control.h"
42 #include "input_ext-intf.h"
43
44 #include "interface.h"
45 #include "intf_playlist.h"
46
47 #include "gtk_callbacks.h"
48 #include "gtk_interface.h"
49 #include "gtk_support.h"
50 #include "gtk_playlist.h"
51 #include "gtk_common.h"
52
53 gboolean GtkModulesShow( GtkWidget       *widget,
54                          GdkEventButton  *event,
55                          gpointer         user_data )
56 {
57     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(widget), "intf_window" );
58
59     if( !GTK_IS_WIDGET( p_intf->p_sys->p_modules ) )
60     {
61 //        p_intf->p_sys->p_modules = create_intf_modules();
62         gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_modules ),
63                              "p_intf", p_intf );
64     }
65     gtk_widget_show( p_intf->p_sys->p_modules );
66     gdk_window_raise( p_intf->p_sys->p_modules->window );
67
68     return FALSE;
69 }
70
71 void GtkModulesCancel( GtkButton * button, gpointer user_data )
72 {
73     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(button), "intf_modules" );
74
75     gtk_widget_hide( p_intf->p_sys->p_modules );
76 }
77
78 /****************************************************************************
79  * Callbacks for menuitems
80  ****************************************************************************/
81 void GtkModulesActivate( GtkMenuItem * menuitem, gpointer user_data )
82 {
83     GtkModulesShow( GTK_WIDGET( menuitem ), NULL, user_data );
84 }