KDED
kbuildservicefactory.h
Go to the documentation of this file.00001 /* This file is part of the KDE project 00002 Copyright (C) 1999 David Faure <faure@kde.org> 00003 1999 Waldo Bastian <bastian@kde.org> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Library General Public 00007 License as published by the Free Software Foundation; either 00008 version 2 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Library General Public License for more details. 00014 00015 You should have received a copy of the GNU Library General Public License 00016 along with this library; see the file COPYING.LIB. If not, write to 00017 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00018 Boston, MA 02110-1301, USA. 00019 */ 00020 00021 #ifndef __k_build_service_factory_h__ 00022 #define __k_build_service_factory_h__ 00023 00024 #include <qptrdict.h> 00025 #include <qstringlist.h> 00026 00027 #include <kservicefactory.h> 00028 // We export the services to the service group factory! 00029 #include <kbuildservicegroupfactory.h> 00030 00035 class KBuildServiceFactory : public KServiceFactory 00036 { 00037 public: 00041 KBuildServiceFactory( KSycocaFactory *serviceTypeFactory, 00042 KBuildServiceGroupFactory *serviceGroupFactory ); 00043 00044 virtual ~KBuildServiceFactory(); 00045 00046 KService *findServiceByName(const QString &_name); 00047 00051 virtual KSycocaEntry * createEntry(const QString &file, const char *resource); 00052 00053 virtual KService * createEntry( int ) { assert(0); return 0L; } 00054 00058 void addEntry(KSycocaEntry *newEntry, const char *resource); 00059 00063 virtual void save(QDataStream &str); 00064 00071 virtual void saveHeader(QDataStream &str); 00072 00076 static QStringList resourceTypes(); 00077 private: 00078 void saveOfferList(QDataStream &str); 00079 void saveInitList(QDataStream &str); 00080 00081 QDict<KService> m_serviceDict; 00082 QPtrDict<KService> m_dupeDict; 00083 KSycocaFactory *m_serviceTypeFactory; 00084 KBuildServiceGroupFactory *m_serviceGroupFactory; 00085 }; 00086 00087 #endif