1 /*****************************************************************************
2 * pda.h: private Gtk+ interface description
3 *****************************************************************************
4 * Copyright (C) 1999, 2000 the VideoLAN team
7 * Authors: Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
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.
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.
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 *****************************************************************************/
26 /*****************************************************************************
27 * intf_sys_t: description and status of Gtk+ interface
28 *****************************************************************************/
31 /* The gtk_main module */
34 /* windows and widgets */
35 GtkWidget *p_window; /* main window */
36 GtkNotebook *p_notebook;
38 GtkTreeView *p_tvfile;
39 GtkTreeView *p_tvplaylist;
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*/
49 vlc_bool_t b_window_changed; /* window display toggled ? */
50 vlc_bool_t b_slider_free; /* slider status */
52 /* Preference settings */
53 vlc_bool_t b_autoplayfile;
55 /* The input thread */
56 input_thread_t * p_input;
59 /*****************************************************************************
61 ****************************************************************************/
62 #define GTK_GET( type, nom ) GTK_##type( gtk_object_get_data( \
63 GTK_OBJECT( p_intf->p_sys->p_window ), nom ) )
66 #define GtkGetIntf( widget ) E_(__GtkGetIntf)( GTK_WIDGET( widget ) )
67 void * E_(__GtkGetIntf)( GtkWidget * );