]> git.sesse.net Git - vlc/blob - modules/gui/pda/pda.h
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / pda / pda.h
1 /*****************************************************************************
2  * pda.h: private Gtk+ interface description
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Paul Saman <jpsaman _at_ videolan _dot_ 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #define MAX_ATEXIT                 10
25
26 /*****************************************************************************
27  * intf_sys_t: description and status of Gtk+ interface
28  *****************************************************************************/
29 struct intf_sys_t
30 {
31     /* The gtk_main module */
32     module_t           *p_gtk_main;
33
34     /* windows and widgets */
35     GtkWidget          *p_window;                             /* main window */
36     GtkNotebook        *p_notebook;
37     GtkHScale          *p_slider;
38     GtkTreeView        *p_tvfile;
39     GtkTreeView        *p_tvplaylist;
40
41     /* slider */
42     GtkLabel *          p_slider_label;
43     GtkAdjustment *     p_adj;                   /* slider adjustment object */
44     off_t               i_adj_oldvalue;  /* previous value -no FPU hardware  */
45     float               f_adj_oldvalue;  /* previous value -with FPU hardware*/
46
47     /* special actions */
48     vlc_bool_t          b_playing;
49     vlc_bool_t          b_window_changed;        /* window display toggled ? */
50     vlc_bool_t          b_slider_free;                      /* slider status */
51
52     /* Preference settings */
53     vlc_bool_t          b_autoplayfile;
54
55     /* The input thread */
56     input_thread_t *    p_input;
57 };
58
59 /*****************************************************************************
60  * Useful macro
61  ****************************************************************************/
62 #define GTK_GET( type, nom ) GTK_##type( gtk_object_get_data( \
63         GTK_OBJECT( p_intf->p_sys->p_window ), nom ) )
64
65  
66 #define  GtkGetIntf( widget ) E_(__GtkGetIntf)( GTK_WIDGET( widget ) )
67 void * E_(__GtkGetIntf)( GtkWidget * );