KDECore
kserviceaction.h
Go to the documentation of this file.00001 /* This file is part of the KDE project 00002 Copyright 2007 David Faure <faure@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef KSERVICEACTION_H 00021 #define KSERVICEACTION_H 00022 00023 #include <kdecore_export.h> 00024 #include <QtCore/QSharedDataPointer> 00025 class QVariant; 00026 class KServiceActionPrivate; 00027 00034 class KDECORE_EXPORT KServiceAction 00035 { 00036 public: 00042 KServiceAction(const QString& name, const QString& text, 00043 const QString& icon, const QString& exec, 00044 bool noDisplay = false); 00049 KServiceAction(); 00053 ~KServiceAction(); 00054 00058 KServiceAction(const KServiceAction& other); 00062 KServiceAction& operator=(const KServiceAction& other); 00063 00067 void setData( const QVariant& userData ); 00071 QVariant data() const; 00072 00078 QString name() const; 00079 00083 QString text() const; 00084 00088 QString icon() const; 00089 00093 QString exec() const; 00094 00102 bool noDisplay() const; 00103 00108 bool isSeparator() const; 00109 00110 private: 00111 QSharedDataPointer<KServiceActionPrivate> d; 00112 friend KDECORE_EXPORT QDataStream& operator>>( QDataStream& str, KServiceAction& act ); 00113 friend KDECORE_EXPORT QDataStream& operator<<( QDataStream& str, const KServiceAction& act ); 00114 }; 00115 00116 KDECORE_EXPORT QDataStream& operator>>( QDataStream& str, KServiceAction& act ); 00117 KDECORE_EXPORT QDataStream& operator<<( QDataStream& str, const KServiceAction& act ); 00118 00119 #endif /* KSERVICEACTION_H */ 00120