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

125 lines
3.7 KiB

/*
**************************************************************************
description
--------------------
copyright : (C) 2000-2001 by Leonardo Skorianez
email : lsk@if.ufrj.br
**************************************************************************
**************************************************************************
* *
* 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 "pmplaneedit.h"
#include "pmplane.h"
#include "pmvectoredit.h"
#include "pmlineedits.h"
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqpushbutton.h>
#include <tqcheckbox.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
PMPlaneEdit::PMPlaneEdit( TQWidget* parent, const char* name )
: Base( parent, name )
{
m_pDisplayedObject = 0;
}
void PMPlaneEdit::createTopWidgets( )
{
Base::createTopWidgets( );
TQHBoxLayout* layout;
m_pNormal = new PMVectorEdit( "x", "y", "z", this );
m_pDistance = new PMFloatEdit( this );
layout = new TQHBoxLayout( topLayout( ) );
layout->addWidget( new TQLabel( i18n( "Normal:" ), this ) );
layout->addWidget( m_pNormal );
layout = new TQHBoxLayout( topLayout( ) );
layout->addWidget( new TQLabel( i18n( "Distance:" ), this ) );
layout->addWidget( m_pDistance );
layout->addStretch( 1 );
TQPushButton* nb = new TQPushButton( i18n( "Normalize" ), this );
layout = new TQHBoxLayout( topLayout( ) );
layout->addWidget( nb );
layout->addStretch( 1 );
connect( m_pNormal, TQ_SIGNAL( dataChanged( ) ), TQ_SIGNAL( dataChanged( ) ) );
connect( m_pDistance, TQ_SIGNAL( dataChanged( ) ), TQ_SIGNAL( dataChanged( ) ) );
connect( nb, TQ_SIGNAL( clicked( ) ), TQ_SLOT( slotNormalize( ) ) );
}
void PMPlaneEdit::slotNormalize( )
{
PMVector normal = m_pNormal->vector( );
double distance = m_pDistance->value( );
double l = normal.abs( );
if( !approxZero( l ) )
{
m_pNormal->setVector( normal / l );
m_pDistance->setValue( distance * l );
}
}
void PMPlaneEdit::displayObject( PMObject* o )
{
if( o->isA( "Plane" ) )
{
bool readOnly = o->isReadOnly( );
m_pDisplayedObject = ( PMPlane* ) o;
m_pNormal->setVector( m_pDisplayedObject->normal( ) );
m_pDistance->setValue( m_pDisplayedObject->distance( ) );
m_pNormal->setReadOnly( readOnly );
m_pDistance->setReadOnly( readOnly );
Base::displayObject( o );
}
else
kdError( PMArea ) << "PMPlaneEdit: Can't display object\n";
}
void PMPlaneEdit::saveContents( )
{
if( m_pDisplayedObject )
{
Base::saveContents( );
m_pDisplayedObject->setNormal( m_pNormal->vector( ) );
m_pDisplayedObject->setDistance( m_pDistance->value( ) );
}
}
bool PMPlaneEdit::isDataValid( )
{
if( m_pNormal->isDataValid( ) )
{
if( approxZero( m_pNormal->vector( ).abs( ) ) )
{
KMessageBox::error( this, i18n( "The normal vector may not be a "
"null vector." ),
i18n( "Error" ) );
return false;
}
if( m_pDistance->isDataValid( ) )
return Base::isDataValid( );
}
return false;
}
#include "pmplaneedit.moc"