KDECore
kservicetype.h
Go to the documentation of this file.
00001 /* This file is part of the KDE project 00002 Copyright (C) 1998, 1999 Torben Weis <weis@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 __kservicetype_h__ 00022 #define __kservicetype_h__ 00023 00024 #include <ksycocaentry.h> 00025 00026 #include <QtCore/QString> 00027 #include <QtCore/QStringList> 00028 #include <QtCore/QMap> 00029 #include <QtCore/QVariant> 00030 00031 #include <kconfig.h> 00032 00033 class KDesktopFile; 00034 class KServiceTypePrivate; 00035 00043 class KDECORE_EXPORT KServiceType : public KSycocaEntry // TODO KDE5: inherit kshared, but move KSycocaEntry to Private 00044 { 00045 public: 00046 typedef KSharedPtr<KServiceType> Ptr; 00047 typedef QList<Ptr> List; 00048 00053 explicit KServiceType( KDesktopFile *config ); 00054 00059 KServiceType( QDataStream& _str, int offset ); 00060 00061 virtual ~KServiceType(); 00062 00067 QString comment() const; 00068 00075 #ifndef KDE_NO_DEPRECATED 00076 KDE_DEPRECATED QString desktopEntryPath() const; 00077 #endif 00078 00084 bool isDerived() const; 00085 00092 QString parentServiceType() const; 00093 00098 bool inherits( const QString& servTypeName ) const; 00099 00107 QVariant::Type propertyDef( const QString& _name ) const; 00108 00122 QStringList propertyDefNames() const; 00123 00125 QMap<QString,QVariant::Type> propertyDefs() const; 00126 00131 Ptr parentType(); 00136 void setServiceOffersOffset( int offset ); 00140 int serviceOffersOffset() const; 00141 00149 static Ptr serviceType( const QString& _name ); 00150 00159 static List allServiceTypes(); 00160 00161 protected: // used by KMimeType 00162 00168 KServiceType( KServiceTypePrivate &dd); 00169 00179 KServiceType( KServiceTypePrivate &dd, const QString& _name, 00180 const QString& _comment ); 00181 00182 private: 00183 Q_DECLARE_PRIVATE(KServiceType) 00184 }; 00185 00186 //QDataStream& operator>>( QDataStream& _str, KServiceType& s ); 00187 //QDataStream& operator<<( QDataStream& _str, KServiceType& s ); 00188 00189 #endif
KDE 4.6 API Reference