]> git.sesse.net Git - vlc/blob - plugins/gnome/intf_gnome.h
-Fixed most of the bugs in gnome interface menus
[vlc] / plugins / gnome / intf_gnome.h
1 /*****************************************************************************
2  * intf_gnome.h: private Gnome interface description
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: intf_gnome.h,v 1.3 2001/03/15 01:42:19 sam 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     boolean_t           b_popup_changed;                   /* display menu ? */
37     boolean_t           b_window_changed;        /* window display toggled ? */
38     boolean_t           b_playlist_changed;    /* playlist display toggled ? */
39     boolean_t           b_slider_free;                      /* slider status */
40     boolean_t           b_menus_update;
41
42     /* Windows and widgets */
43     GtkWidget *         p_window;                             /* main window */
44     GtkWidget *         p_popup;                               /* popup menu */
45     GtkWidget *         p_playlist;                              /* playlist */
46     GtkWidget *         p_modules;                         /* module manager */
47     GtkWidget *         p_about;                             /* about window */
48     GtkWidget *         p_fileopen;                      /* file open window */
49     GtkWidget *         p_disc;                     /* disc selection window */
50     GtkWidget *         p_network;                  /* network stream window */
51
52     /* The slider */
53     GtkAdjustment *     p_adj;                   /* slider adjustment object */
54     float               f_adj_oldvalue;                    /* previous value */
55
56     /* The window labels */
57     GtkLabel *          p_label_date;
58     GtkLabel *          p_label_status;
59
60     /* XXX: Ugly kludge, see intf_gnome.c */
61     void             ( *pf_gtk_callback ) ( void );
62     void             ( *pf_gdk_callback ) ( void );
63
64 } intf_sys_t;
65