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.
135 lines
3.4 KiB
135 lines
3.4 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. *
|
|
* *
|
|
**************************************************************************/
|
|
|
|
|
|
#include "pmlightgroup.h"
|
|
|
|
#include <klocale.h>
|
|
#include "pmxmlhelper.h"
|
|
#include "pmlightgroupedit.h"
|
|
#include "pmmemento.h"
|
|
|
|
PMDefinePropertyClass( PMLightGroup, PMLightGroupProperty );
|
|
|
|
PMMetaObject* PMLightGroup::s_pMetaObject = 0;
|
|
PMObject* createNewLightGroup( PMPart* part )
|
|
{
|
|
return new PMLightGroup( part );
|
|
}
|
|
|
|
PMLightGroup::PMLightGroup( PMPart* part )
|
|
: Base( part )
|
|
{
|
|
m_globalLights = false;
|
|
}
|
|
|
|
PMLightGroup::PMLightGroup( const PMLightGroup& lg )
|
|
: Base( lg )
|
|
{
|
|
m_globalLights = lg.m_globalLights;
|
|
}
|
|
|
|
PMLightGroup::~PMLightGroup( )
|
|
{
|
|
}
|
|
|
|
TQString PMLightGroup::description( ) const
|
|
{
|
|
return TQString( i18n( "light group" ) );
|
|
}
|
|
|
|
void PMLightGroup::serialize( TQDomElement& e, TQDomDocument& doc ) const
|
|
{
|
|
if( m_globalLights )
|
|
e.setAttribute( "global_lights", "1" );
|
|
else
|
|
e.setAttribute( "global_lights", "0" );
|
|
|
|
Base::serialize( e, doc );
|
|
}
|
|
|
|
void PMLightGroup::readAttributes( const PMXMLHelper& h )
|
|
{
|
|
m_globalLights = h.boolAttribute( "global_lights", false );
|
|
|
|
Base::readAttributes( h );
|
|
}
|
|
|
|
PMMetaObject* PMLightGroup::tqmetaObject( ) const
|
|
{
|
|
if( !s_pMetaObject )
|
|
{
|
|
s_pMetaObject = new PMMetaObject( "LightGroup", Base::tqmetaObject( ),
|
|
createNewLightGroup );
|
|
|
|
s_pMetaObject->addProperty( new PMLightGroupProperty( "globalLights",
|
|
&PMLightGroup::setGlobalLights, &PMLightGroup::globalLights ) );
|
|
|
|
}
|
|
return s_pMetaObject;
|
|
}
|
|
|
|
void PMLightGroup::cleanUp( ) const
|
|
{
|
|
if( s_pMetaObject )
|
|
{
|
|
delete s_pMetaObject;
|
|
s_pMetaObject = 0;
|
|
}
|
|
Base::cleanUp( );
|
|
}
|
|
|
|
void PMLightGroup::setGlobalLights( bool gl )
|
|
{
|
|
if( gl != m_globalLights )
|
|
{
|
|
if( m_pMemento )
|
|
m_pMemento->addData( s_pMetaObject, PMGlobalLightsID, m_globalLights );
|
|
m_globalLights = gl;
|
|
}
|
|
}
|
|
|
|
PMDialogEditBase* PMLightGroup::editWidget( TQWidget* parent ) const
|
|
{
|
|
return new PMLightGroupEdit( parent );
|
|
}
|
|
|
|
void PMLightGroup::restoreMemento( PMMemento* s )
|
|
{
|
|
PMMementoDataIterator it( s );
|
|
PMMementoData* data;
|
|
|
|
for( ; it.current( ); ++it )
|
|
{
|
|
data = it.current( );
|
|
if( data->objectType( ) == s_pMetaObject )
|
|
{
|
|
switch( data->valueID( ) )
|
|
{
|
|
case PMGlobalLightsID:
|
|
setGlobalLights( data->boolData( ) );
|
|
break;
|
|
default:
|
|
kdError( PMArea ) << "Wrong ID in PMCSG::restoreMemento\n";
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
Base::restoreMemento( s );
|
|
}
|
|
|