1 /*
2  * GStreamer
3  * Copyright (C) 2008 Nokia Corporation <multimedia@maemo.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20 /*
21  * This is a demo application to test the camerabin element.
22  * If you have question don't hesitate in contact me edgard.lima@gmail.com
23  */
24 
25 #ifndef __GST_CAMERA_BIN_H__
26 #define __GST_CAMERA_BIN_H__
27 
28 #include <gtk/gtk.h>
29 
30 void
31 on_mainWindow_delete_event (GtkWidget * widget, GdkEvent * event, gpointer data);
32 
33 void
34 on_captureButton_clicked (GtkButton * button, gpointer user_data);
35 
36 void
37 on_stopCaptureButton_clicked (GtkButton * button, gpointer user_data);
38 
39 void
40 on_imageRButton_toggled (GtkToggleButton * button, gpointer user_data);
41 
42 void
43 on_videoRButton_toggled (GtkToggleButton * button, gpointer user_data);
44 
45 void
46 on_viewfinderArea_realize (GtkWidget * widget, gpointer data);
47 
48 void
49 on_formatComboBox_changed (GtkWidget * widget, gpointer data);
50 
51 void
52 on_zoomScale_value_changed (GtkWidget * widget, gpointer data);
53 
54 #endif /* __GST_CAMERA_BIN_H__ */
55