diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 47d455dd55be855e4cc691c32f687f723d9247ee (patch) | |
tree | 52e236aaa2576bdb3840ebede26619692fed6d7d /kpovmodeler/pmsphereedit.cpp | |
download | tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmsphereedit.cpp')
-rw-r--r-- | kpovmodeler/pmsphereedit.cpp | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/kpovmodeler/pmsphereedit.cpp b/kpovmodeler/pmsphereedit.cpp new file mode 100644 index 00000000..cb46d513 --- /dev/null +++ b/kpovmodeler/pmsphereedit.cpp @@ -0,0 +1,95 @@ +/* +************************************************************************** + + pmsphereedit.cpp - description + ------------------- + begin : Wed Jun 6 2001 + copyright : (C) 2001 by Philippe Van Hecke + email : lephiloux@tiscalinet.be +************************************************************************** + +************************************************************************** +* * +* 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 "pmsphereedit.h" +#include "pmsphere.h" +#include "pmvectoredit.h" +#include "pmlineedits.h" + +#include <qlayout.h> +#include <qlabel.h> +#include <klocale.h> + +PMSphereEdit::PMSphereEdit( QWidget* parent, const char* name ) + : Base( parent, name ) +{ + m_pDisplayedObject = 0; +} + +void PMSphereEdit::createTopWidgets( ) +{ + Base::createTopWidgets( ); + + QHBoxLayout* layout; + + m_pCentre = new PMVectorEdit( "x", "y", "z", this ); + m_pRadius = new PMFloatEdit( this ); + + layout = new QHBoxLayout( topLayout( ) ); + layout->addWidget( new QLabel( i18n( "Center:" ), this ) ); + layout->addWidget( m_pCentre ); + + layout = new QHBoxLayout( topLayout( ) ); + layout->addWidget( new QLabel( i18n( "Radius:" ), this ) ); + layout->addWidget( m_pRadius ); + layout->addStretch( 1 ); + + connect( m_pCentre, SIGNAL( dataChanged( ) ), SIGNAL( dataChanged( ) ) ); + connect( m_pRadius, SIGNAL( dataChanged( ) ), SIGNAL( dataChanged( ) ) ); +} + +void PMSphereEdit::displayObject( PMObject* o ) +{ + if( o->isA( "Sphere" ) ) + { + bool readOnly = o->isReadOnly( ); + m_pDisplayedObject = ( PMSphere* ) o; + + m_pCentre->setVector( m_pDisplayedObject->centre( ) ); + m_pRadius->setValue( m_pDisplayedObject->radius( ) ); + + m_pCentre->setReadOnly( readOnly ); + m_pRadius->setReadOnly( readOnly ); + + Base::displayObject( o ); + } + else + kdError( PMArea ) << "PMSphereEdit: Can't display object\n"; +} + +void PMSphereEdit::saveContents( ) +{ + if( m_pDisplayedObject ) + { + Base::saveContents( ); + m_pDisplayedObject->setCentre( m_pCentre->vector( ) ); + m_pDisplayedObject->setRadius( m_pRadius->value( ) ); + } +} + +bool PMSphereEdit::isDataValid( ) +{ + if( m_pCentre->isDataValid( ) ) + if( m_pRadius->isDataValid( ) ) + return Base::isDataValid( ); + return false; +} + + +#include "pmsphereedit.moc" |