|
|
|
/***************************************************************************
|
|
|
|
* 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 <tqwhatsthis.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(TQObject *tqparent, const char *name, const TQStringList &)
|
|
|
|
: KDevPlugin(&data, tqparent, name ? name : "TextToolsPart")
|
|
|
|
{
|
|
|
|
setInstance(TextToolsFactory::instance());
|
|
|
|
// setXMLFile("kdevfileview.rc");
|
|
|
|
|
|
|
|
m_widget = 0;
|
|
|
|
|
|
|
|
connect( partController(), TQT_SIGNAL(activePartChanged(KParts::Part*)),
|
|
|
|
this, TQT_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"));
|
|
|
|
TQWhatsThis::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;
|
|
|
|
TQString 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"
|