]> git.sesse.net Git - vlc/blob - modules/gui/pda/pda_callbacks.h
PDA Interface:
[vlc] / modules / gui / pda / pda_callbacks.h
1 /*****************************************************************************
2  * callbacks.h : pda plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: pda_callbacks.h,v 1.7 2003/11/09 19:49:48 jpsaman 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 <vlc/vlc.h>
27 #include <vlc/intf.h>
28
29 void ReadDirectory( GtkListStore *p_list, char *psz_dir );
30 void MediaURLOpenChanged( GtkWidget *widget, gchar *psz_url );
31 void PlaylistRebuildListStore( GtkListStore *p_list, playlist_t * p_playlist );
32
33
34 gboolean
35 onPDADeleteEvent                       (GtkWidget       *widget,
36                                         GdkEvent        *event,
37                                         gpointer         user_data);
38
39 void
40 onRewind                               (GtkButton       *button,
41                                         gpointer         user_data);
42
43 void
44 onPause                                (GtkButton       *button,
45                                         gpointer         user_data);
46
47 void
48 onPlay                                 (GtkButton       *button,
49                                         gpointer         user_data);
50
51 void
52 onStop                                 (GtkButton       *button,
53                                         gpointer         user_data);
54
55 void
56 onForward                              (GtkButton       *button,
57                                         gpointer         user_data);
58
59 void
60 onAbout                                (GtkButton       *button,
61                                         gpointer         user_data);
62
63 gboolean
64 SliderRelease                          (GtkWidget       *widget,
65                                         GdkEventButton  *event,
66                                         gpointer         user_data);
67
68 gboolean
69 SliderPress                            (GtkWidget       *widget,
70                                         GdkEventButton  *event,
71                                         gpointer         user_data);
72
73 void
74 onFileListRow                          (GtkTreeView     *treeview,
75                                         GtkTreePath     *path,
76                                         GtkTreeViewColumn *column,
77                                         gpointer         user_data);
78
79 void
80 onFileListColumns                      (GtkTreeView     *treeview,
81                                         gpointer         user_data);
82
83 gboolean
84 onFileListRowSelected                  (GtkTreeView     *treeview,
85                                         gboolean         start_editing,
86                                         gpointer         user_data);
87
88 void
89 onAddFileToPlaylist                    (GtkButton       *button,
90                                         gpointer         user_data);
91
92 void
93 onAddNetworkPlaylist                   (GtkButton       *button,
94                                         gpointer         user_data);
95
96 void
97 onAddCameraToPlaylist                  (GtkButton       *button,
98                                         gpointer         user_data);
99
100 gboolean
101 PlaylistEvent                          (GtkWidget       *widget,
102                                         GdkEvent        *event,
103                                         gpointer         user_data);
104
105 void
106 onPlaylistColumnsChanged               (GtkTreeView     *treeview,
107                                         gpointer         user_data);
108
109 gboolean
110 onPlaylistRowSelected                  (GtkTreeView     *treeview,
111                                         gboolean         start_editing,
112                                         gpointer         user_data);
113
114 void
115 onPlaylistRow                          (GtkTreeView     *treeview,
116                                         GtkTreePath     *path,
117                                         GtkTreeViewColumn *column,
118                                         gpointer         user_data);
119
120 void
121 onUpdatePlaylist                       (GtkButton       *button,
122                                         gpointer         user_data);
123
124 void
125 onDeletePlaylist                       (GtkButton       *button,
126                                         gpointer         user_data);
127
128 void
129 onClearPlaylist                        (GtkButton       *button,
130                                         gpointer         user_data);
131
132 void
133 onPreferenceSave                       (GtkButton       *button,
134                                         gpointer         user_data);
135
136 void
137 onPreferenceApply                      (GtkButton       *button,
138                                         gpointer         user_data);
139
140 void
141 onPreferenceCancel                     (GtkButton       *button,
142                                         gpointer         user_data);
143
144
145 void
146 onNetworkMRLAdd                        (GtkContainer    *container,
147                                         GtkWidget       *widget,
148                                         gpointer         user_data);
149
150 void
151 NetworkBuildMRL                        (GtkEditable     *editable,
152                                         gpointer         user_data);
153
154
155 void
156 onAddTranscodeToPlaylist               (GtkButton       *button,
157                                         gpointer         user_data);
158