]> git.sesse.net Git - vlc/blob - plugins/gnome/gnome_sys.h
-Fixed most of the bugs in gnome interface menus
[vlc] / plugins / gnome / gnome_sys.h
1 /*****************************************************************************
2  * gnome_sys.h: private Gnome interface description
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: gnome_sys.h,v 1.7 2001/03/07 11:56:33 stef 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  * intf_sys_t: description and status of Gnome interface
32  *****************************************************************************/
33 typedef struct intf_sys_s
34 {
35     /* special actions */
36     vlc_mutex_t         change_lock;                      /* the change lock */
37
38     boolean_t           b_popup_changed;                   /* display menu ? */
39     boolean_t           b_window_changed;        /* window display toggled ? */
40     boolean_t           b_playlist_changed;    /* playlist display toggled ? */
41     boolean_t           b_scale_isfree;       /* user isn't dragging scale ? */
42     boolean_t           b_menus_update;
43
44     /* intf_Manage callback timeout */
45     int                 i_timeout;
46
47     /* windows and widgets */
48     GtkWidget *         p_window;                             /* main window */
49     GtkWidget *         p_popup;                               /* popup menu */
50     GtkWidget *         p_playlist;                              /* playlist */
51     GtkWidget *         p_modules;                         /* module manager */
52     GtkWidget *         p_about;                             /* about window */
53     GtkWidget *         p_fileopen;                      /* file open window */
54     GtkWidget *         p_disc;                     /* disc selection window */
55
56     /* XXX: ugly kludge */
57     void             ( *pf_gtk_callback ) ( void );
58     void             ( *pf_gdk_callback ) ( void );
59
60 } intf_sys_t;
61