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.
95 lines
2.8 KiB
95 lines
2.8 KiB
15 years ago
|
/*
|
||
|
* This file is part of the KDE libraries
|
||
13 years ago
|
* Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
|
||
15 years ago
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Library General Public
|
||
|
* License version 2 as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This library 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
|
||
|
* Library General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Library General Public License
|
||
|
* along with this library; see the file COPYING.LIB. If not, write to
|
||
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
* Boston, MA 02110-1301, USA.
|
||
|
**/
|
||
|
|
||
|
#include "kprintprocess.h"
|
||
|
#include <kapplication.h>
|
||
|
#include <klocale.h>
|
||
14 years ago
|
#include <tqfile.h>
|
||
15 years ago
|
|
||
|
KPrintProcess::KPrintProcess()
|
||
|
: KShellProcess()
|
||
|
{
|
||
|
// redirect everything to a single buffer
|
||
14 years ago
|
connect(this,TQT_SIGNAL(receivedStdout(KProcess*,char*,int)),TQT_SLOT(slotReceivedStderr(KProcess*,char*,int)));
|
||
|
connect(this,TQT_SIGNAL(receivedStderr(KProcess*,char*,int)),TQT_SLOT(slotReceivedStderr(KProcess*,char*,int)));
|
||
|
connect( this, TQT_SIGNAL( processExited( KProcess* ) ), TQT_SLOT( slotExited( KProcess* ) ) );
|
||
15 years ago
|
m_state = None;
|
||
|
}
|
||
|
|
||
|
KPrintProcess::~KPrintProcess()
|
||
|
{
|
||
|
if ( !m_tempoutput.isEmpty() )
|
||
14 years ago
|
TQFile::remove( m_tempoutput );
|
||
15 years ago
|
if ( m_tempfiles.size() > 0 )
|
||
14 years ago
|
for ( TQStringList::ConstIterator it=m_tempfiles.begin(); it!=m_tempfiles.end(); ++it )
|
||
|
TQFile::remove( *it );
|
||
15 years ago
|
}
|
||
|
|
||
14 years ago
|
TQString KPrintProcess::errorMessage() const
|
||
15 years ago
|
{
|
||
|
return m_buffer;
|
||
|
}
|
||
|
|
||
|
bool KPrintProcess::print()
|
||
|
{
|
||
14 years ago
|
m_buffer = TQString();
|
||
15 years ago
|
m_state = Printing;
|
||
|
return start(NotifyOnExit,All);
|
||
|
}
|
||
|
|
||
|
void KPrintProcess::slotReceivedStderr(KProcess *proc, char *buf, int len)
|
||
|
{
|
||
|
if (proc == this)
|
||
|
{
|
||
14 years ago
|
TQCString str = TQCString(buf,len).stripWhiteSpace();
|
||
15 years ago
|
m_buffer.append(str.append("\n"));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void KPrintProcess::slotExited( KProcess* )
|
||
|
{
|
||
|
switch ( m_state )
|
||
|
{
|
||
|
case Printing:
|
||
|
if ( !m_output.isEmpty() )
|
||
|
{
|
||
|
clearArguments();
|
||
|
*this << "kfmclient" << "copy" << m_tempoutput << m_output;
|
||
|
m_state = Finishing;
|
||
|
m_buffer = i18n( "File transfer failed." );
|
||
|
if ( start( NotifyOnExit ) )
|
||
|
return;
|
||
|
}
|
||
|
case Finishing:
|
||
|
if ( !normalExit() )
|
||
|
emit printError( this, i18n( "Abnormal process termination (<b>%1</b>)." ).arg( m_command ) );
|
||
|
else if ( exitStatus() != 0 )
|
||
|
emit printError( this, i18n( "<b>%1</b>: execution failed with message:<p>%2</p>" ).arg( m_command ).arg( m_buffer ) );
|
||
|
else
|
||
|
emit printTerminated( this );
|
||
|
break;
|
||
|
default:
|
||
|
emit printError( this, "Internal error, printing terminated in unexpected state. "
|
||
|
"Report bug at <a href=\"http://bugs.kde.org\">http://bugs.kde.org</a>." );
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#include "kprintprocess.moc"
|