/* * export_project_dialog.cpp - implementation of dialog for exporting project * * Copyright (c) 2004-2009 Tobias Doerffel * * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program (see COPYING); if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA. * */ #include #include #include "export_project_dialog.h" #include "engine.h" #include "MainWindow.h" #include "ProjectRenderer.h" exportProjectDialog::exportProjectDialog( const QString & _file_name, QWidget * _parent ) : QDialog( _parent ), Ui::ExportProjectDialog(), m_fileName( _file_name ), m_renderer( NULL ) { setupUi( this ); setWindowTitle( tr( "Export project to %1" ).arg( QFileInfo( _file_name ).fileName() ) ); // get the extension of the chosen file QStringList parts = _file_name.split( '.' ); QString fileExt; if( parts.size() > 0 ) { fileExt = "." + parts[parts.size()-1]; } int cbIndex = 0; for( int i = 0; i < ProjectRenderer::NumFileFormats; ++i ) { if( __fileEncodeDevices[i].m_getDevInst != NULL ) { // get the extension of this format QString renderExt = __fileEncodeDevices[i].m_extension; // add to combo box fileFormatCB->addItem( ProjectRenderer::tr( __fileEncodeDevices[i].m_description ) ); // if this is our extension, select it if( QString::compare( renderExt, fileExt, Qt::CaseInsensitive ) == 0 ) { fileFormatCB->setCurrentIndex( cbIndex ); } cbIndex++; } } connect( startButton, SIGNAL( clicked() ), this, SLOT( startBtnClicked() ) ); } exportProjectDialog::~exportProjectDialog() { delete m_renderer; } void exportProjectDialog::reject() { if( m_renderer == NULL ) { accept(); } else { m_renderer->abortProcessing(); } } void exportProjectDialog::closeEvent( QCloseEvent * _ce ) { if( m_renderer != NULL && m_renderer->isRunning() ) { m_renderer->abortProcessing(); } QDialog::closeEvent( _ce ); } void exportProjectDialog::startBtnClicked() { ProjectRenderer::ExportFileFormats ft = ProjectRenderer::NumFileFormats; for( int i = 0; i < ProjectRenderer::NumFileFormats; ++i ) { if( fileFormatCB->currentText() == ProjectRenderer::tr( __fileEncodeDevices[i].m_description ) ) { ft = __fileEncodeDevices[i].m_fileFormat; break; } } if( ft == ProjectRenderer::NumFileFormats ) { QMessageBox::information( this, tr( "Error" ), tr( "Error while determining file-encoder device. " "Please try to choose a different output " "format." ) ); reject(); return; } startButton->setEnabled( false ); progressBar->setEnabled( true ); updateTitleBar( 0 ); mixer::qualitySettings qs = mixer::qualitySettings( static_cast( interpolationCB->currentIndex() ), static_cast( oversamplingCB->currentIndex() ), sampleExactControllersCB->isChecked(), aliasFreeOscillatorsCB->isChecked() ); ProjectRenderer::OutputSettings os = ProjectRenderer::OutputSettings( samplerateCB->currentText().section( " ", 0, 0 ).toUInt(), false, bitrateCB->currentText().section( " ", 0, 0 ).toUInt(), static_cast( depthCB->currentIndex() ) ); m_renderer = new ProjectRenderer( qs, os, ft, m_fileName ); if( m_renderer->isReady() ) { connect( m_renderer, SIGNAL( progressChanged( int ) ), progressBar, SLOT( setValue( int ) ) ); connect( m_renderer, SIGNAL( progressChanged( int ) ), this, SLOT( updateTitleBar( int ) ) ); connect( m_renderer, SIGNAL( finished() ), this, SLOT( accept() ) ); connect( m_renderer, SIGNAL( finished() ), engine::mainWindow(), SLOT( resetWindowTitle() ) ); m_renderer->startProcessing(); } else { accept(); } } void exportProjectDialog::updateTitleBar( int _prog ) { engine::mainWindow()->setWindowTitle( tr( "Rendering: %1%" ).arg( _prog ) ); } #include "moc_export_project_dialog.cxx" /* vim: set tw=0 noexpandtab: */