Renaming of files in preparation for code style tools.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/27/head
Michele Calgaro 3 years ago
parent db124e3167
commit 14d0fbe96c
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -6,7 +6,7 @@ METASOURCES = AUTO
messages: rc.cpp
$(EXTRACTRC) `find . -name "*.rc" -o -name "*.ui"` >> rc.cpp
$(XGETTEXT) `find . -name "*.cpp" -o -name "*.cc" -o -name "*.h"` -o $(podir)/kpdf.pot
$(XGETTEXT) `find . -name "*.cpp" -o -name "*.h"` -o $(podir)/kpdf.pot
KDE_ICON = kpdf

@ -46,7 +46,7 @@ More items (first items will enter 'In progress list' first):
-> take care of TODOs in code
-> ADD: click over image allows "save image" [60% done (activerect of type image)]
-> export all text in plain_text/html
-> extract(export?) images (have a look at ImageOutputDev.cc and pdfimages.cc from xpdf (not in our xpdf sources))
-> extract(export?) images (have a look at ImageOutputDev.cpp and pdfimages.cpp from xpdf (not in our xpdf sources))
-> text selection in wordprocessor style (very hard)
-> zoom: fit text (with configurable margin)
-> bookview: 3d opengl widget for viewing the document as a real book (turning pages, etc..)

@ -778,7 +778,7 @@ void PDFGenerator::scanFont(GfxFont *font, TDEListView *list, Ref **fonts, int &
TQString PDFGenerator::getDocumentInfo( const TQString & data, bool canReturnNull ) const
// note: MUTEX is LOCKED while calling this
{
// [Albert] Code adapted from pdfinfo.cc on xpdf
// [Albert] Code adapted from pdfinfo.cpp on xpdf
Object info;
if ( !pdfdoc )
return canReturnNull ? TQString() : i18n( "Unknown" );
@ -805,7 +805,7 @@ TQString PDFGenerator::getDocumentInfo( const TQString & data, bool canReturnNul
TQString PDFGenerator::getDocumentDate( const TQString & data ) const
// note: MUTEX is LOCKED while calling this
{
// [Albert] Code adapted from pdfinfo.cc on xpdf
// [Albert] Code adapted from pdfinfo.cpp on xpdf
if ( !pdfdoc )
return i18n( "Unknown Date" );

@ -2,7 +2,7 @@
* Copyright (C) 2004 by Enrico Ros <eros.kde@email.it> *
* Copyright (C) 2004-2006 by Albert Astals Cid <tsdgeos@terra.es> *
* *
* With portions of code from kpdf/kpdf_pagewidget.cc by: *
* With portions of code from kpdf/kpdf_pagewidget.cpp by: *
* Copyright (C) 2002 by Wilco Greven <greven@kde.org> *
* Copyright (C) 2003 by Christophe Devriese *
* <Christophe.Devriese@student.kuleuven.ac.be> *

@ -21,6 +21,6 @@ include_directories(
tde_add_library( fofi STATIC_PIC
SOURCES
FoFiBase.cc FoFiEncodings.cc FoFiTrueType.cc FoFiType1.cc
FoFiType1C.cc
FoFiBase.cpp FoFiEncodings.cpp FoFiTrueType.cpp FoFiType1.cpp
FoFiType1C.cpp
)

@ -1,6 +1,6 @@
//========================================================================
//
// FoFiBase.cc
// FoFiBase.cpp
//
// Copyright 1999-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// FoFiEncodings.cc
// FoFiEncodings.cpp
//
// Copyright 1999-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// FoFiTrueType.cc
// FoFiTrueType.cpp
//
// Copyright 1999-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// FoFiType1.cc
// FoFiType1.cpp
//
// Copyright 1999-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// FoFiType1C.cc
// FoFiType1C.cpp
//
// Copyright 1999-2003 Glyph & Cog, LLC
//

@ -1,8 +1,8 @@
INCLUDES = -I$(srcdir)/.. -I$(srcdir)/../goo $(all_includes)
libfofi_la_LDFLAGS = $(all_libraries)
libfofi_la_SOURCES = FoFiBase.cc FoFiEncodings.cc FoFiTrueType.cc \
FoFiType1.cc FoFiType1C.cc
libfofi_la_SOURCES = FoFiBase.cpp FoFiEncodings.cpp FoFiTrueType.cpp \
FoFiType1.cpp FoFiType1C.cpp
METASOURCES = AUTO

@ -22,5 +22,5 @@ include_directories(
tde_add_library( goo STATIC_PIC
SOURCES
GHash.cc GList.cc GString.cc gfile.cc gmem.cc gmempp.cc
GHash.cpp GList.cpp GString.cpp gfile.cpp gmem.cpp gmempp.cpp
)

@ -1,6 +1,6 @@
//========================================================================
//
// GHash.cc
// GHash.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// GList.cc
// GList.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// GString.cc
// GString.cpp
//
// Simple variable-length string type.
//

@ -1,5 +1,5 @@
INCLUDES = -I$(srcdir)/..
libgoo_la_SOURCES = GHash.cc GList.cc GString.cc gfile.cc gmem.cc gmempp.cc
libgoo_la_SOURCES = GHash.cpp GList.cpp GString.cpp gfile.cpp gmem.cpp gmempp.cpp
noinst_LTLIBRARIES = libgoo.la

@ -1,6 +1,6 @@
//========================================================================
//
// gfile.cc
// gfile.cpp
//
// Miscellaneous file and directory name manipulation.
//

@ -1,6 +1,6 @@
//========================================================================
//
// gmempp.cc
// gmempp.cpp
//
// Use gmalloc/gfree for C++ new/delete operators.
//

@ -23,11 +23,11 @@ include_directories(
tde_add_library( splash STATIC_PIC
SOURCES
Splash.cc SplashBitmap.cc SplashClip.cc SplashFTFont.cc
SplashFTFontEngine.cc SplashFTFontFile.cc SplashFont.cc
SplashFontEngine.cc SplashFontFile.cc SplashFontFileID.cc
SplashPath.cc SplashPattern.cc SplashScreen.cc SplashState.cc
SplashT1Font.cc SplashT1FontEngine.cc SplashT1FontFile.cc
SplashXPath.cc SplashXPathScanner.cc
Splash.cpp SplashBitmap.cpp SplashClip.cpp SplashFTFont.cpp
SplashFTFontEngine.cpp SplashFTFontFile.cpp SplashFont.cpp
SplashFontEngine.cpp SplashFontFile.cpp SplashFontFileID.cpp
SplashPath.cpp SplashPattern.cpp SplashScreen.cpp SplashState.cpp
SplashT1Font.cpp SplashT1FontEngine.cpp SplashT1FontFile.cpp
SplashXPath.cpp SplashXPathScanner.cpp
LINK ${FREETYPE_LIBRARIES} ${FONTCONFIG_LIBRARIES}
)

@ -1,8 +1,8 @@
INCLUDES = -I$(srcdir)/.. -I$(srcdir)/../fofi -I$(srcdir)/../goo $(LIBFREETYPE_CFLAGS) $(USER_INCLUDES)
libsplash_la_SOURCES = Splash.cc SplashBitmap.cc SplashClip.cc SplashFTFont.cc SplashFTFontEngine.cc \
SplashFTFontFile.cc SplashFont.cc SplashFontEngine.cc SplashFontFile.cc SplashFontFileID.cc \
SplashPath.cc SplashPattern.cc SplashScreen.cc SplashState.cc SplashT1Font.cc \
SplashT1FontEngine.cc SplashT1FontFile.cc SplashXPath.cc SplashXPathScanner.cc
libsplash_la_SOURCES = Splash.cpp SplashBitmap.cpp SplashClip.cpp SplashFTFont.cpp SplashFTFontEngine.cpp \
SplashFTFontFile.cpp SplashFont.cpp SplashFontEngine.cpp SplashFontFile.cpp SplashFontFileID.cpp \
SplashPath.cpp SplashPattern.cpp SplashScreen.cpp SplashState.cpp SplashT1Font.cpp \
SplashT1FontEngine.cpp SplashT1FontFile.cpp SplashXPath.cpp SplashXPathScanner.cpp
noinst_LTLIBRARIES = libsplash.la

@ -1,6 +1,6 @@
//========================================================================
//
// Splash.cc
// Splash.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashBitmap.cc
// SplashBitmap.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashClip.cc
// SplashClip.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashFTFont.cc
// SplashFTFont.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashFTFontEngine.cc
// SplashFTFontEngine.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashFTFontFile.cc
// SplashFTFontFile.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashFont.cc
// SplashFont.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashFontEngine.cc
// SplashFontEngine.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashFontFile.cc
// SplashFontFile.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashFontFileID.cc
// SplashFontFileID.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashPath.cc
// SplashPath.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashPattern.cc
// SplashPattern.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashScreen.cc
// SplashScreen.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashState.cc
// SplashState.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashT1Font.cc
// SplashT1Font.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashT1FontEngine.cc
// SplashT1FontEngine.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashT1FontFile.cc
// SplashT1FontFile.cpp
//
//========================================================================

@ -48,7 +48,7 @@ enum SplashColorMode {
};
// number of components in each color mode
// (defined in SplashState.cc)
// (defined in SplashState.cpp)
extern int splashColorModeNComps[];
// max number of components in any SplashColor

@ -1,6 +1,6 @@
//========================================================================
//
// SplashXPath.cc
// SplashXPath.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// SplashXPathScanner.cc
// SplashXPathScanner.cpp
//
//========================================================================

@ -1,6 +1,6 @@
//========================================================================
//
// Annot.cc
// Annot.cpp
//
// Copyright 2000-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Array.cc
// Array.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// BuiltinFont.cc
// BuiltinFont.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// BuiltinFontTables.cc
// BuiltinFontTables.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -24,14 +24,14 @@ include_directories(
tde_add_library( xpdf STATIC_PIC
SOURCES
Annot.cc Array.cc BuiltinFont.cc BuiltinFontTables.cc
Catalog.cc CharCodeToUnicode.cc CMap.cc Decrypt.cc Dict.cc
FontEncodingTables.cc Function.cc Gfx.cc GfxFont.cc GfxState.cc
GlobalParams.cc JArithmeticDecoder.cc JBIG2Stream.cc Lexer.cc Link.cc
NameToCharCode.cc Object.cc Outline.cc OutputDev.cc PDFDoc.cc
PDFDocEncoding.cc PreScanOutputDev.cc PSTokenizer.cc Page.cc
Parser.cc PSOutputDev.cc SecurityHandler.cc SplashOutputDev.cc
Stream.cc JPXStream.cc TextOutputDev.cc UnicodeMap.cc
UnicodeTypeTable.cc XRef.cc
Annot.cpp Array.cpp BuiltinFont.cpp BuiltinFontTables.cpp
Catalog.cpp CharCodeToUnicode.cpp CMap.cpp Decrypt.cpp Dict.cpp
FontEncodingTables.cpp Function.cpp Gfx.cpp GfxFont.cpp GfxState.cpp
GlobalParams.cpp JArithmeticDecoder.cpp JBIG2Stream.cpp Lexer.cpp Link.cpp
NameToCharCode.cpp Object.cpp Outline.cpp OutputDev.cpp PDFDoc.cpp
PDFDocEncoding.cpp PreScanOutputDev.cpp PSTokenizer.cpp Page.cpp
Parser.cpp PSOutputDev.cpp SecurityHandler.cpp SplashOutputDev.cpp
Stream.cpp JPXStream.cpp TextOutputDev.cpp UnicodeMap.cpp
UnicodeTypeTable.cpp XRef.cpp
LINK ${FONTCONFIG_LIBRARIES}
)

@ -1,6 +1,6 @@
//========================================================================
//
// CMap.cc
// CMap.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Catalog.cc
// Catalog.cpp
//
// Copyright 1996-2007 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// CharCodeToUnicode.cc
// CharCodeToUnicode.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Decrypt.cc
// Decrypt.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Dict.cc
// Dict.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// FontEncodingTables.cc
// FontEncodingTables.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Function.cc
// Function.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Gfx.cc
// Gfx.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// GfxFont.cc
// GfxFont.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// GfxState.cc
// GfxState.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -114,7 +114,7 @@ struct GfxCMYK {
//------------------------------------------------------------------------
// NB: The nGfxColorSpaceModes constant and the gfxColorSpaceModeNames
// array defined in GfxState.cc must match this enum.
// array defined in GfxState.cpp must match this enum.
enum GfxColorSpaceMode {
csDeviceGray,
csCalGray,

@ -1,6 +1,6 @@
//========================================================================
//
// GlobalParams.cc
// GlobalParams.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// JArithmeticDecoder.cc
// JArithmeticDecoder.cpp
//
// Copyright 2002-2004 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// JBIG2Stream.cc
// JBIG2Stream.cpp
//
// Copyright 2002-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// JPXStream.cc
// JPXStream.cpp
//
// Copyright 2002-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Lexer.cc
// Lexer.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Link.cc
// Link.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -2,14 +2,14 @@ INCLUDES = -I$(srcdir)/.. -I$(srcdir)/../fofi -I$(srcdir)/../splash -I$(srcdir)/
libxpdf_la_LDFLAGS = $(all_libraries)
libxpdf_la_LIBADD = $(LIB_X11) $(LIBFREETYPE_LIBS) $(LIBPAPER_LIBS) $(XFT_LIBS) $(LIBJPEG) ../goo/libgoo.la ../fofi/libfofi.la ../splash/libsplash.la
libxpdf_la_SOURCES = Annot.cc Array.cc BuiltinFont.cc BuiltinFontTables.cc \
Catalog.cc CharCodeToUnicode.cc CMap.cc Decrypt.cc Dict.cc \
FontEncodingTables.cc Function.cc Gfx.cc \
GfxFont.cc GfxState.cc GlobalParams.cc JArithmeticDecoder.cc \
JBIG2Stream.cc Lexer.cc Link.cc NameToCharCode.cc Object.cc Outline.cc \
OutputDev.cc PDFDoc.cc PDFDocEncoding.cc PreScanOutputDev.cc PSTokenizer.cc \
Page.cc Parser.cc PSOutputDev.cc SecurityHandler.cc SplashOutputDev.cc Stream.cc JPXStream.cc \
TextOutputDev.cc UnicodeMap.cc UnicodeTypeTable.cc XRef.cc
libxpdf_la_SOURCES = Annot.cpp Array.cpp BuiltinFont.cpp BuiltinFontTables.cpp \
Catalog.cpp CharCodeToUnicode.cpp CMap.cpp Decrypt.cpp Dict.cpp \
FontEncodingTables.cpp Function.cpp Gfx.cpp \
GfxFont.cpp GfxState.cpp GlobalParams.cpp JArithmeticDecoder.cpp \
JBIG2Stream.cpp Lexer.cpp Link.cpp NameToCharCode.cpp Object.cpp Outline.cpp \
OutputDev.cpp PDFDoc.cpp PDFDocEncoding.cpp PreScanOutputDev.cpp PSTokenizer.cpp \
Page.cpp Parser.cpp PSOutputDev.cpp SecurityHandler.cpp SplashOutputDev.cpp Stream.cpp JPXStream.cpp \
TextOutputDev.cpp UnicodeMap.cpp UnicodeTypeTable.cpp XRef.cpp
noinst_LTLIBRARIES = libxpdf.la

@ -1,6 +1,6 @@
//========================================================================
//
// NameToCharCode.cc
// NameToCharCode.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Object.cc
// Object.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Outline.cc
// Outline.cpp
//
// Copyright 2002-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// OutputDev.cc
// OutputDev.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// PDFDoc.cc
// PDFDoc.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// PSOutputDev.cc
// PSOutputDev.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// PSTokenizer.cc
// PSTokenizer.cpp
//
// Copyright 2002-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Page.cc
// Page.cpp
//
// Copyright 1996-2007 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Parser.cc
// Parser.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// PreScanOutputDev.cc
// PreScanOutputDev.cpp
//
// Copyright 2005 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// SecurityHandler.cc
// SecurityHandler.cpp
//
// Copyright 2004 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// SplashOutputDev.cc
// SplashOutputDev.cpp
//
// Copyright 2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// Stream.cc
// Stream.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// TextOutputDev.cc
// TextOutputDev.cpp
//
// Copyright 1997-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// UnicodeMap.cc
// UnicodeMap.cpp
//
// Copyright 2001-2003 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// UnicodeTypeTable.cc
// UnicodeTypeTable.cpp
//
// Copyright 2004 Glyph & Cog, LLC
//

@ -1,6 +1,6 @@
//========================================================================
//
// XRef.cc
// XRef.cpp
//
// Copyright 1996-2003 Glyph & Cog, LLC
//

@ -116,7 +116,7 @@ void PMComboAction::unplug( TQWidget *w )
// Use a toolbutton instead of a label so it is styled correctly.
// copied from konq_actions.cc
// copied from konq_actions.cpp
class PMToolBarLabel : public TQToolButton
{
public:

@ -1,7 +1,7 @@
SUBDIRS = dom impl core ecma . plugin test
lib_LTLIBRARIES = libksvg.la
libksvg_la_SOURCES = dummy.cc
libksvg_la_SOURCES = dummy.cpp
libksvg_la_METASOURCES = AUTO
libksvg_la_LDFLAGS = -version-info 0:1:0 -no-undefined $(all_libraries)
libksvg_la_LIBADD = dom/libksvgdom.la impl/libksvgdomimpl.la core/libksvgcore.la ecma/libksvgecma.la \
@ -10,100 +10,100 @@ libksvg_la_LIBADD = dom/libksvgdom.la impl/libksvgdomimpl.la core/libksvgcore.l
INCLUDES = -I$(top_srcdir)/ksvg/dom -I$(top_srcdir)/ksvg/impl $(all_includes)
dummy.cc:
echo "" > dummy.cc
dummy.cpp:
echo "" > dummy.cpp
# Make it easy for developers :)
hashtables:
cd $(srcdir); \
rm -f data/*lut* ; \
../../tdelibs/kjs/create_hash_table impl/SVGElementImpl.cc > data/SVGElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGSVGElementImpl.cc > data/SVGSVGElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGRectElementImpl.cc > data/SVGRectElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLineElementImpl.cc > data/SVGLineElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGCircleElementImpl.cc > data/SVGCircleElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGImageElementImpl.cc > data/SVGImageElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGEllipseElementImpl.cc > data/SVGEllipseElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPointsImpl.cc > data/SVGAnimatedPointsImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPointImpl.cc > data/SVGPointImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGRectImpl.cc > data/SVGRectImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGNumberImpl.cc > data/SVGNumberImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedAngleImpl.cc > data/SVGAnimatedAngleImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedRectImpl.cc > data/SVGAnimatedRectImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedNumberImpl.cc > data/SVGAnimatedNumberImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedNumberListImpl.cc > data/SVGAnimatedNumberListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedIntegerImpl.cc > data/SVGAnimatedIntegerImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedBooleanImpl.cc > data/SVGAnimatedBooleanImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedEnumerationImpl.cc > data/SVGAnimatedEnumerationImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedStringImpl.cc > data/SVGAnimatedStringImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedLengthImpl.cc > data/SVGAnimatedLengthImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedLengthListImpl.cc > data/SVGAnimatedLengthListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPreserveAspectRatioImpl.cc > data/SVGAnimatedPreserveAspectRatioImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPreserveAspectRatioImpl.cc > data/SVGPreserveAspectRatioImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLengthImpl.cc > data/SVGLengthImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGMatrixImpl.cc > data/SVGMatrixImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAngleImpl.cc > data/SVGAngleImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLocatableImpl.cc > data/SVGLocatableImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTestsImpl.cc > data/SVGTestsImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLangSpaceImpl.cc > data/SVGLangSpaceImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGExternalResourcesRequiredImpl.cc > data/SVGExternalResourcesRequiredImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGURIReferenceImpl.cc > data/SVGURIReferenceImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPaintImpl.cc > data/SVGPaintImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGColorImpl.cc > data/SVGColorImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGICCColorImpl.cc > data/SVGICCColorImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTextPositioningElementImpl.cc > data/SVGTextPositioningElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTextContentElementImpl.cc > data/SVGTextContentElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTransformImpl.cc > data/SVGTransformImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTransformableImpl.cc > data/SVGTransformableImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPointListImpl.cc > data/SVGPointListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGNumberListImpl.cc > data/SVGNumberListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLengthListImpl.cc > data/SVGLengthListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGStringListImpl.cc > data/SVGStringListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPathDataImpl.cc > data/SVGAnimatedPathDataImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegImpl.cc > data/SVGPathSegImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegArcImpl.cc > data/SVGPathSegArcImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegMovetoImpl.cc > data/SVGPathSegMovetoImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoImpl.cc > data/SVGPathSegLinetoImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoHorizontalImpl.cc > data/SVGPathSegLinetoHorizontalImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoVerticalImpl.cc > data/SVGPathSegLinetoVerticalImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoCubicImpl.cc > data/SVGPathSegCurvetoCubicImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoCubicSmoothImpl.cc > data/SVGPathSegCurvetoCubicSmoothImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoQuadraticImpl.cc > data/SVGPathSegCurvetoQuadraticImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoQuadraticSmoothImpl.cc > data/SVGPathSegCurvetoQuadraticSmoothImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathElementImpl.cc > data/SVGPathElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegListImpl.cc > data/SVGPathSegListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTransformListImpl.cc > data/SVGTransformListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedTransformListImpl.cc > data/SVGAnimatedTransformListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAElementImpl.cc > data/SVGAElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGUseElementImpl.cc > data/SVGUseElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGDocumentImpl.cc > data/SVGDocumentImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGForeignObjectElementImpl.cc > data/SVGForeignObjectElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGScriptElementImpl.cc > data/SVGScriptElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGStyleElementImpl.cc > data/SVGStyleElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGZoomAndPanImpl.cc > data/SVGZoomAndPanImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGFitToViewBoxImpl.cc > data/SVGFitToViewBoxImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGStylableImpl.cc > data/SVGStylableImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGEventImpl.cc > data/SVGEventImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGEcma.cc > data/SVGEcma.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGMarkerElementImpl.cc > data/SVGMarkerElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGViewElementImpl.cc > data/SVGViewElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTextContentElementImpl.cc > data/SVGTextContentElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGClipPathElementImpl.cc > data/SVGClipPathElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGColorProfileElementImpl.cc > data/SVGColorProfileElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPatternElementImpl.cc > data/SVGPatternElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGGradientElementImpl.cc > data/SVGGradientElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLinearGradientElementImpl.cc > data/SVGLinearGradientElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGRadialGradientElementImpl.cc > data/SVGRadialGradientElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGStopElementImpl.cc > data/SVGStopElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimationElementImpl.cc > data/SVGAnimationElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGCursorElementImpl.cc > data/SVGCursorElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGSymbolElementImpl.cc > data/SVGSymbolElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGMaskElementImpl.cc > data/SVGMaskElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGGlyphElementImpl.cc > data/SVGGlyphElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGMissingGlyphElementImpl.cc > data/SVGMissingGlyphElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGGlyphRefElementImpl.cc > data/SVGGlyphRefElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTextPathElementImpl.cc > data/SVGTextPathElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGZoomEventImpl.cc > data/SVGZoomEventImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGElementImpl.cpp > data/SVGElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGSVGElementImpl.cpp > data/SVGSVGElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGRectElementImpl.cpp > data/SVGRectElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLineElementImpl.cpp > data/SVGLineElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGCircleElementImpl.cpp > data/SVGCircleElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGImageElementImpl.cpp > data/SVGImageElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGEllipseElementImpl.cpp > data/SVGEllipseElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPointsImpl.cpp > data/SVGAnimatedPointsImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPointImpl.cpp > data/SVGPointImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGRectImpl.cpp > data/SVGRectImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGNumberImpl.cpp > data/SVGNumberImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedAngleImpl.cpp > data/SVGAnimatedAngleImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedRectImpl.cpp > data/SVGAnimatedRectImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedNumberImpl.cpp > data/SVGAnimatedNumberImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedNumberListImpl.cpp > data/SVGAnimatedNumberListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedIntegerImpl.cpp > data/SVGAnimatedIntegerImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedBooleanImpl.cpp > data/SVGAnimatedBooleanImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedEnumerationImpl.cpp > data/SVGAnimatedEnumerationImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedStringImpl.cpp > data/SVGAnimatedStringImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedLengthImpl.cpp > data/SVGAnimatedLengthImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedLengthListImpl.cpp > data/SVGAnimatedLengthListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPreserveAspectRatioImpl.cpp > data/SVGAnimatedPreserveAspectRatioImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPreserveAspectRatioImpl.cpp > data/SVGPreserveAspectRatioImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLengthImpl.cpp > data/SVGLengthImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGMatrixImpl.cpp > data/SVGMatrixImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAngleImpl.cpp > data/SVGAngleImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLocatableImpl.cpp > data/SVGLocatableImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTestsImpl.cpp > data/SVGTestsImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLangSpaceImpl.cpp > data/SVGLangSpaceImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGExternalResourcesRequiredImpl.cpp > data/SVGExternalResourcesRequiredImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGURIReferenceImpl.cpp > data/SVGURIReferenceImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPaintImpl.cpp > data/SVGPaintImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGColorImpl.cpp > data/SVGColorImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGICCColorImpl.cpp > data/SVGICCColorImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTextPositioningElementImpl.cpp > data/SVGTextPositioningElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTextContentElementImpl.cpp > data/SVGTextContentElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTransformImpl.cpp > data/SVGTransformImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTransformableImpl.cpp > data/SVGTransformableImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPointListImpl.cpp > data/SVGPointListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGNumberListImpl.cpp > data/SVGNumberListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLengthListImpl.cpp > data/SVGLengthListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGStringListImpl.cpp > data/SVGStringListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedPathDataImpl.cpp > data/SVGAnimatedPathDataImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegImpl.cpp > data/SVGPathSegImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegArcImpl.cpp > data/SVGPathSegArcImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegMovetoImpl.cpp > data/SVGPathSegMovetoImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoImpl.cpp > data/SVGPathSegLinetoImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoHorizontalImpl.cpp > data/SVGPathSegLinetoHorizontalImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegLinetoVerticalImpl.cpp > data/SVGPathSegLinetoVerticalImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoCubicImpl.cpp > data/SVGPathSegCurvetoCubicImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoCubicSmoothImpl.cpp > data/SVGPathSegCurvetoCubicSmoothImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoQuadraticImpl.cpp > data/SVGPathSegCurvetoQuadraticImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegCurvetoQuadraticSmoothImpl.cpp > data/SVGPathSegCurvetoQuadraticSmoothImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathElementImpl.cpp > data/SVGPathElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPathSegListImpl.cpp > data/SVGPathSegListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTransformListImpl.cpp > data/SVGTransformListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimatedTransformListImpl.cpp > data/SVGAnimatedTransformListImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAElementImpl.cpp > data/SVGAElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGUseElementImpl.cpp > data/SVGUseElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGDocumentImpl.cpp > data/SVGDocumentImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGForeignObjectElementImpl.cpp > data/SVGForeignObjectElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGScriptElementImpl.cpp > data/SVGScriptElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGStyleElementImpl.cpp > data/SVGStyleElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGZoomAndPanImpl.cpp > data/SVGZoomAndPanImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGFitToViewBoxImpl.cpp > data/SVGFitToViewBoxImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGStylableImpl.cpp > data/SVGStylableImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGEventImpl.cpp > data/SVGEventImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGEcma.cpp > data/SVGEcma.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGMarkerElementImpl.cpp > data/SVGMarkerElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGViewElementImpl.cpp > data/SVGViewElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTextContentElementImpl.cpp > data/SVGTextContentElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGClipPathElementImpl.cpp > data/SVGClipPathElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGColorProfileElementImpl.cpp > data/SVGColorProfileElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGPatternElementImpl.cpp > data/SVGPatternElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGGradientElementImpl.cpp > data/SVGGradientElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGLinearGradientElementImpl.cpp > data/SVGLinearGradientElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGRadialGradientElementImpl.cpp > data/SVGRadialGradientElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGStopElementImpl.cpp > data/SVGStopElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGAnimationElementImpl.cpp > data/SVGAnimationElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGCursorElementImpl.cpp > data/SVGCursorElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGSymbolElementImpl.cpp > data/SVGSymbolElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGMaskElementImpl.cpp > data/SVGMaskElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGGlyphElementImpl.cpp > data/SVGGlyphElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGMissingGlyphElementImpl.cpp > data/SVGMissingGlyphElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGGlyphRefElementImpl.cpp > data/SVGGlyphRefElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGTextPathElementImpl.cpp > data/SVGTextPathElementImpl.lut.h; \
../../tdelibs/kjs/create_hash_table impl/SVGZoomEventImpl.cpp > data/SVGZoomEventImpl.lut.h; \
../../tdelibs/kjs/create_hash_table ecma/ksvg_window.cpp > data/ksvg_window.lut.h;
generatedata:

@ -46,6 +46,6 @@ tde_create_translated_desktop(
tde_add_library( ksvgcore STATIC_PIC AUTOMOC
SOURCES
KSVGLoader.cpp KSVGCanvas.cpp KSVGReader.cc KSVGTextChunk.cpp
KSVGLoader.cpp KSVGCanvas.cpp KSVGReader.cpp KSVGTextChunk.cpp
CanvasFactory.cpp CanvasItems.cpp KSVGHelper.cpp DocumentFactory.cpp
)

@ -1,6 +1,6 @@
noinst_LTLIBRARIES = libksvgcore.la
libksvgcore_la_SOURCES = KSVGLoader.cpp KSVGCanvas.cpp KSVGReader.cc KSVGTextChunk.cpp CanvasFactory.cpp CanvasItems.cpp KSVGHelper.cpp DocumentFactory.cpp
libksvgcore_la_SOURCES = KSVGLoader.cpp KSVGCanvas.cpp KSVGReader.cpp KSVGTextChunk.cpp CanvasFactory.cpp CanvasItems.cpp KSVGHelper.cpp DocumentFactory.cpp
libksvgcore_la_METASOURCES = AUTO
servicetypedir = $(kde_servicetypesdir)

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAngleImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAngleImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedAngleImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedAngleImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedBooleanImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedBooleanImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedEnumerationImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedEnumerationImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedIntegerImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedIntegerImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedLengthImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedLengthImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedLengthListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedLengthListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedNumberImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedNumberImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedNumberListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedNumberListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedPathDataImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedPathDataImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedPointsImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedPointsImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedPreserveAspectRatioImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedPreserveAspectRatioImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedRectImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedRectImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedStringImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedStringImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimatedTransformListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimatedTransformListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGAnimationElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGAnimationElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGCircleElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGCircleElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGClipPathElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGClipPathElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGColorImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGColorImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGColorProfileElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGColorProfileElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGCursorElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGCursorElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGDocumentImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGDocumentImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGEcma.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGEcma.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGEllipseElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGEllipseElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGEventImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGEventImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGExternalResourcesRequiredImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGExternalResourcesRequiredImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGFitToViewBoxImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGFitToViewBoxImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGForeignObjectElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGForeignObjectElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGGlyphElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGGlyphElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGGlyphRefElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGGlyphRefElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGGradientElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGGradientElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGICCColorImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGICCColorImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGImageElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGImageElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGLangSpaceImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGLangSpaceImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGLengthImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGLengthImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGLengthListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGLengthListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGLineElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGLineElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGLinearGradientElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGLinearGradientElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGLocatableImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGLocatableImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGMarkerElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGMarkerElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGMaskElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGMaskElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGMatrixImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGMatrixImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGNumberImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGNumberImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGNumberListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGNumberListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPaintImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPaintImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegArcImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegArcImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegCurvetoCubicImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegCurvetoCubicImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegCurvetoCubicSmoothImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegCurvetoCubicSmoothImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegCurvetoQuadraticImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegCurvetoQuadraticImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegCurvetoQuadraticSmoothImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegCurvetoQuadraticSmoothImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegLinetoHorizontalImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegLinetoHorizontalImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegLinetoImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegLinetoImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegLinetoVerticalImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegLinetoVerticalImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPathSegMovetoImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPathSegMovetoImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPatternElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPatternElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPointImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPointImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPointListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPointListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGPreserveAspectRatioImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGPreserveAspectRatioImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGRadialGradientElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGRadialGradientElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGRectElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGRectElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGRectImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGRectImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGSVGElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGSVGElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGScriptElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGScriptElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGStopElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGStopElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGStringListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGStringListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGStylableImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGStylableImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGStyleElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGStyleElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGSymbolElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGSymbolElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGTestsImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGTestsImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGTextContentElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGTextContentElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGTextPathElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGTextPathElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGTextPositioningElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGTextPositioningElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGTransformImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGTransformImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGTransformListImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGTransformListImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGTransformableImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGTransformableImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGURIReferenceImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGURIReferenceImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGUseElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGUseElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGViewElementImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGViewElementImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGZoomAndPanImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGZoomAndPanImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -1,4 +1,4 @@
/* Automatically generated from impl/SVGZoomEventImpl.cc using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
/* Automatically generated from impl/SVGZoomEventImpl.cpp using ../../tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
using namespace KJS;

@ -76,50 +76,50 @@ install( FILES
tde_add_library( ksvgdom STATIC_PIC
SOURCES
SVGLength.cc SVGAnimatedLength.cc SVGNumber.cc SVGAnimatedNumber.cc
SVGPoint.cc SVGTSpanElement.cc SVGTRefElement.cc SVGAnimatedLengthList.cc
SVGAnimatedNumberList.cc SVGTransformList.cc SVGAElement.cc
SVGAnimatedTransformList.cc SVGRectElement.cc SVGCircleElement.cc
SVGEllipseElement.cc SVGLineElement.cc SVGPolylineElement.cc
SVGPolygonElement.cc SVGTextPositioningElement.cc SVGTextContentElement.cc
SVGTextElement.cc SVGImageElement.cc SVGUseElement.cc SVGMatrix.cc
SVGTransform.cc SVGPointList.cc SVGDocument.cc SVGAnimatedEnumeration.cc
SVGDefsElement.cc SVGLocatable.cc SVGTransformable.cc SVGStylable.cc
SVGGElement.cc SVGAngle.cc SVGAnimatedAngle.cc SVGColor.cc SVGPathElement.cc
SVGPathSegList.cc SVGTests.cc SVGLangSpace.cc SVGStringList.cc SVGPathSeg.cc
SVGPathSegClosePath.cc SVGPathSegMoveto.cc SVGPathSegLinetoHorizontal.cc
SVGPathSegLinetoVertical.cc SVGPathSegLineto.cc SVGPathSegCurvetoCubic.cc
SVGDescElement.cc SVGTitleElement.cc SVGExternalResourcesRequired.cc
SVGAnimatedBoolean.cc SVGNumberList.cc SVGPathSegCurvetoCubicSmooth.cc
SVGPathSegCurvetoQuadratic.cc SVGAnimatedRect.cc SVGAnimatedString.cc
SVGPathSegCurvetoQuadraticSmooth.cc SVGPathSegArc.cc SVGURIReference.cc
SVGAnimatedInteger.cc SVGLengthList.cc SVGSVGElement.cc SVGRect.cc
SVGFitToViewBox.cc SVGAnimatedPreserveAspectRatio.cc SVGPreserveAspectRatio.cc
SVGElement.cc SVGStyleElement.cc SVGClipPathElement.cc SVGMaskElement.cc
SVGColorProfileElement.cc SVGColorProfileRule.cc SVGZoomAndPan.cc
SVGScriptElement.cc SVGSwitchElement.cc SVGSymbolElement.cc
SVGDefinitionSrcElement.cc SVGFontFaceElement.cc SVGFontFaceFormatElement.cc
SVGFontFaceNameElement.cc SVGFontFaceSrcElement.cc SVGHKernElement.cc
SVGMetadataElement.cc SVGVKernElement.cc SVGCursorElement.cc
SVGForeignObjectElement.cc SVGFontFaceUriElement.cc SVGElementInstance.cc
SVGElementInstanceList.cc SVGAnimatedPoints.cc SVGAnimatedPathData.cc
SVGMarkerElement.cc SVGViewSpec.cc SVGViewElement.cc SVGFilterElement.cc
SVGFilterPrimitiveStandardAttributes.cc SVGFEBlendElement.cc
SVGFEColorMatrixElement.cc SVGFEComponentTransferElement.cc
SVGComponentTransferFunctionElement.cc SVGFEFuncAElement.cc
SVGFEFuncBElement.cc SVGFEFuncGElement.cc SVGFEFuncRElement.cc
SVGFECompositeElement.cc SVGFEConvolveMatrixElement.cc SVGFEFloodElement.cc
SVGFEGaussianBlurElement.cc SVGFEDiffuseLightingElement.cc
SVGFEDistantLightElement.cc SVGFEPointLightElement.cc
SVGFESpotLightElement.cc SVGFEDisplacementMapElement.cc SVGFEMergeElement.cc
SVGFEMergeNodeElement.cc SVGFEImageElement.cc SVGFEMorphologyElement.cc
SVGFEOffsetElement.cc SVGFESpecularLightingElement.cc SVGFETileElement.cc
SVGFETurbulenceElement.cc SVGAnimationElement.cc SVGAnimateElement.cc
SVGSetElement.cc SVGAnimateMotionElement.cc SVGAnimateColorElement.cc
SVGAnimateTransformElement.cc SVGEvent.cc SVGZoomEvent.cc SVGICCColor.cc
SVGCSSRule.cc SVGGradientElement.cc SVGRadialGradientElement.cc
SVGLinearGradientElement.cc SVGStopElement.cc SVGPatternElement.cc
SVGMPathElement.cc SVGFontElement.cc SVGAltGlyphElement.cc
SVGGlyphRefElement.cc SVGAltGlyphDefElement.cc SVGGlyphElement.cc
SVGMissingGlyphElement.cc SVGPaint.cc SVGTextPathElement.cc SVGWindow.cc
SVGLength.cpp SVGAnimatedLength.cpp SVGNumber.cpp SVGAnimatedNumber.cpp
SVGPoint.cpp SVGTSpanElement.cpp SVGTRefElement.cpp SVGAnimatedLengthList.cpp
SVGAnimatedNumberList.cpp SVGTransformList.cpp SVGAElement.cpp
SVGAnimatedTransformList.cpp SVGRectElement.cpp SVGCircleElement.cpp
SVGEllipseElement.cpp SVGLineElement.cpp SVGPolylineElement.cpp
SVGPolygonElement.cpp SVGTextPositioningElement.cpp SVGTextContentElement.cpp
SVGTextElement.cpp SVGImageElement.cpp SVGUseElement.cpp SVGMatrix.cpp
SVGTransform.cpp SVGPointList.cpp SVGDocument.cpp SVGAnimatedEnumeration.cpp
SVGDefsElement.cpp SVGLocatable.cpp SVGTransformable.cpp SVGStylable.cpp
SVGGElement.cpp SVGAngle.cpp SVGAnimatedAngle.cpp SVGColor.cpp SVGPathElement.cpp
SVGPathSegList.cpp SVGTests.cpp SVGLangSpace.cpp SVGStringList.cpp SVGPathSeg.cpp
SVGPathSegClosePath.cpp SVGPathSegMoveto.cpp SVGPathSegLinetoHorizontal.cpp
SVGPathSegLinetoVertical.cpp SVGPathSegLineto.cpp SVGPathSegCurvetoCubic.cpp
SVGDescElement.cpp SVGTitleElement.cpp SVGExternalResourcesRequired.cpp
SVGAnimatedBoolean.cpp SVGNumberList.cpp SVGPathSegCurvetoCubicSmooth.cpp
SVGPathSegCurvetoQuadratic.cpp SVGAnimatedRect.cpp SVGAnimatedString.cpp
SVGPathSegCurvetoQuadraticSmooth.cpp SVGPathSegArc.cpp SVGURIReference.cpp
SVGAnimatedInteger.cpp SVGLengthList.cpp SVGSVGElement.cpp SVGRect.cpp
SVGFitToViewBox.cpp SVGAnimatedPreserveAspectRatio.cpp SVGPreserveAspectRatio.cpp
SVGElement.cpp SVGStyleElement.cpp SVGClipPathElement.cpp SVGMaskElement.cpp
SVGColorProfileElement.cpp SVGColorProfileRule.cpp SVGZoomAndPan.cpp
SVGScriptElement.cpp SVGSwitchElement.cpp SVGSymbolElement.cpp
SVGDefinitionSrcElement.cpp SVGFontFaceElement.cpp SVGFontFaceFormatElement.cpp
SVGFontFaceNameElement.cpp SVGFontFaceSrcElement.cpp SVGHKernElement.cpp
SVGMetadataElement.cpp SVGVKernElement.cpp SVGCursorElement.cpp
SVGForeignObjectElement.cpp SVGFontFaceUriElement.cpp SVGElementInstance.cpp
SVGElementInstanceList.cpp SVGAnimatedPoints.cpp SVGAnimatedPathData.cpp
SVGMarkerElement.cpp SVGViewSpec.cpp SVGViewElement.cpp SVGFilterElement.cpp
SVGFilterPrimitiveStandardAttributes.cpp SVGFEBlendElement.cpp
SVGFEColorMatrixElement.cpp SVGFEComponentTransferElement.cpp
SVGComponentTransferFunctionElement.cpp SVGFEFuncAElement.cpp
SVGFEFuncBElement.cpp SVGFEFuncGElement.cpp SVGFEFuncRElement.cpp
SVGFECompositeElement.cpp SVGFEConvolveMatrixElement.cpp SVGFEFloodElement.cpp
SVGFEGaussianBlurElement.cpp SVGFEDiffuseLightingElement.cpp
SVGFEDistantLightElement.cpp SVGFEPointLightElement.cpp
SVGFESpotLightElement.cpp SVGFEDisplacementMapElement.cpp SVGFEMergeElement.cpp
SVGFEMergeNodeElement.cpp SVGFEImageElement.cpp SVGFEMorphologyElement.cpp
SVGFEOffsetElement.cpp SVGFESpecularLightingElement.cpp SVGFETileElement.cpp
SVGFETurbulenceElement.cpp SVGAnimationElement.cpp SVGAnimateElement.cpp
SVGSetElement.cpp SVGAnimateMotionElement.cpp SVGAnimateColorElement.cpp
SVGAnimateTransformElement.cpp SVGEvent.cpp SVGZoomEvent.cpp SVGICCColor.cpp
SVGCSSRule.cpp SVGGradientElement.cpp SVGRadialGradientElement.cpp
SVGLinearGradientElement.cpp SVGStopElement.cpp SVGPatternElement.cpp
SVGMPathElement.cpp SVGFontElement.cpp SVGAltGlyphElement.cpp
SVGGlyphRefElement.cpp SVGAltGlyphDefElement.cpp SVGGlyphElement.cpp
SVGMissingGlyphElement.cpp SVGPaint.cpp SVGTextPathElement.cpp SVGWindow.cpp
)

@ -31,27 +31,27 @@ myinclude_HEADERS = SVGAElement.h SVGAltGlyphElement.h SVGAltGlyphDefElement.h S
SVGTitleElement.h SVGTransform.h SVGTransformList.h SVGTransformable.h SVGURIReference.h SVGUnitTypes.h \
SVGUseElement.h SVGVKernElement.h SVGViewElement.h SVGViewSpec.h SVGWindow.h SVGZoomAndPan.h SVGZoomEvent.h
libksvgdom_la_SOURCES = SVGLength.cc SVGAnimatedLength.cc SVGNumber.cc SVGAnimatedNumber.cc SVGPoint.cc SVGTSpanElement.cc SVGTRefElement.cc \
SVGAnimatedLengthList.cc SVGAnimatedNumberList.cc SVGTransformList.cc SVGAElement.cc SVGAnimatedTransformList.cc \
SVGRectElement.cc SVGCircleElement.cc SVGEllipseElement.cc SVGLineElement.cc SVGPolylineElement.cc SVGPolygonElement.cc \
SVGTextPositioningElement.cc SVGTextContentElement.cc SVGTextElement.cc SVGImageElement.cc SVGUseElement.cc \
SVGMatrix.cc SVGTransform.cc SVGPointList.cc SVGDocument.cc SVGAnimatedEnumeration.cc SVGDefsElement.cc \
SVGLocatable.cc SVGTransformable.cc SVGStylable.cc SVGGElement.cc SVGAngle.cc SVGAnimatedAngle.cc \
SVGColor.cc SVGPathElement.cc SVGPathSegList.cc SVGTests.cc SVGLangSpace.cc SVGStringList.cc \
SVGPathSeg.cc SVGPathSegClosePath.cc SVGPathSegMoveto.cc SVGPathSegLinetoHorizontal.cc SVGPathSegLinetoVertical.cc SVGPathSegLineto.cc \
SVGPathSegCurvetoCubic.cc SVGDescElement.cc SVGTitleElement.cc SVGExternalResourcesRequired.cc SVGAnimatedBoolean.cc SVGNumberList.cc \
SVGPathSegCurvetoCubicSmooth.cc SVGPathSegCurvetoQuadratic.cc SVGAnimatedRect.cc SVGAnimatedString.cc \
SVGPathSegCurvetoQuadraticSmooth.cc SVGPathSegArc.cc SVGURIReference.cc SVGAnimatedInteger.cc SVGLengthList.cc \
SVGSVGElement.cc SVGRect.cc SVGFitToViewBox.cc SVGAnimatedPreserveAspectRatio.cc SVGPreserveAspectRatio.cc SVGElement.cc \
SVGStyleElement.cc SVGClipPathElement.cc SVGMaskElement.cc SVGColorProfileElement.cc SVGColorProfileRule.cc SVGZoomAndPan.cc SVGScriptElement.cc \
SVGSwitchElement.cc SVGSymbolElement.cc \
SVGDefinitionSrcElement.cc SVGFontFaceElement.cc SVGFontFaceFormatElement.cc SVGFontFaceNameElement.cc SVGFontFaceSrcElement.cc SVGHKernElement.cc SVGMetadataElement.cc SVGVKernElement.cc SVGCursorElement.cc SVGForeignObjectElement.cc SVGFontFaceUriElement.cc \
SVGElementInstance.cc SVGElementInstanceList.cc SVGAnimatedPoints.cc SVGAnimatedPathData.cc SVGMarkerElement.cc SVGViewSpec.cc SVGViewElement.cc \
SVGFilterElement.cc SVGFilterPrimitiveStandardAttributes.cc SVGFEBlendElement.cc SVGFEColorMatrixElement.cc SVGFEComponentTransferElement.cc SVGComponentTransferFunctionElement.cc SVGFEFuncAElement.cc SVGFEFuncBElement.cc SVGFEFuncGElement.cc SVGFEFuncRElement.cc SVGFECompositeElement.cc SVGFEConvolveMatrixElement.cc SVGFEFloodElement.cc SVGFEGaussianBlurElement.cc SVGFEDiffuseLightingElement.cc SVGFEDistantLightElement.cc SVGFEPointLightElement.cc SVGFESpotLightElement.cc SVGFEDisplacementMapElement.cc SVGFEMergeElement.cc SVGFEMergeNodeElement.cc SVGFEImageElement.cc SVGFEMorphologyElement.cc SVGFEOffsetElement.cc SVGFESpecularLightingElement.cc SVGFETileElement.cc SVGFETurbulenceElement.cc \
SVGAnimationElement.cc SVGAnimateElement.cc SVGSetElement.cc SVGAnimateMotionElement.cc SVGAnimateColorElement.cc SVGAnimateTransformElement.cc \
SVGEvent.cc SVGZoomEvent.cc SVGICCColor.cc SVGCSSRule.cc \
SVGGradientElement.cc SVGRadialGradientElement.cc SVGLinearGradientElement.cc SVGStopElement.cc SVGPatternElement.cc SVGMPathElement.cc \
SVGFontElement.cc SVGAltGlyphElement.cc SVGGlyphRefElement.cc SVGAltGlyphDefElement.cc SVGGlyphElement.cc SVGMissingGlyphElement.cc SVGPaint.cc SVGTextPathElement.cc SVGWindow.cc
libksvgdom_la_SOURCES = SVGLength.cpp SVGAnimatedLength.cpp SVGNumber.cpp SVGAnimatedNumber.cpp SVGPoint.cpp SVGTSpanElement.cpp SVGTRefElement.cpp \
SVGAnimatedLengthList.cpp SVGAnimatedNumberList.cpp SVGTransformList.cpp SVGAElement.cpp SVGAnimatedTransformList.cpp \
SVGRectElement.cpp SVGCircleElement.cpp SVGEllipseElement.cpp SVGLineElement.cpp SVGPolylineElement.cpp SVGPolygonElement.cpp \
SVGTextPositioningElement.cpp SVGTextContentElement.cpp SVGTextElement.cpp SVGImageElement.cpp SVGUseElement.cpp \
SVGMatrix.cpp SVGTransform.cpp SVGPointList.cpp SVGDocument.cpp SVGAnimatedEnumeration.cpp SVGDefsElement.cpp \
SVGLocatable.cpp SVGTransformable.cpp SVGStylable.cpp SVGGElement.cpp SVGAngle.cpp SVGAnimatedAngle.cpp \
SVGColor.cpp SVGPathElement.cpp SVGPathSegList.cpp SVGTests.cpp SVGLangSpace.cpp SVGStringList.cpp \
SVGPathSeg.cpp SVGPathSegClosePath.cpp SVGPathSegMoveto.cpp SVGPathSegLinetoHorizontal.cpp SVGPathSegLinetoVertical.cpp SVGPathSegLineto.cpp \
SVGPathSegCurvetoCubic.cpp SVGDescElement.cpp SVGTitleElement.cpp SVGExternalResourcesRequired.cpp SVGAnimatedBoolean.cpp SVGNumberList.cpp \
SVGPathSegCurvetoCubicSmooth.cpp SVGPathSegCurvetoQuadratic.cpp SVGAnimatedRect.cpp SVGAnimatedString.cpp \
SVGPathSegCurvetoQuadraticSmooth.cpp SVGPathSegArc.cpp SVGURIReference.cpp SVGAnimatedInteger.cpp SVGLengthList.cpp \
SVGSVGElement.cpp SVGRect.cpp SVGFitToViewBox.cpp SVGAnimatedPreserveAspectRatio.cpp SVGPreserveAspectRatio.cpp SVGElement.cpp \
SVGStyleElement.cpp SVGClipPathElement.cpp SVGMaskElement.cpp SVGColorProfileElement.cpp SVGColorProfileRule.cpp SVGZoomAndPan.cpp SVGScriptElement.cpp \
SVGSwitchElement.cpp SVGSymbolElement.cpp \
SVGDefinitionSrcElement.cpp SVGFontFaceElement.cpp SVGFontFaceFormatElement.cpp SVGFontFaceNameElement.cpp SVGFontFaceSrcElement.cpp SVGHKernElement.cpp SVGMetadataElement.cpp SVGVKernElement.cpp SVGCursorElement.cpp SVGForeignObjectElement.cpp SVGFontFaceUriElement.cpp \
SVGElementInstance.cpp SVGElementInstanceList.cpp SVGAnimatedPoints.cpp SVGAnimatedPathData.cpp SVGMarkerElement.cpp SVGViewSpec.cpp SVGViewElement.cpp \
SVGFilterElement.cpp SVGFilterPrimitiveStandardAttributes.cpp SVGFEBlendElement.cpp SVGFEColorMatrixElement.cpp SVGFEComponentTransferElement.cpp SVGComponentTransferFunctionElement.cpp SVGFEFuncAElement.cpp SVGFEFuncBElement.cpp SVGFEFuncGElement.cpp SVGFEFuncRElement.cpp SVGFECompositeElement.cpp SVGFEConvolveMatrixElement.cpp SVGFEFloodElement.cpp SVGFEGaussianBlurElement.cpp SVGFEDiffuseLightingElement.cpp SVGFEDistantLightElement.cpp SVGFEPointLightElement.cpp SVGFESpotLightElement.cpp SVGFEDisplacementMapElement.cpp SVGFEMergeElement.cpp SVGFEMergeNodeElement.cpp SVGFEImageElement.cpp SVGFEMorphologyElement.cpp SVGFEOffsetElement.cpp SVGFESpecularLightingElement.cpp SVGFETileElement.cpp SVGFETurbulenceElement.cpp \
SVGAnimationElement.cpp SVGAnimateElement.cpp SVGSetElement.cpp SVGAnimateMotionElement.cpp SVGAnimateColorElement.cpp SVGAnimateTransformElement.cpp \
SVGEvent.cpp SVGZoomEvent.cpp SVGICCColor.cpp SVGCSSRule.cpp \
SVGGradientElement.cpp SVGRadialGradientElement.cpp SVGLinearGradientElement.cpp SVGStopElement.cpp SVGPatternElement.cpp SVGMPathElement.cpp \
SVGFontElement.cpp SVGAltGlyphElement.cpp SVGGlyphRefElement.cpp SVGAltGlyphDefElement.cpp SVGGlyphElement.cpp SVGMissingGlyphElement.cpp SVGPaint.cpp SVGTextPathElement.cpp SVGWindow.cpp
libksvgdom_la_METASOURCES = AUTO

@ -30,64 +30,64 @@ include_directories(
tde_add_library( ksvgdomimpl STATIC_PIC AUTOMOC
SOURCES
SVGLengthImpl.cc SVGNumberImpl.cc SVGPointImpl.cc SVGTransformImpl.cc
SVGMatrixImpl.cc SVGRectImpl.cc SVGAngleImpl.cc SVGAnimatedLengthImpl.cc
SVGAnimatedNumberImpl.cc SVGAnimatedIntegerImpl.cc SVGAnimatedBooleanImpl.cc
SVGAnimatedEnumerationImpl.cc SVGAnimatedPreserveAspectRatioImpl.cc
SVGAnimatedRectImpl.cc SVGAnimatedAngleImpl.cc SVGAnimatedPathDataImpl.cc
SVGAnimatedStringImpl.cc SVGLengthListImpl.cc SVGNumberListImpl.cc
SVGPointListImpl.cc SVGTransformListImpl.cc SVGStringListImpl.cc
SVGPathSegListImpl.cc SVGElementInstanceListImpl.cc
SVGAnimatedLengthListImpl.cc SVGAnimatedNumberListImpl.cc
SVGAnimatedPointsImpl.cc SVGAnimatedTransformListImpl.cc
SVGShapeImpl.cc SVGContainerImpl.cc SVGBBoxTarget.cc SVGHelperImpl.cc
SVGStylableImpl.cc SVGTransformableImpl.cc SVGTestsImpl.cc SVGLangSpaceImpl.cc
SVGExternalResourcesRequiredImpl.cc SVGLocatableImpl.cc SVGFitToViewBoxImpl.cc
SVGPreserveAspectRatioImpl.cc SVGZoomAndPanImpl.cc SVGViewSpecImpl.cc
SVGElementImpl.cc SVGElementInstanceImpl.cc SVGDocumentImpl.cc
SVGSVGElementImpl.cc SVGWindowImpl.cc SVGDefsElementImpl.cc
SVGUseElementImpl.cc SVGDescElementImpl.cc SVGTitleElementImpl.cc
SVGGElementImpl.cc SVGSwitchElementImpl.cc SVGSymbolElementImpl.cc
SVGImageElementImpl.cc SVGURIReferenceImpl.cc SVGStyleElementImpl.cc
SVGCSSRuleImpl.cc SVGPathElementImpl.cc SVGPathSegImpl.cc
SVGPathSegClosePathImpl.cc SVGPathSegArcImpl.cc SVGPathSegMovetoImpl.cc
SVGPathSegCurvetoQuadraticImpl.cc SVGPathSegCurvetoQuadraticSmoothImpl.cc
SVGPathSegCurvetoCubicImpl.cc SVGPathSegCurvetoCubicSmoothImpl.cc
SVGPathSegLinetoImpl.cc SVGPathSegLinetoHorizontalImpl.cc
SVGPathSegLinetoVerticalImpl.cc SVGRectElementImpl.cc SVGCircleElementImpl.cc
SVGEllipseElementImpl.cc SVGLineElementImpl.cc SVGPolyElementImpl.cc
SVGPolylineElementImpl.cc SVGPolygonElementImpl.cc SVGTextElementImpl.cc
SVGTSpanElementImpl.cc SVGTRefElementImpl.cc SVGTextPositioningElementImpl.cc
SVGTextContentElementImpl.cc SVGTextPathElementImpl.cc SVGPaintImpl.cc
SVGMarkerElementImpl.cc SVGColorImpl.cc SVGICCColorImpl.cc
SVGColorProfileElementImpl.cc SVGColorProfileRuleImpl.cc SVGPaintServerImpl.cc
SVGGradientElementImpl.cc SVGStopElementImpl.cc SVGLinearGradientElementImpl.cc
SVGRadialGradientElementImpl.cc SVGPatternElementImpl.cc
SVGClipPathElementImpl.cc SVGMaskElementImpl.cc SVGFilterElementImpl.cc
SVGFilterPrimitiveStandardAttributesImpl.cc SVGFEBlendElementImpl.cc
SVGFEColorMatrixElementImpl.cc SVGFEComponentTransferElementImpl.cc
SVGComponentTransferFunctionElementImpl.cc SVGFEFuncAElementImpl.cc
SVGFEFuncBElementImpl.cc SVGFEFuncGElementImpl.cc SVGFEFuncRElementImpl.cc
SVGFECompositeElementImpl.cc SVGFEConvolveMatrixElementImpl.cc
SVGFEFloodElementImpl.cc SVGFEGaussianBlurElementImpl.cc
SVGFEDiffuseLightingElementImpl.cc SVGFEDistantLightElementImpl.cc
SVGFEPointLightElementImpl.cc SVGFESpotLightElementImpl.cc
SVGFEDisplacementMapElementImpl.cc SVGFEMergeElementImpl.cc
SVGFEMergeNodeElementImpl.cc SVGFEImageElementImpl.cc
SVGFEMorphologyElementImpl.cc SVGFEOffsetElementImpl.cc
SVGFESpecularLightingElementImpl.cc SVGFETileElementImpl.cc
SVGFETurbulenceElementImpl.cc SVGCursorElementImpl.cc
SVGAElementImpl.cc SVGViewElementImpl.cc SVGScriptElementImpl.cc
SVGEventImpl.cc SVGZoomEventImpl.cc SVGEcma.cc generateddata.cpp
SVGAnimationElementImpl.cc SVGAnimateElementImpl.cc SVGSetElementImpl.cc
SVGAnimateMotionElementImpl.cc SVGAnimateColorElementImpl.cc
SVGAnimateTransformElementImpl.cc SVGMPathElementImpl.cc SVGTimeScheduler.cc
SVGFontElementImpl.cc SVGAltGlyphElementImpl.cc SVGAltGlyphDefElementImpl.cc
SVGGlyphRefElementImpl.cc SVGGlyphElementImpl.cc SVGMissingGlyphElementImpl.cc
SVGFontFaceElementImpl.cc SVGFontFaceFormatElementImpl.cc
SVGFontFaceNameElementImpl.cc SVGFontFaceSrcElementImpl.cc
SVGFontFaceUriElementImpl.cc SVGDefinitionSrcElementImpl.cc
SVGHKernElementImpl.cc SVGVKernElementImpl.cc SVGMetadataElementImpl.cc
SVGForeignObjectElementImpl.cc svgpathparser.cc
SVGLengthImpl.cpp SVGNumberImpl.cpp SVGPointImpl.cpp SVGTransformImpl.cpp
SVGMatrixImpl.cpp SVGRectImpl.cpp SVGAngleImpl.cpp SVGAnimatedLengthImpl.cpp
SVGAnimatedNumberImpl.cpp SVGAnimatedIntegerImpl.cpp SVGAnimatedBooleanImpl.cpp
SVGAnimatedEnumerationImpl.cpp SVGAnimatedPreserveAspectRatioImpl.cpp
SVGAnimatedRectImpl.cpp SVGAnimatedAngleImpl.cpp SVGAnimatedPathDataImpl.cpp
SVGAnimatedStringImpl.cpp SVGLengthListImpl.cpp SVGNumberListImpl.cpp
SVGPointListImpl.cpp SVGTransformListImpl.cpp SVGStringListImpl.cpp
SVGPathSegListImpl.cpp SVGElementInstanceListImpl.cpp
SVGAnimatedLengthListImpl.cpp SVGAnimatedNumberListImpl.cpp
SVGAnimatedPointsImpl.cpp SVGAnimatedTransformListImpl.cpp
SVGShapeImpl.cpp SVGContainerImpl.cpp SVGBBoxTarget.cpp SVGHelperImpl.cpp
SVGStylableImpl.cpp SVGTransformableImpl.cpp SVGTestsImpl.cpp SVGLangSpaceImpl.cpp
SVGExternalResourcesRequiredImpl.cpp SVGLocatableImpl.cpp SVGFitToViewBoxImpl.cpp
SVGPreserveAspectRatioImpl.cpp SVGZoomAndPanImpl.cpp SVGViewSpecImpl.cpp
SVGElementImpl.cpp SVGElementInstanceImpl.cpp SVGDocumentImpl.cpp
SVGSVGElementImpl.cpp SVGWindowImpl.cpp SVGDefsElementImpl.cpp
SVGUseElementImpl.cpp SVGDescElementImpl.cpp SVGTitleElementImpl.cpp
SVGGElementImpl.cpp SVGSwitchElementImpl.cpp SVGSymbolElementImpl.cpp
SVGImageElementImpl.cpp SVGURIReferenceImpl.cpp SVGStyleElementImpl.cpp
SVGCSSRuleImpl.cpp SVGPathElementImpl.cpp SVGPathSegImpl.cpp
SVGPathSegClosePathImpl.cpp SVGPathSegArcImpl.cpp SVGPathSegMovetoImpl.cpp
SVGPathSegCurvetoQuadraticImpl.cpp SVGPathSegCurvetoQuadraticSmoothImpl.cpp
SVGPathSegCurvetoCubicImpl.cpp SVGPathSegCurvetoCubicSmoothImpl.cpp
SVGPathSegLinetoImpl.cpp SVGPathSegLinetoHorizontalImpl.cpp
SVGPathSegLinetoVerticalImpl.cpp SVGRectElementImpl.cpp SVGCircleElementImpl.cpp
SVGEllipseElementImpl.cpp SVGLineElementImpl.cpp SVGPolyElementImpl.cpp
SVGPolylineElementImpl.cpp SVGPolygonElementImpl.cpp SVGTextElementImpl.cpp
SVGTSpanElementImpl.cpp SVGTRefElementImpl.cpp SVGTextPositioningElementImpl.cpp
SVGTextContentElementImpl.cpp SVGTextPathElementImpl.cpp SVGPaintImpl.cpp
SVGMarkerElementImpl.cpp SVGColorImpl.cpp SVGICCColorImpl.cpp
SVGColorProfileElementImpl.cpp SVGColorProfileRuleImpl.cpp SVGPaintServerImpl.cpp
SVGGradientElementImpl.cpp SVGStopElementImpl.cpp SVGLinearGradientElementImpl.cpp
SVGRadialGradientElementImpl.cpp SVGPatternElementImpl.cpp
SVGClipPathElementImpl.cpp SVGMaskElementImpl.cpp SVGFilterElementImpl.cpp
SVGFilterPrimitiveStandardAttributesImpl.cpp SVGFEBlendElementImpl.cpp
SVGFEColorMatrixElementImpl.cpp SVGFEComponentTransferElementImpl.cpp
SVGComponentTransferFunctionElementImpl.cpp SVGFEFuncAElementImpl.cpp
SVGFEFuncBElementImpl.cpp SVGFEFuncGElementImpl.cpp SVGFEFuncRElementImpl.cpp
SVGFECompositeElementImpl.cpp SVGFEConvolveMatrixElementImpl.cpp
SVGFEFloodElementImpl.cpp SVGFEGaussianBlurElementImpl.cpp
SVGFEDiffuseLightingElementImpl.cpp SVGFEDistantLightElementImpl.cpp
SVGFEPointLightElementImpl.cpp SVGFESpotLightElementImpl.cpp
SVGFEDisplacementMapElementImpl.cpp SVGFEMergeElementImpl.cpp
SVGFEMergeNodeElementImpl.cpp SVGFEImageElementImpl.cpp
SVGFEMorphologyElementImpl.cpp SVGFEOffsetElementImpl.cpp
SVGFESpecularLightingElementImpl.cpp SVGFETileElementImpl.cpp
SVGFETurbulenceElementImpl.cpp SVGCursorElementImpl.cpp
SVGAElementImpl.cpp SVGViewElementImpl.cpp SVGScriptElementImpl.cpp
SVGEventImpl.cpp SVGZoomEventImpl.cpp SVGEcma.cpp generateddata.cpp
SVGAnimationElementImpl.cpp SVGAnimateElementImpl.cpp SVGSetElementImpl.cpp
SVGAnimateMotionElementImpl.cpp SVGAnimateColorElementImpl.cpp
SVGAnimateTransformElementImpl.cpp SVGMPathElementImpl.cpp SVGTimeScheduler.cpp
SVGFontElementImpl.cpp SVGAltGlyphElementImpl.cpp SVGAltGlyphDefElementImpl.cpp
SVGGlyphRefElementImpl.cpp SVGGlyphElementImpl.cpp SVGMissingGlyphElementImpl.cpp
SVGFontFaceElementImpl.cpp SVGFontFaceFormatElementImpl.cpp
SVGFontFaceNameElementImpl.cpp SVGFontFaceSrcElementImpl.cpp
SVGFontFaceUriElementImpl.cpp SVGDefinitionSrcElementImpl.cpp
SVGHKernElementImpl.cpp SVGVKernElementImpl.cpp SVGMetadataElementImpl.cpp
SVGForeignObjectElementImpl.cpp svgpathparser.cpp
LINK kjs-shared
)

@ -29,87 +29,87 @@ KDE_OPTIONS = nofinal
KDE_CXXFLAGS = $(USE_EXCEPTIONS)
libksvgdomimpl_la_SOURCES = \
SVGLengthImpl.cc SVGNumberImpl.cc SVGPointImpl.cc SVGTransformImpl.cc \
SVGMatrixImpl.cc SVGRectImpl.cc SVGAngleImpl.cc \
SVGLengthImpl.cpp SVGNumberImpl.cpp SVGPointImpl.cpp SVGTransformImpl.cpp \
SVGMatrixImpl.cpp SVGRectImpl.cpp SVGAngleImpl.cpp \
\
SVGAnimatedLengthImpl.cc SVGAnimatedNumberImpl.cc SVGAnimatedIntegerImpl.cc \
SVGAnimatedBooleanImpl.cc SVGAnimatedEnumerationImpl.cc SVGAnimatedPreserveAspectRatioImpl.cc \
SVGAnimatedRectImpl.cc SVGAnimatedAngleImpl.cc SVGAnimatedPathDataImpl.cc SVGAnimatedStringImpl.cc \
SVGAnimatedLengthImpl.cpp SVGAnimatedNumberImpl.cpp SVGAnimatedIntegerImpl.cpp \
SVGAnimatedBooleanImpl.cpp SVGAnimatedEnumerationImpl.cpp SVGAnimatedPreserveAspectRatioImpl.cpp \
SVGAnimatedRectImpl.cpp SVGAnimatedAngleImpl.cpp SVGAnimatedPathDataImpl.cpp SVGAnimatedStringImpl.cpp \
\
SVGLengthListImpl.cc SVGNumberListImpl.cc SVGPointListImpl.cc SVGTransformListImpl.cc \
SVGStringListImpl.cc SVGPathSegListImpl.cc SVGElementInstanceListImpl.cc \
SVGLengthListImpl.cpp SVGNumberListImpl.cpp SVGPointListImpl.cpp SVGTransformListImpl.cpp \
SVGStringListImpl.cpp SVGPathSegListImpl.cpp SVGElementInstanceListImpl.cpp \
\
SVGAnimatedLengthListImpl.cc SVGAnimatedNumberListImpl.cc \
SVGAnimatedPointsImpl.cc SVGAnimatedTransformListImpl.cc \
SVGAnimatedLengthListImpl.cpp SVGAnimatedNumberListImpl.cpp \
SVGAnimatedPointsImpl.cpp SVGAnimatedTransformListImpl.cpp \
\
SVGShapeImpl.cc SVGContainerImpl.cc SVGBBoxTarget.cc SVGHelperImpl.cc \
SVGStylableImpl.cc SVGTransformableImpl.cc SVGTestsImpl.cc SVGLangSpaceImpl.cc \
SVGExternalResourcesRequiredImpl.cc SVGLocatableImpl.cc SVGFitToViewBoxImpl.cc \
SVGPreserveAspectRatioImpl.cc SVGZoomAndPanImpl.cc SVGViewSpecImpl.cc \
SVGShapeImpl.cpp SVGContainerImpl.cpp SVGBBoxTarget.cpp SVGHelperImpl.cpp \
SVGStylableImpl.cpp SVGTransformableImpl.cpp SVGTestsImpl.cpp SVGLangSpaceImpl.cpp \
SVGExternalResourcesRequiredImpl.cpp SVGLocatableImpl.cpp SVGFitToViewBoxImpl.cpp \
SVGPreserveAspectRatioImpl.cpp SVGZoomAndPanImpl.cpp SVGViewSpecImpl.cpp \
\
SVGElementImpl.cc SVGElementInstanceImpl.cc \
SVGDocumentImpl.cc SVGSVGElementImpl.cc SVGWindowImpl.cc \
SVGDefsElementImpl.cc SVGUseElementImpl.cc \
SVGDescElementImpl.cc SVGTitleElementImpl.cc \
SVGGElementImpl.cc SVGSwitchElementImpl.cc \
SVGSymbolElementImpl.cc SVGImageElementImpl.cc \
SVGURIReferenceImpl.cc \
SVGElementImpl.cpp SVGElementInstanceImpl.cpp \
SVGDocumentImpl.cpp SVGSVGElementImpl.cpp SVGWindowImpl.cpp \
SVGDefsElementImpl.cpp SVGUseElementImpl.cpp \
SVGDescElementImpl.cpp SVGTitleElementImpl.cpp \
SVGGElementImpl.cpp SVGSwitchElementImpl.cpp \
SVGSymbolElementImpl.cpp SVGImageElementImpl.cpp \
SVGURIReferenceImpl.cpp \
\
SVGStyleElementImpl.cc SVGCSSRuleImpl.cc \
SVGStyleElementImpl.cpp SVGCSSRuleImpl.cpp \
\
SVGPathElementImpl.cc SVGPathSegImpl.cc SVGPathSegClosePathImpl.cc SVGPathSegArcImpl.cc \
SVGPathSegMovetoImpl.cc SVGPathSegCurvetoQuadraticImpl.cc SVGPathSegCurvetoQuadraticSmoothImpl.cc \
SVGPathSegCurvetoCubicImpl.cc SVGPathSegCurvetoCubicSmoothImpl.cc SVGPathSegLinetoImpl.cc \
SVGPathSegLinetoHorizontalImpl.cc SVGPathSegLinetoVerticalImpl.cc \
SVGPathElementImpl.cpp SVGPathSegImpl.cpp SVGPathSegClosePathImpl.cpp SVGPathSegArcImpl.cpp \
SVGPathSegMovetoImpl.cpp SVGPathSegCurvetoQuadraticImpl.cpp SVGPathSegCurvetoQuadraticSmoothImpl.cpp \
SVGPathSegCurvetoCubicImpl.cpp SVGPathSegCurvetoCubicSmoothImpl.cpp SVGPathSegLinetoImpl.cpp \
SVGPathSegLinetoHorizontalImpl.cpp SVGPathSegLinetoVerticalImpl.cpp \
\
SVGRectElementImpl.cc SVGCircleElementImpl.cc SVGEllipseElementImpl.cc SVGLineElementImpl.cc \
SVGPolyElementImpl.cc SVGPolylineElementImpl.cc SVGPolygonElementImpl.cc \
SVGRectElementImpl.cpp SVGCircleElementImpl.cpp SVGEllipseElementImpl.cpp SVGLineElementImpl.cpp \
SVGPolyElementImpl.cpp SVGPolylineElementImpl.cpp SVGPolygonElementImpl.cpp \
\
SVGTextElementImpl.cc SVGTSpanElementImpl.cc SVGTRefElementImpl.cc \
SVGTextPositioningElementImpl.cc SVGTextContentElementImpl.cc SVGTextPathElementImpl.cc \
SVGTextElementImpl.cpp SVGTSpanElementImpl.cpp SVGTRefElementImpl.cpp \
SVGTextPositioningElementImpl.cpp SVGTextContentElementImpl.cpp SVGTextPathElementImpl.cpp \
\
SVGPaintImpl.cc SVGMarkerElementImpl.cc \
SVGPaintImpl.cpp SVGMarkerElementImpl.cpp \
\
SVGColorImpl.cc SVGICCColorImpl.cc SVGColorProfileElementImpl.cc SVGColorProfileRuleImpl.cc \
SVGColorImpl.cpp SVGICCColorImpl.cpp SVGColorProfileElementImpl.cpp SVGColorProfileRuleImpl.cpp \
\
SVGPaintServerImpl.cc SVGGradientElementImpl.cc SVGStopElementImpl.cc \
SVGLinearGradientElementImpl.cc SVGRadialGradientElementImpl.cc SVGPatternElementImpl.cc \
SVGPaintServerImpl.cpp SVGGradientElementImpl.cpp SVGStopElementImpl.cpp \
SVGLinearGradientElementImpl.cpp SVGRadialGradientElementImpl.cpp SVGPatternElementImpl.cpp \
\
SVGClipPathElementImpl.cc SVGMaskElementImpl.cc \
SVGClipPathElementImpl.cpp SVGMaskElementImpl.cpp \
\
SVGFilterElementImpl.cc SVGFilterPrimitiveStandardAttributesImpl.cc \
SVGFEBlendElementImpl.cc SVGFEColorMatrixElementImpl.cc \
SVGFEComponentTransferElementImpl.cc SVGComponentTransferFunctionElementImpl.cc \
SVGFEFuncAElementImpl.cc SVGFEFuncBElementImpl.cc SVGFEFuncGElementImpl.cc \
SVGFEFuncRElementImpl.cc SVGFECompositeElementImpl.cc SVGFEConvolveMatrixElementImpl.cc \
SVGFEFloodElementImpl.cc SVGFEGaussianBlurElementImpl.cc SVGFEDiffuseLightingElementImpl.cc \
SVGFEDistantLightElementImpl.cc SVGFEPointLightElementImpl.cc SVGFESpotLightElementImpl.cc \
SVGFEDisplacementMapElementImpl.cc SVGFEMergeElementImpl.cc SVGFEMergeNodeElementImpl.cc \
SVGFEImageElementImpl.cc SVGFEMorphologyElementImpl.cc SVGFEOffsetElementImpl.cc \
SVGFESpecularLightingElementImpl.cc SVGFETileElementImpl.cc SVGFETurbulenceElementImpl.cc \
SVGFilterElementImpl.cpp SVGFilterPrimitiveStandardAttributesImpl.cpp \
SVGFEBlendElementImpl.cpp SVGFEColorMatrixElementImpl.cpp \
SVGFEComponentTransferElementImpl.cpp SVGComponentTransferFunctionElementImpl.cpp \
SVGFEFuncAElementImpl.cpp SVGFEFuncBElementImpl.cpp SVGFEFuncGElementImpl.cpp \
SVGFEFuncRElementImpl.cpp SVGFECompositeElementImpl.cpp SVGFEConvolveMatrixElementImpl.cpp \
SVGFEFloodElementImpl.cpp SVGFEGaussianBlurElementImpl.cpp SVGFEDiffuseLightingElementImpl.cpp \
SVGFEDistantLightElementImpl.cpp SVGFEPointLightElementImpl.cpp SVGFESpotLightElementImpl.cpp \
SVGFEDisplacementMapElementImpl.cpp SVGFEMergeElementImpl.cpp SVGFEMergeNodeElementImpl.cpp \
SVGFEImageElementImpl.cpp SVGFEMorphologyElementImpl.cpp SVGFEOffsetElementImpl.cpp \
SVGFESpecularLightingElementImpl.cpp SVGFETileElementImpl.cpp SVGFETurbulenceElementImpl.cpp \
\
SVGCursorElementImpl.cc \
SVGCursorElementImpl.cpp \
\
SVGAElementImpl.cc SVGViewElementImpl.cc \
SVGAElementImpl.cpp SVGViewElementImpl.cpp \
\
SVGScriptElementImpl.cc SVGEventImpl.cc SVGZoomEventImpl.cc \
SVGEcma.cc generateddata.cpp \
SVGScriptElementImpl.cpp SVGEventImpl.cpp SVGZoomEventImpl.cpp \
SVGEcma.cpp generateddata.cpp \
\
SVGAnimationElementImpl.cc SVGAnimateElementImpl.cc SVGSetElementImpl.cc \
SVGAnimateMotionElementImpl.cc SVGAnimateColorElementImpl.cc \
SVGAnimateTransformElementImpl.cc SVGMPathElementImpl.cc SVGTimeScheduler.cc \
SVGAnimationElementImpl.cpp SVGAnimateElementImpl.cpp SVGSetElementImpl.cpp \
SVGAnimateMotionElementImpl.cpp SVGAnimateColorElementImpl.cpp \
SVGAnimateTransformElementImpl.cpp SVGMPathElementImpl.cpp SVGTimeScheduler.cpp \
\
SVGFontElementImpl.cc SVGAltGlyphElementImpl.cc SVGAltGlyphDefElementImpl.cc \
SVGGlyphRefElementImpl.cc SVGGlyphElementImpl.cc SVGMissingGlyphElementImpl.cc \
SVGFontFaceElementImpl.cc SVGFontFaceFormatElementImpl.cc SVGFontFaceNameElementImpl.cc \
SVGFontFaceSrcElementImpl.cc SVGFontFaceUriElementImpl.cc SVGDefinitionSrcElementImpl.cc \
SVGHKernElementImpl.cc SVGVKernElementImpl.cc \
SVGFontElementImpl.cpp SVGAltGlyphElementImpl.cpp SVGAltGlyphDefElementImpl.cpp \
SVGGlyphRefElementImpl.cpp SVGGlyphElementImpl.cpp SVGMissingGlyphElementImpl.cpp \
SVGFontFaceElementImpl.cpp SVGFontFaceFormatElementImpl.cpp SVGFontFaceNameElementImpl.cpp \
SVGFontFaceSrcElementImpl.cpp SVGFontFaceUriElementImpl.cpp SVGDefinitionSrcElementImpl.cpp \
SVGHKernElementImpl.cpp SVGVKernElementImpl.cpp \
\
SVGMetadataElementImpl.cc \
SVGMetadataElementImpl.cpp \
\
SVGForeignObjectElementImpl.cc \
SVGForeignObjectElementImpl.cpp \
\
svgpathparser.cc
svgpathparser.cpp
libksvgdomimpl_la_METASOURCES = AUTO

@ -26,7 +26,7 @@
#include <vector>
#include <iostream>
#include "myboost/shared_ptr.hpp"
#include "myboost/shared_ptr.h"
namespace T2P
{

@ -22,7 +22,7 @@
#include <math.h>
#include "myboost/shared_ptr.hpp"
#include "myboost/shared_ptr.h"
#include <fontconfig/fontconfig.h>
#include <fribidi/fribidi.h>

@ -1,5 +1,5 @@
//
// boost/assert.hpp - BOOST_ASSERT(expr)
// boost/assert.h - BOOST_ASSERT(expr)
//
// Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd.
//
@ -13,8 +13,8 @@
// See http://www.boost.org/libs/utility/assert.html for documentation.
//
#ifndef ASSERT_HPP
#define ASSERT_HPP
#ifndef ASSERT_H
#define ASSERT_H
#undef BOOST_ASSERT

@ -1,8 +1,8 @@
#ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED
#define BOOST_CHECKED_DELETE_HPP_INCLUDED
#ifndef BOOST_CHECKED_DELETE_H_INCLUDED
#define BOOST_CHECKED_DELETE_H_INCLUDED
//
// boost/checked_delete.hpp
// boost/checked_delete.h
//
// Copyright (c) 1999, 2000, 2001, 2002 boost.org
// Copyright (c) 2002, 2003 Peter Dimov
@ -58,4 +58,4 @@ template<class T> struct checked_array_deleter
} // namespace myboost
#endif // #ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED
#endif // #ifndef BOOST_CHECKED_DELETE_H_INCLUDED

@ -1,8 +1,8 @@
#ifndef BOOST_DETAIL_LWM_PTHREADS_HPP_INCLUDED
#define BOOST_DETAIL_LWM_PTHREADS_HPP_INCLUDED
#ifndef BOOST_DETAIL_LWM_PTHREADS_H_INCLUDED
#define BOOST_DETAIL_LWM_PTHREADS_H_INCLUDED
//
// boost/detail/lwm_pthreads.hpp
// boost/detail/lwm_pthreads.h
//
// Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
//
@ -71,4 +71,4 @@ public:
} // namespace myboost
#endif // #ifndef BOOST_DETAIL_LWM_PTHREADS_HPP_INCLUDED
#endif // #ifndef BOOST_DETAIL_LWM_PTHREADS_H_INCLUDED

@ -1,8 +1,8 @@
#ifndef BOOST_DETAIL_SHARED_COUNT_HPP_INCLUDED
#define BOOST_DETAIL_SHARED_COUNT_HPP_INCLUDED
#ifndef BOOST_DETAIL_SHARED_COUNT_H_INCLUDED
#define BOOST_DETAIL_SHARED_COUNT_H_INCLUDED
//
// detail/shared_count.hpp
// detail/shared_count.h
//
// Copyright (c) 2001, 2002, 2003 Peter Dimov and Multi Media Ltd.
//
@ -12,9 +12,9 @@
// warranty, and with no claim as to its suitability for any purpose.
//
#include "myboost/checked_delete.hpp"
#include "myboost/throw_exception.hpp"
#include "myboost/lightweight_mutex.hpp"
#include "myboost/checked_delete.h"
#include "myboost/throw_exception.h"
#include "myboost/lightweight_mutex.h"
#include <memory> // std::auto_ptr, std::allocator
#include <functional> // std::less
@ -364,4 +364,4 @@ inline shared_count::shared_count(weak_count const & r): pi_(r.pi_)
} // namespace myboost
#endif // #ifndef BOOST_DETAIL_SHARED_COUNT_HPP_INCLUDED
#endif // #ifndef BOOST_DETAIL_SHARED_COUNT_H_INCLUDED

@ -1,7 +1,7 @@
#ifndef BOOST_SHARED_PTR_HPP_INCLUDED
#define BOOST_SHARED_PTR_HPP_INCLUDED
#ifndef BOOST_SHARED_PTR_H_INCLUDED
#define BOOST_SHARED_PTR_H_INCLUDED
// shared_ptr.hpp
// shared_ptr.h
//
// (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
// Copyright (c) 2001, 2002, 2003 Peter Dimov
@ -14,10 +14,10 @@
// See http://www.boost.org/libs/smart_ptr/shared_ptr.htm for documentation.
//
#include "myboost/assert.hpp"
#include "myboost/checked_delete.hpp"
#include "myboost/throw_exception.hpp"
#include "myboost/shared_count.hpp"
#include "myboost/assert.h"
#include "myboost/checked_delete.h"
#include "myboost/throw_exception.h"
#include "myboost/shared_count.h"
#include <memory> // for std::auto_ptr
#include <algorithm> // for std::swap
@ -392,4 +392,4 @@ template<class D, class T> D * get_deleter(shared_ptr<T> const & p)
} // namespace boost
#endif // #ifndef BOOST_SHARED_PTR_HPP_INCLUDED
#endif // #ifndef BOOST_SHARED_PTR_H_INCLUDED

@ -1,9 +1,9 @@
#ifndef BOOST_THROW_EXCEPTION_HPP_INCLUDED
#define BOOST_THROW_EXCEPTION_HPP_INCLUDED
#ifndef BOOST_THROW_EXCEPTION_H_INCLUDED
#define BOOST_THROW_EXCEPTION_H_INCLUDED
//
// boost/throw_exception.hpp
// boost/throw_exception.h
//
// Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
//
@ -27,4 +27,4 @@ template<class E> void throw_exception(E const & e)
} // namespace myboost
#endif // #ifndef BOOST_THROW_EXCEPTION_HPP_INCLUDED
#endif // #ifndef BOOST_THROW_EXCEPTION_H_INCLUDED

@ -138,10 +138,10 @@ foreach(@useresult) {
my $temp = $middle[0];
if($calcMode != 2) {
$temp =~ s/.cc://;
$temp =~ s/.cpp://;
$class = $temp;
} else {
$temp =~ s/.cc//;
$temp =~ s/.cpp//;
$class = substr($temp, 0, index($temp, ":"));
}
}

@ -12,11 +12,11 @@ fi
# make them
touch $1.h
touch $1.cc
touch $1.cpp
#start with copyright notices
cat ../COPYRIGHTS > $1.h
cat ../COPYRIGHTS > $1.cc
cat ../COPYRIGHTS > $1.cpp
# add define for multiple include problem
echo "" >> $1.h
@ -27,13 +27,13 @@ echo "namespace KSVG" >> $1.h
echo "{" >> $1.h
echo "" >> $1.h
#include in .cc + namespace
echo "" >> $1.cc
echo "#include \"$1.h\"" >> $1.cc
echo "#include \"$1Impl.h\"" >> $1.cc
echo "" >> $1.cc
echo "using namespace KSVG;" >> $1.cc
echo "" >> $1.cc
#include in .cpp + namespace
echo "" >> $1.cpp
echo "#include \"$1.h\"" >> $1.cpp
echo "#include \"$1Impl.h\"" >> $1.cpp
echo "" >> $1.cpp
echo "using namespace KSVG;" >> $1.cpp
echo "" >> $1.cpp
#go go go
$cmd_awk -f ../makeheader $1

@ -12,11 +12,11 @@ fi
# you cant touch this
touch $1Impl.h
touch $1Impl.cc
touch $1Impl.cpp
#start with copyright notices
cat ../COPYRIGHTS > $1Impl.h
cat ../COPYRIGHTS > $1Impl.cc
cat ../COPYRIGHTS > $1Impl.cpp
# add define for multiple include problem
echo "" >> $1Impl.h
@ -28,12 +28,12 @@ echo "" >> $1Impl.h
echo "namespace KSVG" >> $1Impl.h
echo "{" >> $1Impl.h
#include in .cc + namespace
echo "" >> $1Impl.cc
echo "#include \"$1Impl.h\"" >> $1Impl.cc
echo "" >> $1Impl.cc
echo "using namespace KSVG;" >> $1Impl.cc
echo "" >> $1Impl.cc
#include in .cpp + namespace
echo "" >> $1Impl.cpp
echo "#include \"$1Impl.h\"" >> $1Impl.cpp
echo "" >> $1Impl.cpp
echo "using namespace KSVG;" >> $1Impl.cpp
echo "" >> $1Impl.cpp
#go go go
$cmd_awk -f ../makeimpl $1

@ -359,7 +359,7 @@ function crawlFiles($path)
crawlFiles($path."/".$file);
fputs($fp,"Leaving directory ".$file."\n");
}
elseif (is_file($path."/".$file) && preg_match("/^[A-Za-z0-9_]+(\.cc|\.cpp|\.h|\.hpp)$/",$file))
elseif (is_file($path."/".$file) && preg_match("/^[A-Za-z0-9_]+(\.cpp|\.h)$/",$file))
{
fputs($fp,"\tchecking $file\n");
searchKalyptusCode($path."/".$file,$fp);

@ -1,6 +1,6 @@
function printg( a )
{
printf a >> FILENAME ".cc"
printf a >> FILENAME ".cpp"
}
function doFunc( a )
{

@ -21,7 +21,7 @@ function printg( a )
}
function printh( a )
{
printf a >> FILENAME "Impl.cc"
printf a >> FILENAME "Impl.cpp"
}
function doFuncCC( a, class )
{
@ -166,7 +166,7 @@ function doAttr( a, class )
printg( " " )n
printg( b[nr] ");\n" )
# do put method .cc
# do put method .cpp
printtofunc( "void " clas "::set" )
printtofunc( toupper( substr( b[nr], 1, 1) ) )
printtofunc( substr( b[nr], 2) "(" )
@ -212,7 +212,7 @@ function doAttr( a, class )
$temp = b[nr]
printg( $temp "() const;\n" )
# do get method .cc
# do get method .cpp
i = 1
while ( i < nr )
{
@ -277,7 +277,7 @@ function doReadonlyAttr( a, class )
$temp = b[nr]
printg( $temp "() const;\n" )
# do get method .cc
# do get method .cpp
i = 1
while ( i < nr )
{

@ -32,7 +32,7 @@ link_directories(
##### svgdisplay (executable) ###################
tde_add_executable( svgdisplay AUTOMOC
SOURCES SVGTestWidget.cc svgdisplay.cc
SOURCES SVGTestWidget.cpp svgdisplay.cpp
LINK ksvg-shared
DESTINATION ${BIN_INSTALL_DIR}
)

@ -4,7 +4,7 @@ KDE_CXXFLAGS = $(USE_EXCEPTIONS)
bin_PROGRAMS = svgdisplay printnodetest
svgdisplay_SOURCES = SVGTestWidget.cc svgdisplay.cc
svgdisplay_SOURCES = SVGTestWidget.cpp svgdisplay.cpp
svgdisplay_LDADD = $(LIB_TDECORE) ../../libksvg.la
svgdisplay_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor

@ -28,8 +28,8 @@ dnl -------------------------------------------------------
AC_DEFUN([AC_CHECK_CXX_OPT],[
opt="$1"
AC_MSG_CHECKING([if $CXX accepts $opt])
echo 'void f(){}' > conftest.cc
if test -z "`${CXX} ${CXXFLAGS} ${OPTS} $opt -c conftest.cc 2>&1`"; then
echo 'void f(){}' > conftest.cpp
if test -z "`${CXX} ${CXXFLAGS} ${OPTS} $opt -c conftest.cpp 2>&1`"; then
AC_MSG_RESULT(yes)
rm conftest.*
$2
@ -389,8 +389,8 @@ if test x$acx_cothread != xno ; then
AC_MSG_RESULT($acx_cothread_patch)
if test x$acx_cothread_patch = xno ; then
AC_MSG_CHECKING([if the cothread patch is critical])
echo 'void foo() { throw "Hello"; }' > conftest.cc
compile="$CXX $CXXFLAGS -c conftest.cc"
echo 'void foo() { throw "Hello"; }' > conftest.cpp
compile="$CXX $CXXFLAGS -c conftest.cpp"
check="nm conftest.o | grep sjthrow | cat > conftest.out"
acx_cothread_patch=yes
if AC_TRY_EVAL(compile) && AC_TRY_EVAL(check) ; then

@ -45,10 +45,10 @@ install( FILES
tde_add_library( poppler-tqt SHARED AUTOMOC
SOURCES
poppler-document.cc poppler-fontinfo.cc
poppler-link.cc poppler-page.cc
poppler-page-transition.cc poppler-page-transition-private.h
poppler-private.cc poppler-private.h
poppler-document.cpp poppler-fontinfo.cpp
poppler-link.cpp poppler-page.cpp
poppler-page-transition.cpp poppler-page-transition-private.h
poppler-private.cpp poppler-private.h
VERSION 0.0.0
LINK ${POPPLER_LIBRARIES} ${TQT_LIBRARIES}
DESTINATION ${LIB_INSTALL_DIR}

@ -15,13 +15,13 @@ poppler_include_HEADERS = \
lib_LTLIBRARIES = libpoppler-tqt.la
libpoppler_tqt_la_SOURCES = \
poppler-document.cc \
poppler-fontinfo.cc \
poppler-link.cc \
poppler-page.cc \
poppler-page-transition.cc \
poppler-document.cpp \
poppler-fontinfo.cpp \
poppler-link.cpp \
poppler-page.cpp \
poppler-page-transition.cpp \
poppler-page-transition-private.h \
poppler-private.cc \
poppler-private.cpp \
poppler-private.h
libpoppler_tqt_la_LIBADD = \

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save