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.
101 lines
2.9 KiB
101 lines
2.9 KiB
/*
|
|
Copyright (C) 2001-2003 KSVG Team
|
|
This file is part of the KDE project
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <tdeaboutdata.h>
|
|
#include <kinstance.h>
|
|
#include <tdelocale.h>
|
|
#include <tdeglobal.h>
|
|
#include <kstandarddirs.h>
|
|
|
|
#include "ksvg_plugin.h"
|
|
#include "ksvg_factory.moc"
|
|
|
|
#include <kdebug.h>
|
|
#include <tqstringlist.h>
|
|
#include <tqregexp.h>
|
|
|
|
extern "C"
|
|
{
|
|
void *init_libksvgplugin()
|
|
{
|
|
TDEGlobal::locale()->insertCatalogue("ksvgplugin");
|
|
return new KSVGPluginFactory();
|
|
}
|
|
}
|
|
|
|
TDEInstance *KSVGPluginFactory::s_instance = 0;
|
|
TDEAboutData *KSVGPluginFactory::s_about = 0;
|
|
|
|
KSVGPluginFactory::KSVGPluginFactory(TQObject *parent, const char *name) : KParts::Factory(parent, name)
|
|
{
|
|
}
|
|
|
|
KSVGPluginFactory::~KSVGPluginFactory()
|
|
{
|
|
delete s_instance;
|
|
s_instance = 0;
|
|
delete s_about;
|
|
|
|
s_about = 0;
|
|
}
|
|
|
|
KParts::Part *KSVGPluginFactory::createPartObject(TQWidget *parentWidget, const char *wname, TQObject *parent, const char *name, const char *, const TQStringList &args)
|
|
{
|
|
// Get the width and height of the <embed>
|
|
// TODO : <object>
|
|
unsigned int width = 0, height = 0;
|
|
bool dummy;
|
|
TQRegExp r1("(WIDTH)(\\s*=\\s*\")(\\d+)(\\w*)(\")");
|
|
TQRegExp r2("(HEIGHT)(\\s*=\\s*\")(\\d+)(\\w*)(\")");
|
|
for(TQValueListConstIterator<TQString> it = args.begin(); it != args.end(); ++it)
|
|
{
|
|
if(r1.search(*it) > -1)
|
|
width = r1.cap(3).toUInt(&dummy);
|
|
if(r2.search(*it) > -1)
|
|
height = r2.cap(3).toUInt(&dummy);
|
|
}
|
|
|
|
return new KSVGPlugin(parentWidget, wname, parent, name, width, height);
|
|
}
|
|
|
|
TDEInstance *KSVGPluginFactory::instance()
|
|
{
|
|
if(!s_instance)
|
|
{
|
|
s_about = new TDEAboutData("ksvg", I18N_NOOP("KSVG"), "0.1", "KSVG\nFreedom for veKtors",TDEAboutData::License_GPL_V2,"(c) 2001-2003, The KSVG Team",0,"http://svg.kde.org");
|
|
s_about->addAuthor("Rob Buis", 0, "buis@kde.org");
|
|
s_about->addAuthor("Nikolas Zimmermann", 0, "wildfox@kde.org");
|
|
s_about->addCredit("Adrian Page", 0);
|
|
s_about->addCredit("Andreas Streichardt", 0, "mop@spaceregents.de");
|
|
s_instance = new TDEInstance(s_about);
|
|
}
|
|
|
|
return s_instance;
|
|
}
|
|
|
|
KSVGPluginBrowserExtension::KSVGPluginBrowserExtension(KSVGPlugin *parent)
|
|
: KParts::BrowserExtension(parent, "KSVGPlugin BrowserExtension")
|
|
{
|
|
}
|
|
|
|
KSVGPluginBrowserExtension::~KSVGPluginBrowserExtension()
|
|
{
|
|
}
|