Ejemplo n.º 1
0
int VDeviceTextBox::handle_event() 
{ 
// Suggestions
	calculate_suggestions(0);

	strcpy(output, get_text()); 
}
Ejemplo n.º 2
0
int BatchRenderEDLPath::handle_event()
{
// Suggestions
	calculate_suggestions(thread->file_entries);

	strcpy(thread->get_current_edl(), get_text());
	thread->gui->create_list(1);
	return 1;
}
Ejemplo n.º 3
0
int RecordPath::handle_event()
{
// Suggestions
	calculate_suggestions(file_entries);


	strcpy(record->get_editing_batch()->assets.values[0]->path, get_text());
	record->get_editing_batch()->calculate_news();
	record->record_gui->update_batches();
	return 1;
}