]> git.sesse.net Git - vlc/blob - modules/gui/gtk/common.h
* ALL: the build mechanism now uses automake. See HACKING for more details.
[vlc] / modules / gui / gtk / common.h
1 /*****************************************************************************
2  * gtk_common.h: private Gtk+ interface description
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: common.h,v 1.3 2002/09/30 11:05:38 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 #define DROP_ACCEPT_STRING         2
30
31 #define MAX_ATEXIT                 10
32
33 /*****************************************************************************
34  * intf_sys_t: description and status of Gtk+ interface
35  *****************************************************************************/
36 struct intf_sys_t
37 {
38     /* the gtk_main module */
39     module_t *          p_gtk_main;
40
41     /* special actions */
42     vlc_bool_t          b_playing;
43     vlc_bool_t          b_popup_changed;                   /* display menu ? */
44     vlc_bool_t          b_window_changed;        /* window display toggled ? */
45     vlc_bool_t          b_playlist_changed;    /* playlist display toggled ? */
46     vlc_bool_t          b_slider_free;                      /* slider status */
47
48     /* menus handlers */
49     vlc_bool_t          b_program_update;   /* do we need to update programs 
50                                                                         menu */
51     vlc_bool_t          b_title_update;  /* do we need to update title menus */
52     vlc_bool_t          b_chapter_update;            /* do we need to update
53                                                                chapter menus */
54     vlc_bool_t          b_audio_update;  /* do we need to update audio menus */
55     vlc_bool_t          b_spu_update;      /* do we need to update spu menus */
56
57     /* windows and widgets */
58     GtkWidget *         p_window;                             /* main window */
59     GtkWidget *         p_popup;                               /* popup menu */
60     GtkWidget *         p_playwin;                               /* playlist */
61     GtkWidget *         p_modules;                         /* module manager */
62     GtkWidget *         p_about;                             /* about window */
63     GtkWidget *         p_open;                          /* multiopen window */
64     GtkWidget *         p_jump;                               /* jump window */
65
66     GtkTooltips *       p_tooltips;                              /* tooltips */
67
68     /* The input thread */
69     input_thread_t *    p_input;
70
71     /* The slider */
72     GtkFrame *          p_slider_frame;
73     GtkAdjustment *     p_adj;                   /* slider adjustment object */
74     float               f_adj_oldvalue;                    /* previous value */
75
76     /* The messages window */
77     GtkWidget *         p_messages;                       /* messages window */
78     GtkText *           p_messages_text;                   /* messages frame */
79     msg_subscription_t* p_sub;                  /* message bank subscription */
80
81     /* Playlist management */
82     int                 i_playing;                 /* playlist selected item */
83
84     /* The window labels for DVD mode */
85     GtkLabel *          p_label_title;
86     GtkLabel *          p_label_chapter;
87     gint                i_part;                           /* current chapter */
88 };
89
90 /*****************************************************************************
91  * Prototypes
92  *****************************************************************************/
93 gint E_(GtkModeManage)   ( intf_thread_t * p_intf );
94 void E_(GtkDisplayDate)  ( GtkAdjustment *p_adj );
95
96 /*****************************************************************************
97  * Useful macro
98  ****************************************************************************/
99 #define  GtkGetIntf( widget ) E_(__GtkGetIntf)( GTK_WIDGET( widget ) )
100 void * E_(__GtkGetIntf)( GtkWidget * );
101