]> git.sesse.net Git - vlc/blob - plugins/gtk/gtk_common.h
* ALL: the first libvlc commit.
[vlc] / plugins / gtk / gtk_common.h
1 /*****************************************************************************
2  * gtk_common.h: private Gtk+ interface description
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: gtk_common.h,v 1.9 2002/06/01 12:31:59 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  * Useful inline function
35  ****************************************************************************/
36 static inline intf_thread_t * GetIntf( GtkWidget *item, char * psz_parent )
37 {
38     return( gtk_object_get_data( GTK_OBJECT( lookup_widget(item, psz_parent) ),
39                                                      "p_intf" ) );
40 }
41
42 /*****************************************************************************
43  * intf_sys_t: description and status of Gtk+ interface
44  *****************************************************************************/
45 struct intf_sys_s
46 {
47     /* special actions */
48     vlc_bool_t          b_playing;
49     vlc_bool_t          b_popup_changed;                   /* display menu ? */
50     vlc_bool_t          b_window_changed;        /* window display toggled ? */
51     vlc_bool_t          b_playlist_changed;    /* playlist display toggled ? */
52     vlc_bool_t          b_slider_free;                      /* slider status */
53
54     /* menus handlers */
55     vlc_bool_t          b_program_update;   /* do we need to update programs 
56                                                                         menu */
57     vlc_bool_t          b_title_update;  /* do we need to update title menus */
58     vlc_bool_t          b_chapter_update;            /* do we need to update
59                                                                chapter menus */
60     vlc_bool_t          b_audio_update;  /* do we need to update audio menus */
61     vlc_bool_t          b_spu_update;      /* do we need to update spu menus */
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     GtkWidget *         p_sat;                       /* sat selection window */
72     GtkWidget *         p_network;                  /* network stream window */
73     GtkWidget *         p_jump;                               /* jump window */
74
75     GtkTooltips *       p_tooltips;                              /* tooltips */
76
77     /* The input thread */
78     input_thread_t *    p_input;
79
80     /* The slider */
81     GtkFrame *          p_slider_frame;
82     GtkAdjustment *     p_adj;                   /* slider adjustment object */
83     float               f_adj_oldvalue;                    /* previous value */
84
85     /* The messages window */
86     GtkWidget *         p_messages;                       /* messages window */
87     GtkText *           p_messages_text;                   /* messages frame */
88     msg_subscription_t* p_sub;                  /* message bank subscription */
89
90     /* Playlist management */
91     int                 i_playing;                 /* playlist selected item */
92
93     /* The window labels for DVD mode */
94     GtkLabel *          p_label_title;
95     GtkLabel *          p_label_chapter;
96     gint                i_part;                           /* current chapter */
97
98     /* XXX: Ugly kludge, see gtk.c */
99     void             ( *pf_callback[MAX_ATEXIT] ) ( void );
100 };
101
102 /*****************************************************************************
103  * Prototypes
104  *****************************************************************************/
105 gint GtkModeManage   ( intf_thread_t * p_intf );
106 void GtkDisplayDate  ( GtkAdjustment *p_adj );
107