You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.5 KiB
93 lines
2.5 KiB
//-*-C++-*-
|
|
/*
|
|
**************************************************************************
|
|
description
|
|
--------------------
|
|
copyright : (C) 2000-2002 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 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 TQString description( ) const;
|
|
|
|
/** */
|
|
virtual TQString pixmap( ) const { return TQString( "pmscene" ); }
|
|
|
|
/** */
|
|
virtual void serialize( TQDomElement& e, TQDomDocument& 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
|