#include <vector>#include <iostream>#include <string>#include <gtk/gtk.h>#include <stdio.h>#include <stdlib.h>#include "kino_av_pipe.h"#include "page_export_audio.h"#include "preferences.h"#include "kino_common.h"#include "frame.h"#include "page_editor.h"#include "message.h"Include dependency graph for page_export_audio.cc:

Go to the source code of this file.
Functions | |
| void | on_button_export_audio_file_clicked (GtkButton *button, gpointer user_data) |
|
||||||||||||
|
Definition at line 250 of file page_export_audio.cc. References common, KinoCommon::getFileToSave(), and lookup_widget(). 00252 {
00253 const char *filename = common->getFileToSave( _("Enter a File Name to Save As") );
00254 gtk_widget_grab_focus( lookup_widget( GTK_WIDGET( button ), "entry_export_audio_file" ) );
00255 if ( strcmp( filename, "" ) )
00256 gtk_entry_set_text( GTK_ENTRY( lookup_widget( GTK_WIDGET( button ), "entry_export_audio_file" ) ), filename );
00257 }
|
1.4.2