1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/*
$Id: shellOutputDlg.cpp,v 1.7 2001/02/23 18:46:10 mjarrett Exp $
ark -- archiver for the KDE project
Copyright (C)
1997-1999: Rob Palmbos palm9744@kettering.edu
1999: Francois-Xavier Duranceau duranceau@kde.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.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
// Qt includes
#include <qpushbutton.h>
#include <qmultilineedit.h>
#include <qgrid.h>
#include <qlayout.h>
#include <qdialog.h>
#include <kdebug.h>
#include <klocale.h>
#include <kglobal.h>
#include <kglobalsettings.h>
#include <kcharsets.h>
// ark includes
#include "shellOutputDlg.h"
#include "shellOutputDlg.moc"
#include "arksettings.h"
ShellOutputDlg::ShellOutputDlg( ArkSettings *_data, QWidget *_parent,
const char *_name )
: QDialog( _parent, _name, true )
{
setCaption( i18n("Shell Output") );
QGridLayout *grid1 = new QGridLayout(this,10,5,15,7);
QMultiLineEdit *l1 = new QMultiLineEdit( this );
l1->setReadOnly( true );
grid1->addMultiCellWidget(l1,0,8,0,4);
QFont my_font = KGlobalSettings::generalFont();
KGlobal::charsets()->setQFont(my_font, KGlobal::locale()->charset());
l1->setFont( my_font );
l1->setText( *(_data->getLastShellOutput()) );
l1->setCursorPosition(l1->numLines(), 0);
QPushButton *close = new QPushButton( i18n("Close"), this );
grid1->addWidget(close,9,4);
connect( close, SIGNAL( clicked() ), SLOT( accept() ) );
close->setFocus();
resize(520, 380);
}
|