/*************************************************************************** * 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 #include #include #include #include "kdevcore.h" #include "kdevproject.h" #include "kdevmainwindow.h" #include "kdevplugininfo.h" #include "kdevshellwidget.h" typedef KDevGenericFactory 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("Konsole

" "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(), TQT_SIGNAL(projectOpened()), this, TQT_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"