]> git.sesse.net Git - vlc/blob - plugins/gtk/gtk_modules.c
* ALL: the first libvlc commit.
[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.8 2002/06/01 12:31:59 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                          GdkEventButton  *event,
50                          gpointer         user_data )
51 {
52     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(widget), "intf_window" );
53
54     if( !GTK_IS_WIDGET( p_intf->p_sys->p_modules ) )
55     {
56 //        p_intf->p_sys->p_modules = create_intf_modules();
57         gtk_object_set_data( GTK_OBJECT( p_intf->p_sys->p_modules ),
58                              "p_intf", p_intf );
59     }
60     gtk_widget_show( p_intf->p_sys->p_modules );
61     gdk_window_raise( p_intf->p_sys->p_modules->window );
62
63     return FALSE;
64 }
65
66 void GtkModulesCancel( GtkButton * button, gpointer user_data )
67 {
68     intf_thread_t *p_intf = GetIntf( GTK_WIDGET(button), "intf_modules" );
69
70     gtk_widget_hide( p_intf->p_sys->p_modules );
71 }
72
73 /****************************************************************************
74  * Callbacks for menuitems
75  ****************************************************************************/
76 void GtkModulesActivate( GtkMenuItem * menuitem, gpointer user_data )
77 {
78     GtkModulesShow( GTK_WIDGET( menuitem ), NULL, user_data );
79 }