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/pmviewfactory.cpp | 94 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 kpovmodeler/pmviewfactory.cpp (limited to 'kpovmodeler/pmviewfactory.cpp') diff --git a/kpovmodeler/pmviewfactory.cpp b/kpovmodeler/pmviewfactory.cpp new file mode 100644 index 00000000..58e566cc --- /dev/null +++ b/kpovmodeler/pmviewfactory.cpp @@ -0,0 +1,94 @@ +/* +************************************************************************** + description + -------------------- + copyright : (C) 2003 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 "pmviewfactory.h" +#include "pmglview.h" +#include "pmtreeview.h" +#include "pmdialogview.h" +#include "pmdebug.h" +#include "pmviewbase.h" +#include "pmglview.h" +#include "pmtreeview.h" +#include "pmdialogview.h" +#include "pmlibrarybrowser.h" + +#include + +PMViewFactory* PMViewFactory::s_pInstance = 0; +KStaticDeleter PMViewFactory::s_staticDeleter; + +PMViewFactory::PMViewFactory( ) +{ + m_viewTypes.setAutoDelete( true ); + addViewType( new PMTreeViewFactory( ) ); + addViewType( new PMDialogViewFactory( ) ); + addViewType( new PMGLViewFactory( ) ); + addViewType( new PMLibraryBrowserViewFactory( ) ); +} + +PMViewFactory::~PMViewFactory( ) +{ + m_viewTypes.clear( ); +} + +PMViewFactory* PMViewFactory::theFactory( ) +{ + if( !s_pInstance ) + s_staticDeleter.setObject( s_pInstance, new PMViewFactory( ) ); + return s_pInstance; +} + +void PMViewFactory::addViewType( PMViewTypeFactory* vt ) +{ + if( vt ) + { + m_viewTypes.append( vt ); + m_dict.insert( vt->viewType( ), vt ); + } +} + +PMViewBase* PMViewFactory::newViewInstance( const QString& viewType, + QWidget* parent, PMPart* part ) const +{ + PMViewTypeFactory* f = m_dict.find( viewType ); + if( f ) + return f->newInstance( parent, part ); + + kdError( PMArea ) << "Unknown view type \"" << viewType << "\"" << endl; + return 0; +} + +PMViewOptions* PMViewFactory::newOptionsInstance( const QString& viewType ) const +{ + PMViewTypeFactory* f = m_dict.find( viewType ); + if( f ) + return f->newOptionsInstance( ); + + kdError( PMArea ) << "Unknown view type \"" << viewType << "\"" << endl; + return 0; +} + +PMViewTypeFactory* PMViewFactory::viewFactory( const QString& viewType ) const +{ + return m_dict.find( viewType ); +} + +const QPtrList& PMViewFactory::viewTypes( ) const +{ + return m_viewTypes; +} + -- cgit v1.2.3