diff options
Diffstat (limited to 'parts/texttools/texttoolspart.cpp')
-rw-r--r-- | parts/texttools/texttoolspart.cpp | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/parts/texttools/texttoolspart.cpp b/parts/texttools/texttoolspart.cpp new file mode 100644 index 00000000..7eb439da --- /dev/null +++ b/parts/texttools/texttoolspart.cpp @@ -0,0 +1,99 @@ +/*************************************************************************** + * Copyright (C) 2002 by Bernd Gehrmann * + * bernd@kdevelop.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 "texttoolspart.h" + +#include <qwhatsthis.h> +#include <kdebug.h> +#include <klocale.h> +#include <kdevgenericfactory.h> +#include <kdevplugininfo.h> +#include <ktexteditor/editinterface.h> + +#include "kdevpartcontroller.h" +#include "kdevmainwindow.h" + +#include "texttoolswidget.h" + + +typedef KDevGenericFactory<TextToolsPart> TextToolsFactory; +static const KDevPluginInfo data("kdevtexttools"); +K_EXPORT_COMPONENT_FACTORY( libkdevtexttools, TextToolsFactory( data ) ) + +TextToolsPart::TextToolsPart(QObject *parent, const char *name, const QStringList &) + : KDevPlugin(&data, parent, name ? name : "TextToolsPart") +{ + setInstance(TextToolsFactory::instance()); + // setXMLFile("kdevfileview.rc"); + + m_widget = 0; + + connect( partController(), SIGNAL(activePartChanged(KParts::Part*)), + this, SLOT(activePartChanged(KParts::Part*)) ); +} + + +TextToolsPart::~TextToolsPart() +{ + if (m_widget) + mainWindow()->removeView(m_widget); + delete m_widget; +} + + +void TextToolsPart::createWidget() +{ + if (m_widget) + { +// mainWindow()->embedSelectView(m_widget, i18n("Text Structure"), i18n("Text structure")); + return; + } + + m_widget = new TextToolsWidget(this); + m_widget->setCaption(i18n("Text Structure")); + QWhatsThis::add(m_widget, i18n("<b>Text Structure</b><p>" + "This browser shows the structure of the text.")); + mainWindow()->embedSelectView(m_widget, i18n("Text Structure"), i18n("Text structure")); +} + + +void TextToolsPart::activePartChanged(KParts::Part *part) +{ + if (m_widget) + m_widget->stop(); + + if (!part) + return; + KParts::ReadWritePart *rwpart = dynamic_cast<KParts::ReadWritePart*>(part); + if (!rwpart) + return; + QString url = rwpart->url().url(); + + if (url.endsWith(".html")) { + kdDebug(9030) << "set mode html" << endl; + createWidget(); + m_widget->setMode(TextToolsWidget::HTML, rwpart); + } else if (url.endsWith(".docbook")) { + kdDebug(9030) << "set mode Docbook" << endl; + createWidget(); + m_widget->setMode(TextToolsWidget::Docbook, rwpart); + } else if (url.endsWith(".tex")) { + kdDebug(9030) << "set mode LaTeX" << endl; + createWidget(); + m_widget->setMode(TextToolsWidget::LaTeX, rwpart); + } else if (m_widget) { +// kdDebug(9030) << "hide output view" << endl; +// mainWindow()->removeView(m_widget); + m_widget->clear(); + } +} + +#include "texttoolspart.moc" |