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.
118 lines
3.9 KiB
118 lines
3.9 KiB
/***************************************************************************
|
|
plugin_katetextfilter.cpp - description
|
|
-------------------
|
|
begin : FRE Feb 23 2001
|
|
copyright : (C) 2001 by Joseph Wenninger
|
|
email : jowenn@bigfoot.com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 "plugin_kateopenheader.h"
|
|
#include "plugin_kateopenheader.moc"
|
|
|
|
#include <tqfileinfo.h>
|
|
#include <kgenericfactory.h>
|
|
#include <tdeaction.h>
|
|
#include <tdelocale.h>
|
|
#include <kdebug.h>
|
|
#include <kurl.h>
|
|
#include <tdeio/netaccess.h>
|
|
|
|
class PluginView : public KXMLGUIClient
|
|
{
|
|
friend class PluginKateOpenHeader;
|
|
|
|
public:
|
|
Kate::MainWindow *win;
|
|
};
|
|
|
|
K_EXPORT_COMPONENT_FACTORY( kateopenheaderplugin, KGenericFactory<PluginKateOpenHeader>( "kateopenheader" ) )
|
|
|
|
PluginKateOpenHeader::PluginKateOpenHeader( TQObject* parent, const char* name, const TQStringList& )
|
|
: Kate::Plugin ( (Kate::Application *)parent, name )
|
|
{
|
|
}
|
|
|
|
PluginKateOpenHeader::~PluginKateOpenHeader()
|
|
{
|
|
}
|
|
|
|
void PluginKateOpenHeader::addView(Kate::MainWindow *win)
|
|
{
|
|
// TODO: doesn't this have to be deleted?
|
|
PluginView *view = new PluginView ();
|
|
|
|
(void) new TDEAction( i18n("Open .h/.cpp/.c"), Key_F12,
|
|
this, TQT_SLOT( slotOpenHeader() ),
|
|
view->actionCollection(), "file_openheader" );
|
|
|
|
view->setInstance (new TDEInstance("kate"));
|
|
view->setXMLFile( "plugins/kateopenheader/ui.rc" );
|
|
win->guiFactory()->addClient (view);
|
|
view->win = win;
|
|
|
|
m_views.append (view);
|
|
}
|
|
|
|
void PluginKateOpenHeader::removeView(Kate::MainWindow *win)
|
|
{
|
|
for (uint z=0; z < m_views.count(); z++)
|
|
if (m_views.at(z)->win == win)
|
|
{
|
|
PluginView *view = m_views.at(z);
|
|
m_views.remove (view);
|
|
win->guiFactory()->removeClient (view);
|
|
delete view;
|
|
}
|
|
}
|
|
|
|
void PluginKateOpenHeader::slotOpenHeader ()
|
|
{
|
|
if (!application()->activeMainWindow())
|
|
return;
|
|
|
|
Kate::View * kv (application()->activeMainWindow()->viewManager()->activeView());
|
|
if (!kv) return;
|
|
|
|
KURL url=kv->document()->url();
|
|
if ((!url.isValid()) || (url.isEmpty())) return;
|
|
|
|
TQFileInfo info( url.path() );
|
|
TQString extension = info.extension().lower();
|
|
|
|
TQStringList headers( TQStringList() << "h" << "H" << "hh" << "hpp" );
|
|
TQStringList sources( TQStringList() << "c" << "cpp" << "cc" << "cp" << "cxx" );
|
|
|
|
if( sources.find( extension ) != sources.end() ) {
|
|
tryOpen( url, headers );
|
|
} else if ( headers.find( extension ) != headers.end() ) {
|
|
tryOpen( url, sources );
|
|
}
|
|
}
|
|
|
|
void PluginKateOpenHeader::tryOpen( const KURL& url, const TQStringList& extensions )
|
|
{
|
|
if (!application()->activeMainWindow())
|
|
return;
|
|
|
|
kdDebug() << "Trying to open " << url.prettyURL() << " with extensions " << extensions.join(" ") << endl;
|
|
TQString basename = TQFileInfo( url.path() ).baseName();
|
|
KURL newURL( url );
|
|
for( TQStringList::ConstIterator it = extensions.begin(); it != extensions.end(); ++it ) {
|
|
newURL.setFileName( basename + "." + *it );
|
|
if( TDEIO::NetAccess::exists( newURL ) )
|
|
application()->activeMainWindow()->viewManager()->openURL( newURL );
|
|
newURL.setFileName( basename + "." + (*it).upper() );
|
|
if( TDEIO::NetAccess::exists( newURL ) )
|
|
application()->activeMainWindow()->viewManager()->openURL( newURL );
|
|
}
|
|
}
|