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.
101 lines
3.3 KiB
101 lines
3.3 KiB
/*
|
|
**************************************************************************
|
|
description
|
|
--------------------
|
|
copyright : (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 "pmmeshedit.h"
|
|
#include "pmmesh.h"
|
|
#include "pmvectoredit.h"
|
|
|
|
#include <tqlayout.h>
|
|
#include <tqcheckbox.h>
|
|
|
|
#include <klocale.h>
|
|
|
|
PMMeshEdit::PMMeshEdit( TQWidget* parent, const char* name )
|
|
: Base( parent, name )
|
|
{
|
|
m_pDisplayedObject = 0;
|
|
}
|
|
|
|
void PMMeshEdit::createTopWidgets( )
|
|
{
|
|
Base::createTopWidgets( );
|
|
|
|
TQHBoxLayout* tqlayout;
|
|
m_pHierarchy = new TQCheckBox( i18n( "Hierarchy" ), this );
|
|
m_pEnableInsideVector = new TQCheckBox( i18n( "Inside vector:" ), this );
|
|
m_pInsideVector = new PMVectorEdit( "x", "y", "z", this );
|
|
tqlayout = new TQHBoxLayout( topLayout( ) );
|
|
tqlayout->addWidget( m_pHierarchy );
|
|
tqlayout->addStretch( 1 );
|
|
tqlayout = new TQHBoxLayout( topLayout( ) );
|
|
tqlayout->addWidget( m_pEnableInsideVector );
|
|
tqlayout->addWidget( m_pInsideVector );
|
|
tqlayout->addStretch( 1 );
|
|
|
|
connect( m_pHierarchy, TQT_SIGNAL( clicked( ) ), TQT_SIGNAL( dataChanged( ) ) );
|
|
connect( m_pEnableInsideVector, TQT_SIGNAL( clicked( ) ), TQT_SLOT( slotInsideVectorClicked( ) ) );
|
|
connect( m_pInsideVector, TQT_SIGNAL( dataChanged( ) ), TQT_SIGNAL( dataChanged( ) ) );
|
|
}
|
|
|
|
void PMMeshEdit::displayObject( PMObject* o )
|
|
{
|
|
if( o->isA( "Mesh" ) )
|
|
{
|
|
bool readOnly = o->isReadOnly( );
|
|
m_pDisplayedObject = ( PMMesh* ) o;
|
|
|
|
m_pHierarchy->setChecked( m_pDisplayedObject->hierarchy( ) );
|
|
m_pHierarchy->setEnabled( !readOnly );
|
|
m_pEnableInsideVector->setChecked( m_pDisplayedObject->isInsideVectorEnabled( ) );
|
|
m_pEnableInsideVector->setEnabled( !readOnly );
|
|
m_pInsideVector->setVector( m_pDisplayedObject->insideVector( ) );
|
|
m_pInsideVector->setReadOnly( readOnly );
|
|
slotInsideVectorClicked( );
|
|
Base::displayObject( o );
|
|
}
|
|
else
|
|
kdError( PMArea ) << "PMMeshEdit: Can't display object\n";
|
|
}
|
|
|
|
void PMMeshEdit::saveContents( )
|
|
{
|
|
if( m_pDisplayedObject )
|
|
{
|
|
Base::saveContents( );
|
|
m_pDisplayedObject->setHierarchy( m_pHierarchy->isChecked( ) );
|
|
m_pDisplayedObject->enableInsideVector( m_pEnableInsideVector->isChecked( ) );
|
|
m_pDisplayedObject->setInsideVector( m_pInsideVector->vector( ) );
|
|
}
|
|
}
|
|
|
|
bool PMMeshEdit::isDataValid( )
|
|
{
|
|
return Base::isDataValid( );
|
|
}
|
|
|
|
void PMMeshEdit::slotInsideVectorClicked( )
|
|
{
|
|
if( m_pEnableInsideVector->isChecked( ) )
|
|
m_pInsideVector->setEnabled( true );
|
|
else
|
|
m_pInsideVector->setEnabled( false );
|
|
emit dataChanged( );
|
|
}
|
|
|
|
#include "pmmeshedit.moc"
|