From 47d455dd55be855e4cc691c32f687f723d9247ee Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- kpovmodeler/pmrendermode.h | 128 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 kpovmodeler/pmrendermode.h (limited to 'kpovmodeler/pmrendermode.h') diff --git a/kpovmodeler/pmrendermode.h b/kpovmodeler/pmrendermode.h new file mode 100644 index 00000000..a8c891ce --- /dev/null +++ b/kpovmodeler/pmrendermode.h @@ -0,0 +1,128 @@ +//-*-C++-*- +/* +************************************************************************** + description + -------------------- + copyright : (C) 2001 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. * +* * +**************************************************************************/ + + +#ifndef PMRENDERMODE_H +#define PMRENDERMODE_H + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include + +/** + * Class that represents the render options for povray + * + * See povray documentation, output options. + */ +class PMRenderMode +{ +public: + /** + * Sampling method for antialiasing. See povray documentation. + */ + enum AASamplingMethod { AntialiasingNonRecursive = 0, AntialiasingRecursive = 1 }; + + /** + * Default constructor + */ + PMRenderMode( ); + /** + * Reads the attributes from the QDomElement + */ + PMRenderMode( const QDomElement& e ); + + void setDescription( const QString& descr ) { m_description = descr; } + QString description( ) const { return m_description; } + + void setHeight( int height ); + int height( ) const { return m_height; } + void setWidth( int width ); + int width( ) const { return m_width; } + + void setSubSection( bool on ) { m_subSection = on; } + bool subSection( ) const { return m_subSection; } + void setStartRow( double startRow ); + double startRow( ) const { return m_startRow; } + void setEndRow( double endRow ); + double endRow( ) const { return m_endRow; } + void setStartColumn( double startColumn ); + double startColumn( ) const { return m_startColumn; } + void setEndColumn( double endColumn ); + double endColumn( ) const { return m_endColumn; } + + void setQuality( int quality ); + int quality( ) const { return m_quality; } + + void setRadiosity( bool on ) { m_radiosity = on; } + bool radiosity( ) const { return m_radiosity; } + + void setAntialiasing( bool on ) { m_antialiasing = on; } + bool antialiasing( ) const { return m_antialiasing; } + void setSamplingMethod( int method ); + int samplingMethod( ) const { return m_samplingMethod; } + void setAntialiasingThreshold( double t ) { m_antialiasThreshold = t; } + double antialiasingThreshold( ) const { return m_antialiasThreshold; } + void setAntialiasingJitter( bool on ) { m_antialiasJitter = on; } + bool antialiasingJitter( ) const { return m_antialiasJitter; } + void setAntialiasingJitterAmount( double amount ) { m_antialiasJitterAmount = amount; } + double antialiasingJitterAmount( ) const { return m_antialiasJitterAmount; } + void setAntialiasingDepth( int depth ); + int antialiasingDepth( ) const { return m_antialiasDepth; } + + void setAlpha( bool on ) { m_alpha = on; } + bool alpha( ) const { return m_alpha; } + + + /** + * Returns the settings as povray command line switches + */ + QStringList commandLineSwitches( ) const; + /** + * Saves the data + */ + void serialize( QDomElement& e ) const; + +private: + void init( ); + + QString m_description; + int m_height, m_width; + bool m_subSection; + double m_startRow, m_endRow, m_startColumn, m_endColumn; + + int m_quality; + bool m_radiosity; + bool m_antialiasing; + int m_samplingMethod; + double m_antialiasThreshold; + bool m_antialiasJitter; + double m_antialiasJitterAmount; + int m_antialiasDepth; + + bool m_alpha; +}; + +typedef QPtrList PMRenderModeList; +typedef QPtrListIterator PMRenderModeListIterator; + +#endif -- cgit v1.2.3