Commit 6a4c2d79 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Use native dialog for saving VLM files.

parent afce97e9
......@@ -265,22 +265,10 @@ void VLMDialog::addVLMItem()
/* TODO : VOD are not exported to the file */
bool VLMDialog::exportVLMConf()
{
QFileDialog* qfd = new QFileDialog( this, qtr( "Save VLM configuration as..." ),
QString saveVLMConfFileName = QFileDialog::getSaveFileName( this,
qtr( "Save VLM configuration as..." ),
qfu( config_GetHomeDir() ),
qtr( "VLM conf (*.vlm);;All (*)" ) );
qfd->setFileMode( QFileDialog::AnyFile );
qfd->setAcceptMode( QFileDialog::AcceptSave );
qfd->setConfirmOverwrite( true );
bool exported = false;
if( qfd->exec() == QDialog::Accepted )
{
QString saveVLMConfFileName = qfd->selectedFiles().first();
QString filter = qfd->selectedFilter();
// If *.vlm is selected, add .vlm at the end if needed
if( filter.contains( "VLM" ) && !saveVLMConfFileName.contains( ".vlm" ) )
saveVLMConfFileName.append( ".vlm" );
if( !saveVLMConfFileName.isEmpty() )
{
......@@ -288,12 +276,10 @@ bool VLMDialog::exportVLMConf()
QString command = "save \"" + saveVLMConfFileName + "\"";
vlm_ExecuteCommand( p_vlm , qtu( command ) , &message );
vlm_MessageDelete( message );
exported = true;
}
return true;
}
delete qfd;
return exported;
return false;
}
void VLMDialog::mediasPopulator()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment