]> git.sesse.net Git - vlc/blob - plugins/gtk/gtk_sys.h
-Fixed most of the bugs in gnome interface menus
[vlc] / plugins / gtk / gtk_sys.h
1 /*****************************************************************************
2  * gtk_sys.h: private Gtk+ interface description
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: gtk_sys.h,v 1.5 2001/03/09 19:38:47 octplane Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * drag'n'drop stuff
26  *****************************************************************************/
27 #define DROP_ACCEPT_TEXT_URI_LIST  0
28 #define DROP_ACCEPT_TEXT_PLAIN     1
29
30 /*****************************************************************************
31  * useful inline function
32  ****************************************************************************/
33 static __inline__ intf_thread_t * GetIntf( GtkWidget *item, char * psz_parent )
34 {
35     return( gtk_object_get_data( GTK_OBJECT( lookup_widget(item, psz_parent) ),
36                                                      "p_intf" ) );
37 }
38
39
40
41
42 /*****************************************************************************
43  * intf_sys_t: description and status of Gtk+ interface
44  *****************************************************************************/
45 typedef struct intf_sys_s
46 {
47     /* special actions */
48     vlc_mutex_t         change_lock;                      /* the change lock */
49
50     boolean_t           b_popup_changed;                   /* display menu ? */
51     boolean_t           b_window_changed;        /* window display toggled ? */
52     boolean_t           b_playlist_changed;    /* playlist display toggled ? */
53     boolean_t           b_menus_update;              /* menus have changed ? */
54     boolean_t           b_scale_isfree;       /* user isn't dragging scale ? */
55
56     /* intf_Manage callback timeout */
57     int                 i_timeout;
58     int                 i_list_timeout;
59
60     /* Playlist selected item */
61     int                 i_playing;
62
63     /* windows and widgets */
64     GtkWidget *         p_window;                             /* main window */
65     GtkWidget *         p_popup;                               /* popup menu */
66     GtkWidget *         p_playlist;                              /* playlist */
67     GtkWidget *         p_modules;                         /* module manager */
68     GtkWidget *         p_about;                             /* about window */
69     GtkWidget *         p_fileopen;                      /* file open window */
70     GtkWidget *         p_disc;                     /* disc selection window */
71
72     /* XXX: ugly kludge */
73     void             ( *pf_gtk_callback ) ( void );
74     void             ( *pf_gdk_callback ) ( void );
75
76 } intf_sys_t;
77