From 47d455dd55be855e4cc691c32f687f723d9247ee Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- kpovmodeler/pmcsgedit.cpp | 118 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 kpovmodeler/pmcsgedit.cpp (limited to 'kpovmodeler/pmcsgedit.cpp') diff --git a/kpovmodeler/pmcsgedit.cpp b/kpovmodeler/pmcsgedit.cpp new file mode 100644 index 00000000..9a6e0a39 --- /dev/null +++ b/kpovmodeler/pmcsgedit.cpp @@ -0,0 +1,118 @@ +/* +************************************************************************** + description + -------------------- + copyright : (C) 2000-2001 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 "pmcsgedit.h" +#include "pmcsg.h" + +#include +#include +#include +#include + +PMCSGEdit::PMCSGEdit( QWidget* parent, const char* name ) + : Base( parent, name ) +{ + m_pDisplayedObject = 0; +} + +void PMCSGEdit::createTopWidgets( ) +{ + Base::createTopWidgets( ); + + QHBoxLayout* layout; + m_pTypeCombo = new QComboBox( false, this ); + m_pTypeCombo->insertItem( i18n( "Union" ) ); + m_pTypeCombo->insertItem( i18n( "Intersection" ) ); + m_pTypeCombo->insertItem( i18n( "Difference" ) ); + m_pTypeCombo->insertItem( i18n( "Merge" ) ); + + layout = new QHBoxLayout( topLayout( ) ); + layout->addWidget( new QLabel( i18n( "Type:" ), this ) ); + layout->addWidget( m_pTypeCombo ); + layout->addStretch( 1 ); + + connect( m_pTypeCombo, SIGNAL( activated( int ) ), SLOT( slotTypeSelected( int ) ) ); +} + +void PMCSGEdit::displayObject( PMObject* o ) +{ + if( o->isA( "CSG" ) ) + { + bool readOnly = o->isReadOnly( ); + m_pDisplayedObject = ( PMCSG* ) o; + + switch( m_pDisplayedObject->csgType( ) ) + { + case PMCSG::CSGUnion: + m_pTypeCombo->setCurrentItem( 0 ); + break; + case PMCSG::CSGIntersection: + m_pTypeCombo->setCurrentItem( 1 ); + break; + case PMCSG::CSGDifference: + m_pTypeCombo->setCurrentItem( 2 ); + break; + case PMCSG::CSGMerge: + m_pTypeCombo->setCurrentItem( 3 ); + break; + } + + m_pTypeCombo->setEnabled( !readOnly ); + + Base::displayObject( o ); + } + else + kdError( PMArea ) << "PMCSGEdit: Can't display object\n"; +} + +void PMCSGEdit::saveContents( ) +{ + if( m_pDisplayedObject ) + { + Base::saveContents( ); + switch( m_pTypeCombo->currentItem( ) ) + { + case 0: + m_pDisplayedObject->setCSGType( PMCSG::CSGUnion ); + break; + case 1: + m_pDisplayedObject->setCSGType( PMCSG::CSGIntersection ); + break; + case 2: + m_pDisplayedObject->setCSGType( PMCSG::CSGDifference ); + break; + case 3: + m_pDisplayedObject->setCSGType( PMCSG::CSGMerge ); + break; + default: + m_pDisplayedObject->setCSGType( PMCSG::CSGUnion ); + break; + } + } +} + +bool PMCSGEdit::isDataValid( ) +{ + return Base::isDataValid( ); +} + +void PMCSGEdit::slotTypeSelected( int ) +{ + emit dataChanged( ); +} +#include "pmcsgedit.moc" -- cgit v1.2.3