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.
tdegraphics/kpovmodeler/pmdeclare.h

147 lines
3.5 KiB

/*
**************************************************************************
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 PMDECLARE_H
#define PMDECLARE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "pmcompositeobject.h"
#include "pmsymboltable.h"
/**
* Class for all povray declares
*/
class PMDeclare : public PMCompositeObject
{
typedef PMCompositeObject Base;
public:
/**
* Constructor
*/
PMDeclare( PMPart* part );
/**
* Copy constructor
*/
PMDeclare( const PMDeclare& d );
/**
* Deletes the object
*/
~PMDeclare( );
/** */
virtual PMObject* copy( ) const { return new PMDeclare( *this ); }
/** */
virtual TQString description( ) const;
/** */
virtual TQString pixmap( ) const;
/** */
virtual PMMetaObject* metaObject( ) const;
/** */
virtual void cleanUp( ) const;
/** */
virtual bool dataChangeOnInsertRemove( ) const { return true; }
/** */
virtual void serialize( TQDomElement& e, TQDomDocument& doc ) const;
/** */
virtual void readAttributes( const PMXMLHelper& h );
/**
* Returns a new @ref PMDeclareEdit
*/
virtual PMDialogEditBase* editWidget( TQWidget* parent ) const;
/**
* Returns the id of the declare
*/
virtual TQString name( ) const { return m_id; }
/**
* Returns the id of the declare
*/
TQString id( ) const { return m_id; }
/**
* Returns the declare type
*/
TQString declareType( ) const;
/**
* Sets the id of the object.
*/
void setID( const TQString& id );
/** */
virtual bool canHaveName( ) const { return true; }
/** */
virtual void restoreMemento( PMMemento* s );
/**
* Returns an iterator to the list of objects, that are linked to that
* declare
*/
PMObjectListIterator linkedObjects( ) const
{
return PMObjectListIterator( m_linkedObjects );
}
/**
* Adds the object to the list of linked objects
*/
void addLinkedObject( PMObject* o );
/**
* Removes the object from the list of linked objects
*/
void removeLinkedObject( PMObject* o );
/** */
virtual void childAdded( PMObject* o );
/** */
virtual void childRemoved( PMObject* o );
private:
/**
* Sets the declare type
*/
void setDeclareType( PMMetaObject* o );
/**
* Recalculates the declaration type
*/
void updateDeclareType( );
/**
* IDs for @ref PMMementoData
*/
enum PMDeclareMementoID { PMIDID };
/**
* id of the declare
*/
TQString m_id;
/**
* The linked objects
*/
PMObjectList m_linkedObjects;
/**
* The declare type
*/
PMMetaObject* m_pDeclareType;
static PMMetaObject* s_pMetaObject;
};
#endif