#include <iostream>#include "kino_common.h"#include "page.h"#include "page_bttv.h"#include "displayer.h"#include "v4l.h"#include "support.h"Include dependency graph for page_bttv.cc:

Go to the source code of this file.
Functions | |
| void | on_v4l_capture_page_record_button_clicked (GtkButton *button, gpointer user_data) |
| void | on_v4l_capture_page_stop_button_clicked (GtkButton *button, gpointer user_data) |
| void | on_button_v4l_file_clicked (GtkButton *button, gpointer user_data) |
Variables | |
| KinoCommon * | common |
|
||||||||||||
|
Definition at line 56 of file page_bttv.cc. References KinoCommon::getFileToSave(), and lookup_widget(). 00058 {
00059 const char *filename = common->getFileToSave( _("Enter a File Name to Save As") );
00060 gtk_widget_grab_focus( lookup_widget( GTK_WIDGET( button ), "entry_v4l_file" ) );
00061 if ( strcmp( filename, "" ) )
00062 gtk_entry_set_text( GTK_ENTRY( lookup_widget( GTK_WIDGET( button ), "entry_v4l_file" ) ), filename );
00063 }
|
|
||||||||||||
|
Definition at line 39 of file page_bttv.cc. References KinoCommon::getPageBttv(). 00041 {
00042
00043 common->getPageBttv() ->startCapture();
00044 }
|
|
||||||||||||
|
Definition at line 49 of file page_bttv.cc. References KinoCommon::getPageBttv(). 00051 {
00052 common->getPageBttv() ->stopCapture();
00053 }
|
|
|
Definition at line 58 of file commands.cc. |
1.4.2