summaryrefslogtreecommitdiffstats
path: root/ksvg/plugin/ksvg_factory.cpp
blob: b856da64dba9e38e8a036c4a452bb7441c2dce1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
    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()
{
}