]> git.sesse.net Git - vlc/blob - modules/gui/familiar/callbacks.h
Fixed superflous tuning ;-)
[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.9 2003/03/13 15:50:17 marcari 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 #include "network.h"
27 #include "playlist.h"
28
29 gboolean FamiliarExit           ( GtkWidget *, gpointer );
30
31 void ReadDirectory(GtkCList *clist, char *psz_dir);
32 void MediaURLOpenChanged( GtkWidget *widget, gchar *psz_url );
33
34 void
35 on_toolbar_open_clicked                (GtkButton       *button,
36                                         gpointer         user_data);
37
38 void
39 on_toolbar_preferences_clicked         (GtkButton       *button,
40                                         gpointer         user_data);
41
42 void
43 on_toolbar_rewind_clicked              (GtkButton       *button,
44                                         gpointer         user_data);
45
46 void
47 on_toolbar_pause_clicked               (GtkButton       *button,
48                                         gpointer         user_data);
49
50 void
51 on_toolbar_play_clicked                (GtkButton       *button,
52                                         gpointer         user_data);
53
54 void
55 on_toolbar_stop_clicked                (GtkButton       *button,
56                                         gpointer         user_data);
57
58 void
59 on_toolbar_forward_clicked             (GtkButton       *button,
60                                         gpointer         user_data);
61
62 void
63 on_toolbar_about_clicked               (GtkButton       *button,
64                                         gpointer         user_data);
65
66 void
67 on_comboURL_entry_changed              (GtkEditable     *editable,
68                                         gpointer         user_data);
69
70
71 void
72 on_clistmedia_click_column             (GtkCList        *clist,
73                                         gint             column,
74                                         gpointer         user_data);
75
76 void
77 on_clistmedia_select_row               (GtkCList        *clist,
78                                         gint             row,
79                                         gint             column,
80                                         GdkEvent        *event,
81                                         gpointer         user_data);
82
83 void
84 on_cbautoplay_toggled                  (GtkToggleButton *togglebutton,
85                                         gpointer         user_data);
86
87
88 gboolean
89 on_familiar_delete_event               (GtkWidget       *widget,
90                                         GdkEvent        *event,
91                                         gpointer         user_data);
92
93 gboolean
94 FamiliarSliderRelease                  (GtkWidget       *widget,
95                                         GdkEventButton  *event,
96                                         gpointer         user_data);
97
98 gboolean
99 FamiliarSliderPress                    (GtkWidget       *widget,
100                                         GdkEventButton  *event,
101                                         gpointer         user_data);
102
103
104
105
106 void
107 FamiliarMrlGo                          (GtkButton       *button,
108                                         gpointer         user_data);
109
110 void
111 on_toolbar_playlist_clicked            (GtkButton       *button,
112                                         gpointer         user_data);
113
114 void
115 FamiliarPreferencesApply               (GtkButton       *button,
116                                         gpointer         user_data);