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/pmprojectedthrough.cpp | 92 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 kpovmodeler/pmprojectedthrough.cpp (limited to 'kpovmodeler/pmprojectedthrough.cpp') diff --git a/kpovmodeler/pmprojectedthrough.cpp b/kpovmodeler/pmprojectedthrough.cpp new file mode 100644 index 00000000..46ecc51c --- /dev/null +++ b/kpovmodeler/pmprojectedthrough.cpp @@ -0,0 +1,92 @@ +/* +************************************************************************** + description + ------------------- + and : (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 "pmprojectedthrough.h" + +#include "pmxmlhelper.h" +#include "pmmemento.h" +#include "pmnamedobjectedit.h" + +#include + +PMMetaObject* PMProjectedThrough::s_pMetaObject = 0; +PMObject* createNewProjectedThrough( PMPart* part ) +{ + return new PMProjectedThrough( part ); +} + +PMProjectedThrough::PMProjectedThrough( PMPart* part ) + : Base( part ) +{ +} + +PMProjectedThrough::PMProjectedThrough( const PMProjectedThrough& l ) + : Base( l ) +{ +} + +PMProjectedThrough::~PMProjectedThrough( ) +{ +} + + +QString PMProjectedThrough::description( ) const +{ + return i18n( "projected through" ); +} + +PMMetaObject* PMProjectedThrough::metaObject( ) const +{ + if( !s_pMetaObject ) + { + s_pMetaObject = new PMMetaObject( "ProjectedThrough", Base::metaObject( ), + createNewProjectedThrough ); + // no properties + } + return s_pMetaObject; +} + +void PMProjectedThrough::cleanUp( ) const +{ + if( s_pMetaObject ) + { + delete s_pMetaObject; + s_pMetaObject = 0; + } + Base::cleanUp( ); +} + +void PMProjectedThrough::serialize( QDomElement& e, QDomDocument& doc ) const +{ + Base::serialize( e, doc ); +} + +void PMProjectedThrough::readAttributes( const PMXMLHelper& h ) +{ + Base::readAttributes( h ); +} + +PMDialogEditBase* PMProjectedThrough::editWidget( QWidget* parent ) const +{ + return new PMNamedObjectEdit( parent ); +} + +void PMProjectedThrough::restoreMemento( PMMemento* s ) +{ + Base::restoreMemento( s ); +} + -- cgit v1.2.1