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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/***************************************************************************
* 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. *
***************************************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#else
#define PREFIX "/usr"
#endif
#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="tde-config --prefix";
FILE *pipe_prefix;
char prefix_result[2048];
int i;
if ((pipe_prefix = popen(prefixcommand.c_str(), "r")) == NULL)
{
m_kdePrefix = PREFIX;
}
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", "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"
|