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.
70 lines
2.3 KiB
70 lines
2.3 KiB
/***************************************************************************
|
|
* Copyright (C) 2003 by KDevelop Authors *
|
|
* tdevelop-devel@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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "konsoleviewpart.h"
|
|
|
|
#include <tqwhatsthis.h>
|
|
|
|
#include <kdevgenericfactory.h>
|
|
#include <kiconloader.h>
|
|
#include <tdelocale.h>
|
|
|
|
#include "kdevcore.h"
|
|
#include "kdevproject.h"
|
|
#include "kdevmainwindow.h"
|
|
#include "kdevplugininfo.h"
|
|
#include "kdevshellwidget.h"
|
|
|
|
|
|
typedef KDevGenericFactory<KonsoleViewPart> KonsoleViewFactory;
|
|
static const KDevPluginInfo data("kdevkonsoleview");
|
|
K_EXPORT_COMPONENT_FACTORY(libkdevkonsoleview, KonsoleViewFactory(data))
|
|
|
|
KonsoleViewPart::KonsoleViewPart(TQObject *parent, const char *name, const TQStringList &)
|
|
: KDevPlugin(&data, parent, name ? name : "KonsoleViewPart")
|
|
{
|
|
setInstance( KonsoleViewFactory::instance() );
|
|
|
|
m_widget = new KDevShellWidget( 0, "konsole widget" );
|
|
|
|
TQWhatsThis::add(m_widget, i18n("<b>Konsole</b><p>"
|
|
"This window contains an embedded konsole window. It will try to follow you when "
|
|
"you navigate in the source directories")
|
|
);
|
|
|
|
m_widget->setIcon( SmallIcon("konsole") );
|
|
m_widget->setCaption(i18n("Konsole"));
|
|
|
|
m_widget->activate();
|
|
m_widget->setAutoReactivateOnClose( true );
|
|
|
|
mainWindow()->embedOutputView(m_widget, i18n("Konsole"), i18n("Embedded console window"));
|
|
|
|
connect(core(), TQ_SIGNAL(projectOpened()), this, TQ_SLOT(projectOpened()));
|
|
}
|
|
|
|
|
|
KonsoleViewPart::~KonsoleViewPart()
|
|
{
|
|
if ( m_widget )
|
|
mainWindow()->removeView( m_widget );
|
|
delete m_widget;
|
|
}
|
|
|
|
void KonsoleViewPart::projectOpened()
|
|
{
|
|
TQString cd_projectdir = TQString("cd ") + project()->projectDirectory() + "\n";
|
|
m_widget->sendInput( cd_projectdir );
|
|
}
|
|
|
|
|
|
#include "konsoleviewpart.moc"
|