]> git.sesse.net Git - vlc/blob - modules/gui/familiar/callbacks.h
* ALL: the build mechanism now uses automake. See HACKING for more details.
[vlc] / modules / gui / familiar / callbacks.h
1 /*****************************************************************************
2  * callbacks.h : familiar plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: callbacks.h,v 1.7 2002/09/30 11:05:38 sam Exp $
6  *
7  * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
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 #include <gtk/gtk.h>
25
26 gboolean FamiliarExit           ( GtkWidget *, gpointer );
27
28 void ReadDirectory(GtkCList *clist, char *psz_dir);
29
30 void
31 on_toolbar_open_clicked                (GtkButton       *button,
32                                         gpointer         user_data);
33
34 void
35 on_toolbar_preferences_clicked         (GtkButton       *button,
36                                         gpointer         user_data);
37
38 void
39 on_toolbar_rewind_clicked              (GtkButton       *button,
40                                         gpointer         user_data);
41
42 void
43 on_toolbar_pause_clicked               (GtkButton       *button,
44                                         gpointer         user_data);
45
46 void
47 on_toolbar_play_clicked                (GtkButton       *button,
48                                         gpointer         user_data);
49
50 void
51 on_toolbar_stop_clicked                (GtkButton       *button,
52                                         gpointer         user_data);
53
54 void
55 on_toolbar_forward_clicked             (GtkButton       *button,
56                                         gpointer         user_data);
57
58 void
59 on_toolbar_about_clicked               (GtkButton       *button,
60                                         gpointer         user_data);
61
62 void
63 on_comboURL_entry_changed              (GtkEditable     *editable,
64                                         gpointer         user_data);
65
66
67 void
68 on_clistmedia_click_column             (GtkCList        *clist,
69                                         gint             column,
70                                         gpointer         user_data);
71
72 void
73 on_clistmedia_select_row               (GtkCList        *clist,
74                                         gint             row,
75                                         gint             column,
76                                         GdkEvent        *event,
77                                         gpointer         user_data);
78
79 void
80 on_cbautoplay_toggled                  (GtkToggleButton *togglebutton,
81                                         gpointer         user_data);
82
83
84 gboolean
85 on_familiar_delete_event               (GtkWidget       *widget,
86                                         GdkEvent        *event,
87                                         gpointer         user_data);