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.
kipi-plugins/kipi-plugins/mpegencoder/kshowdebuggingoutput.cpp

83 lines
2.7 KiB

//////////////////////////////////////////////////////////////////////////////
//
// KSHOWDEBUGGINGOUTPUT.CPP
//
// Copyright (C) 2003 Gilles CAULIER <caulier dot gilles at gmail dot com>
//
// 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; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA.
//
//////////////////////////////////////////////////////////////////////////////
// Local includes.
#include "kshowdebuggingoutput.h"
namespace KIPIMPEGEncoderPlugin
{
/////////////////////////////////////////////////////////////////////////////////////////////
KShowDebuggingOutput::KShowDebuggingOutput(TQString Messages, TQString Header, TQString Foot, TQWidget* parent )
: KDialog( parent, "debugViewDialog", true )
{
setCaption( i18n("Debugging Output") );
okButton = new TQPushButton( i18n("&OK"), this );
ClipBoardCopy = new TQPushButton( i18n("Copy to Clip&board"), this );
debugView = new TQTextView( this );
grid = new TQGridLayout( this );
grid->addMultiCellWidget( debugView, 0, 0, 0, 2 );
grid->addWidget( okButton, 1, 1 );
grid->addWidget( ClipBoardCopy, 1, 2 );
grid->setSpacing( spacingHint() );
grid->setMargin( marginHint() );
grid->setColStretch( 0, 1 );
connect( okButton, TQ_SIGNAL(pressed()), this, TQ_SLOT(accept()) );
connect( ClipBoardCopy, TQ_SIGNAL(pressed()), this, TQ_SLOT(slotCopyToCliboard()) );
// add the debugging output
debugView->append( Header );
debugView->append( "-----------------------------------------------\n" );
debugView->append( Messages );
debugView->append( "-----------------------------------------------\n" );
debugView->append( Foot );
resize( 600, 300 );
}
/////////////////////////////////////////////////////////////////////////////////////////////
KShowDebuggingOutput::~KShowDebuggingOutput()
{
}
/////////////////////////////////////////////////////////////////////////////////////////////
void KShowDebuggingOutput::slotCopyToCliboard( void )
{
debugView->selectAll(TRUE);
debugView->copy();
debugView->selectAll(FALSE);
}
} // NameSpace KIPIMPEGEncoderPlugin
#include "kshowdebuggingoutput.moc"