]> git.sesse.net Git - vlc/blob - plugins/gnome/gnome_sys.h
* The pure Gnome part of the Gnome interface has been rewritten from
[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.2 2001/02/12 00:20:37 sam Exp $
6  *
7  * Authors:
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  * intf_sys_t: description and status of Gnome interface
26  *****************************************************************************/
27 typedef struct intf_sys_s
28 {
29     /* special actions */
30     vlc_mutex_t         change_lock;                      /* the change lock */
31
32     boolean_t           b_activity_changed;       /* vout activity toggled ? */
33     boolean_t           b_activity;                         /* vout activity */
34
35     boolean_t           b_popup_changed;                   /* display menu ? */
36
37     boolean_t           b_window_changed;        /* window display toggled ? */
38     boolean_t           b_window;                        /* display window ? */
39
40     boolean_t           b_playlist_changed;    /* playlist display toggled ? */
41     boolean_t           b_playlist;                    /* display playlist ? */
42
43     /* intf_Manage callback timeout */
44     int                 i_timeout;
45
46     /* windows and widgets */
47     GtkWidget *         p_window;                             /* main window */
48     GtkWidget *         p_popup;                               /* popup menu */
49     GtkWidget *         p_playlist;                              /* playlist */
50     GtkWidget *         p_about;                             /* about window */
51     GtkWidget *         p_fileopen;                      /* file open window */
52
53     /* XXX: ugly kludge */
54     void             ( *pf_gtk_callback ) ( void );
55     void             ( *pf_gdk_callback ) ( void );
56
57 } intf_sys_t;
58