You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k3b/libk3b/projects/movixdvd/k3bmovixdvdjob.cpp

132 lines
3.7 KiB

/*
*
* $Id: k3bmovixdvdjob.cpp 619556 2007-01-03 17:38:12Z trueg $
* Copyright (C) 2003 Sebastian Trueg <trueg@k3b.org>
*
* This file is part of the K3b project.
* Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
*
* 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.
* See the file "COPYING" for the exact licensing terms.
*/
#include "k3bmovixdvdjob.h"
#include "k3bmovixdvddoc.h"
#include "k3bmovixfileitem.h"
#include "k3bmovixdocpreparer.h"
#include <k3bcore.h>
#include <k3bdvdjob.h>
#include <k3bdevice.h>
#include <klocale.h>
#include <kdebug.h>
K3bMovixDvdJob::K3bMovixDvdJob( K3bMovixDvdDoc* doc, K3bJobHandler* jh, TQObject* parent )
: K3bBurnJob( jh, parent ),
m_doc(doc)
{
m_dvdJob = new K3bDvdJob( doc, this, this );
m_movixDocPreparer = new K3bMovixDocPreparer( doc, this, this );
// pipe signals
connect( m_dvdJob, TQT_SIGNAL(percent(int)), this, TQT_SIGNAL(percent(int)) );
connect( m_dvdJob, TQT_SIGNAL(subPercent(int)), this, TQT_SIGNAL(subPercent(int)) );
connect( m_dvdJob, TQT_SIGNAL(processedSubSize(int, int)), this, TQT_SIGNAL(processedSubSize(int, int)) );
connect( m_dvdJob, TQT_SIGNAL(processedSize(int, int)), this, TQT_SIGNAL(processedSize(int, int)) );
connect( m_dvdJob, TQT_SIGNAL(bufferStatus(int)), this, TQT_SIGNAL(bufferStatus(int)) );
connect( m_dvdJob, TQT_SIGNAL(writeSpeed(int, int)), this, TQT_SIGNAL(writeSpeed(int, int)) );
connect( m_dvdJob, TQT_SIGNAL(newTask(const TQString&)), this, TQT_SIGNAL(newTask(const TQString&)) );
connect( m_dvdJob, TQT_SIGNAL(newSubTask(const TQString&)), this, TQT_SIGNAL(newSubTask(const TQString&)) );
connect( m_dvdJob, TQT_SIGNAL(debuggingOutput(const TQString&, const TQString&)),
this, TQT_SIGNAL(debuggingOutput(const TQString&, const TQString&)) );
connect( m_dvdJob, TQT_SIGNAL(infoMessage(const TQString&, int)),
this, TQT_SIGNAL(infoMessage(const TQString&, int)) );
connect( m_dvdJob, TQT_SIGNAL(burning(bool)), this, TQT_SIGNAL(burning(bool)) );
// we need to clean up here
connect( m_dvdJob, TQT_SIGNAL(finished(bool)), this, TQT_SLOT(slotDvdJobFinished(bool)) );
connect( m_movixDocPreparer, TQT_SIGNAL(infoMessage(const TQString&, int)),
this, TQT_SIGNAL(infoMessage(const TQString&, int)) );
}
K3bMovixDvdJob::~K3bMovixDvdJob()
{
}
K3bDevice::Device* K3bMovixDvdJob::writer() const
{
return m_dvdJob->writer();
}
K3bDoc* K3bMovixDvdJob::doc() const
{
return m_doc;
}
void K3bMovixDvdJob::start()
{
jobStarted();
m_canceled = false;
m_dvdJob->setWritingApp( writingApp() );
if( m_movixDocPreparer->createMovixStructures() ) {
m_dvdJob->start();
}
else {
m_movixDocPreparer->removeMovixStructures();
jobFinished(false);
}
}
void K3bMovixDvdJob::cancel()
{
m_canceled = true;
m_dvdJob->cancel();
}
void K3bMovixDvdJob::slotDvdJobFinished( bool success )
{
m_movixDocPreparer->removeMovixStructures();
if( m_canceled || m_dvdJob->hasBeenCanceled() )
emit canceled();
jobFinished( success );
}
TQString K3bMovixDvdJob::jobDescription() const
{
if( m_doc->isoOptions().volumeID().isEmpty() )
return i18n("Writing eMovix DVD");
else
return i18n("Writing eMovix DVD (%1)").tqarg(m_doc->isoOptions().volumeID());
}
TQString K3bMovixDvdJob::jobDetails() const
{
return ( i18n("1 file (%1) and about 8 MB eMovix data",
"%n files (%1) and about 8 MB eMovix data",
m_doc->movixFileItems().count()).tqarg(KIO::convertSize(m_doc->size()))
+ ( m_doc->copies() > 1
? i18n(" - %n copy", " - %n copies", m_doc->copies())
: TQString() ) );
}
#include "k3bmovixdvdjob.moc"