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

77 lines
1.9 KiB

/*
**************************************************************************
description
--------------------
copyright : (C) 2002 by Luis Carvalho
email : lpassos@mail.telepac.tp
**************************************************************************
**************************************************************************
* *
* 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 "pmdensity.h"
#include "pmxmlhelper.h"
#include "pmmemento.h"
#include "pmdensityedit.h"
#include <tdelocale.h>
PMMetaObject* PMDensity::s_pMetaObject = 0;
PMObject* createNewDensity( PMPart* part )
{
return new PMDensity( part );
}
PMDensity::PMDensity( PMPart* part )
: Base( part )
{
}
PMDensity::PMDensity( const PMDensity& d )
: Base( d )
{
}
PMDensity::~PMDensity( )
{
}
PMMetaObject* PMDensity::metaObject( ) const
{
if( !s_pMetaObject )
{
s_pMetaObject = new PMMetaObject( "Density", Base::metaObject( ),
createNewDensity );
}
return s_pMetaObject;
}
void PMDensity::cleanUp( ) const
{
if( s_pMetaObject )
{
delete s_pMetaObject;
s_pMetaObject = 0;
}
Base::cleanUp( );
}
TQString PMDensity::description( ) const
{
return i18n( "density" );
}
PMDialogEditBase* PMDensity::editWidget( TQWidget* parent ) const
{
return new PMDensityEdit( parent );
}