diff options
Diffstat (limited to 'kpovmodeler/pmscene.h')
-rw-r--r-- | kpovmodeler/pmscene.h | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/kpovmodeler/pmscene.h b/kpovmodeler/pmscene.h new file mode 100644 index 00000000..2932c43c --- /dev/null +++ b/kpovmodeler/pmscene.h @@ -0,0 +1,92 @@ +//-*-C++-*- +/* +************************************************************************** + description + -------------------- + copyright : (C) 2000-2002 by Andreas Zehender + email : [email protected] +************************************************************************** + +************************************************************************** +* * +* 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 PMSCENE_H +#define PMSCENE_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include "pmcompositeobject.h" +#include "pmrendermode.h" + +/** + * Class for povray scenes. + * + * A document has a PMScene object as top level object. A PMScene can't have + * a parent + */ +class PMScene : public PMCompositeObject +{ + typedef PMCompositeObject Base; +public: + /** + * Creates an empty PMScene + */ + PMScene( PMPart* part ); + /** + * Copy constructor + */ + PMScene( const PMScene& s ); + /** + * deletes the scene and all objects + */ + virtual ~PMScene( ); + + /** */ + virtual PMMetaObject* metaObject( ) const; + /** */ + virtual void cleanUp( ) const; + + /** */ + virtual PMObject* copy( ) const { return new PMScene( *this ); } + /** */ + virtual QString description( ) const; + + /** */ + virtual QString pixmap( ) const { return QString( "pmscene" ); } + + /** */ + virtual void serialize( QDomElement& e, QDomDocument& doc ) const; + /** */ + virtual void readAttributes( const PMXMLHelper& h ); + + /** + * Returns a pointer to the list of render modes + * @see PMRenderMode + */ + PMRenderModeList* renderModes( ) { return &m_renderModes; } + /** + * Returns the scenes visibility level + */ + int visibilityLevel( ) const { return m_visibilityLevel; } + /** + * Sets the visibility level + */ + void setVisibilityLevel( int l ) { m_visibilityLevel = l; } + +private: + PMRenderModeList m_renderModes; + int m_visibilityLevel; + + static PMMetaObject* s_pMetaObject; +}; + +#endif |