kresources Library API Documentation

factory.h

00001 /* 00002 This file is part of libkresources. 00003 00004 Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> 00005 Copyright (c) 2002 Jan-Pascal van Best <janpascal@vanbest.org> 00006 Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> 00007 00008 This library is free software; you can redistribute it and/or 00009 modify it under the terms of the GNU Library General Public 00010 License as published by the Free Software Foundation; either 00011 version 2 of the License, or (at your option) any later version. 00012 00013 This library is distributed in the hope that it will be useful, 00014 but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 Library General Public License for more details. 00017 00018 You should have received a copy of the GNU Library General Public License 00019 along with this library; see the file COPYING.LIB. If not, write to 00020 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00021 Boston, MA 02111-1307, USA. 00022 */ 00023 00024 #ifndef KRESOURCES_FACTORY_H 00025 #define KRESOURCES_FACTORY_H 00026 00027 #include <qdict.h> 00028 #include <qstring.h> 00029 00030 #include <kconfig.h> 00031 #include <klibloader.h> 00032 #include <ktrader.h> 00033 00034 #include "resource.h" 00035 #include "configwidget.h" 00036 00037 namespace KRES { 00038 00062 class Factory 00063 { 00064 public: 00065 00069 static Factory *self( const QString& resourceFamily ); 00070 00071 ~Factory(); 00072 00080 ConfigWidget *configWidget( const QString& type, QWidget *parent = 0 ); 00081 00090 Resource *resource( const QString& type, const KConfig *config ); 00091 00095 QStringList typeNames() const; 00096 00100 QString typeName( const QString &type ) const; 00101 00105 QString typeDescription( const QString &type ) const; 00106 00107 protected: 00108 Factory( const QString& resourceFamily ); 00109 00110 private: 00111 static QDict<Factory> *mSelves; 00112 00113 QString mResourceFamily; 00114 QMap<QString, KService::Ptr> mTypeMap; 00115 }; 00116 00117 } 00118 #endif
KDE Logo
This file is part of the documentation for kresources Library Version 3.2.3.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Fri Aug 20 09:49:37 2004 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003