/usr/include/KF5/KCMUtils/kcmoduleinfo.h is in libkf5kcmutils-dev 5.28.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | /*
Copyright (c) 1999 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
Copyright (c) 2000 Matthias Elter <elter@kde.org>
Copyright (c) 2003 Daniel Molkentin <molkentin@kde.org>
Copyright (c) 2003,2006 Matthias Kretz <kretz@kde.org>
This file is part of the KDE project
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2, as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KCMODULEINFO_H
#define KCMODULEINFO_H
#include <kcmutils_export.h>
#include <kservice.h>
class QString;
class QStringList;
/**
* A class that provides information about a KCModule
*
* KCModuleInfo provides various technical information, such as icon, library
* etc. about a KCModule.n
* @note Any values set with the set* functions is not
* written back with KCModuleInfo it only reads value from the desktop file.
*
* @internal
* @author Matthias Hoelzer-Kluepfel <mhk@kde.org>
* @author Matthias Elter <elter@kde.org>
* @author Daniel Molkentin <molkentin@kde.org>
*
*/
class KCMUTILS_EXPORT KCModuleInfo // krazy:exclude=dpointer (implicitly shared)
{
public:
/**
* Constructs a KCModuleInfo.
* @note a KCModuleInfo object will have to be manually deleted, it is not
* done automatically for you.
* @param desktopFile the desktop file representing the module, or
* the name of the module.
*/
KCModuleInfo(const QString &desktopFile);
/**
* Same as above but takes a KService::Ptr as argument.
*
* @note @p moduleInfo must be a valid pointer.
*
* @param moduleInfo specifies the module
*/
KCModuleInfo(KService::Ptr moduleInfo);
/**
* Same as above but takes a KCModuleInfo as argument.
*
* @param rhs specifies the module
*/
KCModuleInfo(const KCModuleInfo &rhs);
/**
* Same as above but creates an empty KCModuleInfo.
* You should not normally call this.
*/
KCModuleInfo();
/**
* Assignment operator
*/
KCModuleInfo &operator=(const KCModuleInfo &rhs);
/**
* Returns true if @p rhs describes the same KCModule as this object.
*/
bool operator==(const KCModuleInfo &rhs) const;
/**
* @return true if @p rhs is not equal itself
*/
bool operator!=(const KCModuleInfo &rhs) const;
/**
* Default destructor.
*/
~KCModuleInfo();
/**
* @return the filename of the .desktop file that describes the KCM
*/
QString fileName() const;
/**
* @return the keywords associated with this KCM.
*/
QStringList keywords() const;
/**
* @return the module\'s (translated) name
*/
QString moduleName() const;
/**
* @return a QExplicitlySharedDataPointer to KService created from the modules .desktop file
*/
KService::Ptr service() const;
/**
* @return the module's (translated) comment field
*/
QString comment() const;
/**
* @return the module's icon name
*/
QString icon() const;
/**
* @return the path of the module's documentation
*/
QString docPath() const;
/**
* @return the library name
*/
QString library() const;
/**
* @return a handle (the contents of the X-KDE-FactoryName field if it exists,
* else the same as the library name)
*/
QString handle() const;
/**
* @return the weight of the module which determines the order of the pages in
* the KCMultiDialog. It's set by the X-KDE-Weight field.
*/
int weight() const;
private:
class Private;
Private *d;
};
#endif // KCMODULEINFO_H
|