/*************************************************************************** * 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 "tdevcore.h" #include "tdevproject.h" #include "tdevmainwindow.h" #include "tdevplugininfo.h" #include "tdevshellwidget.h" typedef TDevGenericFactory KonsoleViewFactory; static const TDevPluginInfo data("tdevkonsoleview"); K_EXPORT_COMPONENT_FACTORY(libtdevkonsoleview, KonsoleViewFactory(data)) KonsoleViewPart::KonsoleViewPart(TQObject *parent, const char *name, const TQStringList &) : TDevPlugin(&data, parent, name ? name : "KonsoleViewPart") { setInstance( KonsoleViewFactory::instance() ); m_widget = new TDevShellWidget( 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"