diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 47d455dd55be855e4cc691c32f687f723d9247ee (patch) | |
tree | 52e236aaa2576bdb3840ebede26619692fed6d7d /kpovmodeler/pmpovray35format.cpp | |
download | tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmpovray35format.cpp')
-rw-r--r-- | kpovmodeler/pmpovray35format.cpp | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/kpovmodeler/pmpovray35format.cpp b/kpovmodeler/pmpovray35format.cpp new file mode 100644 index 00000000..c00b1d65 --- /dev/null +++ b/kpovmodeler/pmpovray35format.cpp @@ -0,0 +1,100 @@ +/* +************************************************************************** + description + -------------------- + copyright : (C) 2003 by Andreas Zehender + email : zehender@kde.org +************************************************************************** + +************************************************************************** +* * +* This program is free software; you can redistribute it and/or modify * +* it under the terms of the GNU General Public License as published by * +* the Free Software Foundation; either version 2 of the License, or * +* (at your option) any later version. * +* * +**************************************************************************/ + +#include "pmpovray35format.h" +#include "pmpovray35serialization.h" + +#include "pmpovrayparser.h" +#include "pmoutputdevice.h" + +#include <klocale.h> + +PMPovray35Format::PMPovray35Format( ) + : PMPovray31Format( ) +{ + registerMethod( "IsoSurface", PMPov35SerIsoSurface ); + registerMethod( "Light", PMPov35SerLight ); + registerMethod( "ProjectedThrough", PMPov35SerProjectedThrough ); + registerMethod( "GlobalSettings", PMPov35SerGlobalSettings ); + registerMethod( "Radiosity", PMPov35SerRadiosity ); + registerMethod( "GlobalPhotons", PMPov35SerGlobalPhotons ); + registerMethod( "Photons", PMPov35SerPhotons ); + registerMethod( "Interior", PMPov35SerInterior ); + registerMethod( "LightGroup", PMPov35SerLightGroup ); + registerMethod( "Pattern", PMPov35SerPattern ); + registerMethod( "Normal", PMPov35SerNormal ); + registerMethod( "InteriorTexture", PMPov35SerInteriorTexture ); + registerMethod( "Warp", PMPov35SerWarp ); + registerMethod( "SphereSweep", PMPov35SerSphereSweep ); + registerMethod( "Finish", PMPov35SerFinish ); + registerMethod( "Mesh", PMPov35SerMesh ); + registerMethod( "Media", PMPov35SerMedia ); + registerMethod( "GraphicalObject", PMPov35SerGraphicalObject ); + registerMethod( "Pigment", PMPov35SerPigment ); + registerMethod( "Texture", PMPov35SerTexture ); + registerMethod( "BicubicPatch", PMPov35SerBicubicPatch ); + registerMethod( "Triangle", PMPov35SerTriangle ); +} + + +PMPovray35Format::~PMPovray35Format( ) +{ + +} + +PMParser* PMPovray35Format::newParser( PMPart* part, QIODevice* dev ) const +{ + return new PMPovrayParser( part, dev ); +} + +PMParser* PMPovray35Format::newParser( PMPart* part, const QByteArray& data ) const +{ + return new PMPovrayParser( part, data ); +} + +PMSerializer* PMPovray35Format::newSerializer( QIODevice* dev ) +{ + return new PMOutputDevice( dev, this ); +} + +PMRenderer* PMPovray35Format::newRenderer( PMPart* ) const +{ + // TODO + return 0; +} + +QString PMPovray35Format::mimeType( ) const +{ + return QString( "text/plain" ); +} + +QStringList PMPovray35Format::importPatterns( ) const +{ + QStringList result; + result.push_back( QString( "*.pov *.inc|" ) + + i18n( "POV-Ray 3.5 Files (*.pov, *.inc)" ) ); + return result; +} + +QStringList PMPovray35Format::exportPatterns( ) const +{ + QStringList result; + result.push_back( QString( "*.pov|" ) + i18n( "POV-Ray 3.5 Files (*.pov)" ) ); + result.push_back( QString( "*.ini|" ) + i18n( "POV-Ray 3.5 Include Files (*.ini)" ) ); + return result; + +} |