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/pmprojectedthrough.cpp

93 lines
2.4 KiB

/*
**************************************************************************
description
-------------------
and : (C) 2003 by Leon Pennington
email : leon@leonscape.co.uk
**************************************************************************
**************************************************************************
* *
* 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 "pmprojectedthrough.h"
#include "pmxmlhelper.h"
#include "pmmemento.h"
#include "pmnamedobjectedit.h"
#include <klocale.h>
PMMetaObject* PMProjectedThrough::s_pMetaObject = 0;
PMObject* createNewProjectedThrough( PMPart* part )
{
return new PMProjectedThrough( part );
}
PMProjectedThrough::PMProjectedThrough( PMPart* part )
: Base( part )
{
}
PMProjectedThrough::PMProjectedThrough( const PMProjectedThrough& l )
: Base( l )
{
}
PMProjectedThrough::~PMProjectedThrough( )
{
}
TQString PMProjectedThrough::description( ) const
{
return i18n( "projected through" );
}
PMMetaObject* PMProjectedThrough::metaObject( ) const
{
if( !s_pMetaObject )
{
s_pMetaObject = new PMMetaObject( "ProjectedThrough", Base::metaObject( ),
createNewProjectedThrough );
// no properties
}
return s_pMetaObject;
}
void PMProjectedThrough::cleanUp( ) const
{
if( s_pMetaObject )
{
delete s_pMetaObject;
s_pMetaObject = 0;
}
Base::cleanUp( );
}
void PMProjectedThrough::serialize( TQDomElement& e, TQDomDocument& doc ) const
{
Base::serialize( e, doc );
}
void PMProjectedThrough::readAttributes( const PMXMLHelper& h )
{
Base::readAttributes( h );
}
PMDialogEditBase* PMProjectedThrough::editWidget( TQWidget* parent ) const
{
return new PMNamedObjectEdit( parent );
}
void PMProjectedThrough::restoreMemento( PMMemento* s )
{
Base::restoreMemento( s );
}