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.
119 lines
3.7 KiB
119 lines
3.7 KiB
/***************************************************************************
|
|
* Copyright (C) 2007 by Fabian Wuertz *
|
|
* xadras@sidux.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., *
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include <kgenericfactory.h>
|
|
#include <kpushbutton.h>
|
|
#include <tqlistbox.h>
|
|
#include <tqlineedit.h>
|
|
#include <tqcombobox.h>
|
|
#include <tqwidgetstack.h>
|
|
#include <tqlistview.h>
|
|
#include <tqtextedit.h>
|
|
#include <tqstring.h>
|
|
|
|
#include <tqlabel.h>
|
|
#include <tqpushbutton.h>
|
|
|
|
#include "console.h"
|
|
|
|
#include <string>
|
|
#include <stdio.h>
|
|
|
|
using namespace std;
|
|
|
|
console::console(TQWidget *parent, const TQStrList &run, const char *name, const TQStringList &)
|
|
: Widget(parent,name)
|
|
{
|
|
|
|
// Get KDE prefix
|
|
// FIXME Is there a better way to do this???
|
|
string prefixcommand="kde-config --prefix";
|
|
FILE *pipe_prefix;
|
|
char prefix_result[2048];
|
|
int i;
|
|
|
|
if ((pipe_prefix = popen(prefixcommand.c_str(), "r")) == NULL)
|
|
{
|
|
m_kdePrefix = "/usr";
|
|
}
|
|
else {
|
|
fgets(prefix_result, 2048, pipe_prefix);
|
|
pclose(pipe_prefix);
|
|
for (i=0;i<2048;i++) {
|
|
if (prefix_result[i] == 0) {
|
|
prefix_result[i-1]=0;
|
|
i=2048;
|
|
}
|
|
}
|
|
m_kdePrefix = TQString(prefix_result);
|
|
}
|
|
|
|
//label->setText( name );
|
|
loadKonsole();
|
|
konsoleFrame->installEventFilter( this );
|
|
|
|
// run command
|
|
terminal()->startProgram( m_kdePrefix + "/share/kdpkg/sh/kdpkg-sh", run );
|
|
connect( konsole, TQT_SIGNAL(destroyed()), this, TQT_SLOT( finish() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
//--- load console -------------------------------------------------------------
|
|
//------------------------------------------------------------------------------
|
|
|
|
void console::loadKonsole()
|
|
{
|
|
KLibFactory* factory = KLibLoader::self()->factory( "libsanekonsolepart" );
|
|
if (!factory)
|
|
factory = KLibLoader::self()->factory( "libkonsolepart" );
|
|
konsole = static_cast<KParts::Part*>( factory->create( TQT_TQOBJECT(konsoleFrame), "konsolepart", TQOBJECT_OBJECT_NAME_STRING, "KParts::ReadOnlyPart" ) );
|
|
terminal()->setAutoDestroy( true );
|
|
terminal()->setAutoStartShell( false );
|
|
konsole->widget()->setGeometry(0, 0, konsoleFrame->width(), konsoleFrame->height());
|
|
}
|
|
|
|
bool console::eventFilter( TQObject *o, TQEvent *e )
|
|
{
|
|
// This function makes the console emulator expanding
|
|
if ( e->type() == TQEvent::Resize )
|
|
{
|
|
TQResizeEvent *re = dynamic_cast< TQResizeEvent * >( e );
|
|
if ( !re ) return false;
|
|
konsole->widget()->setGeometry( 0, 0, re->size().width(), re->size().height() );
|
|
}
|
|
return false;
|
|
};
|
|
|
|
void console::finish()
|
|
{
|
|
emit finished(true);
|
|
}
|
|
|
|
|
|
|
|
#include "console.moc"
|
|
|