/usr/include/ksysguard/ProcessModel.h is in kde-workspace-dev 4:4.8.4-6.
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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | /*
KSysGuard, the KDE System Guard
Copyright (c) 1999, 2000 Chris Schlaeger <cs@kde.org>
Copyright (c) 2006 John Tapsell <john.tapsell@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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 PROCESSMODEL_H_
#define PROCESSMODEL_H_
#include <QtCore/QAbstractItemModel>
#include <kdemacros.h>
#include "processes.h"
namespace KSysGuard {
class Processes;
class Process;
}
class ProcessModelPrivate;
#ifdef Q_CC_MSVC
// this workaround is needed to make krunner link under msvc
// please keep it this way even if you port this library to have a _export.h header file
#define KSYSGUARD_EXPORT
#else
#define KSYSGUARD_EXPORT KDE_EXPORT
#endif
class KSYSGUARD_EXPORT ProcessModel : public QAbstractItemModel
{
Q_OBJECT
Q_ENUMS(Units)
public:
ProcessModel(QObject* parent = 0, const QString &host = QString() );
virtual ~ProcessModel();
/* Functions for our Model for QAbstractItemModel*/
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount ( const QModelIndex & parent = QModelIndex() ) const;
QVariant data(const QModelIndex &index, int role) const;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
QModelIndex index ( int row, int column, const QModelIndex & parent = QModelIndex() ) const;
QModelIndex parent ( const QModelIndex & index ) const;
bool hasChildren ( const QModelIndex & parent) const;
/** Returns if (left < right), used by the sort-filter proxy model to sort the columns */
bool lessThan( const QModelIndex & left, const QModelIndex & right) const;
/* Functions for drag and drop and copying to clipboard, inherited from QAbstractItemModel */
QStringList mimeTypes() const;
QMimeData *mimeData(const QModelIndexList &indexes) const;
Qt::ItemFlags flags(const QModelIndex &index) const;
/* Functions for setting the model */
/** Setup the column headings by inserting the appropriate headings into the model.
* Can be called more than once to retranslate the headings if the system language changes.
*/
void setupHeader();
/** Update data. You can pass in the time between updates to only update if there hasn't
* been an update within the last @p updateDurationMSecs milliseconds. 0 indicate to update
* regardless of when the last update was.
* The updateFlags indicates what to additional update, as well as the usual details. */
void update(long updateDurationMSecs = 0, KSysGuard::Processes::UpdateFlags updateFlags = KSysGuard::Processes::IOStatistics);
/** Return a string with the pid of the process and the name of the process. E.g. 13343: ksysguard
*/
QString getStringForProcess(KSysGuard::Process *process) const;
KSysGuard::Process *getProcess(qlonglong pid);
/** This is used from ProcessFilter to get the process at a given index when in flat mode */
KSysGuard::Process *getProcessAtIndex(int index) const;
/** Returns whether this user can log in or not.
* @see mUidCanLogin
*/
bool canUserLogin(long uid) const;
/** In simple mode, everything is flat, with no icons, few if any colors, no xres etc.
* This can be changed at any time. It is a fairly quick operation. Basically it resets the model
*/
void setSimpleMode(bool simple);
/** In simple mode, everything is flat, with no icons, few if any colors, no xres etc
*/
bool isSimpleMode() const;
/** Returns the total amount of physical memory in the machine. */
qlonglong totalMemory() const;
/** This returns a QModelIndex for the given process. It has to look up the parent for this pid, find the offset this
* pid is from the parent, and return that. It's not that slow, but does involve a couple of hash table lookups.
*/
QModelIndex getQModelIndex ( KSysGuard::Process *process, int column) const;
/** Whether this is showing the processes for the current machine
*/
bool isLocalhost() const;
/** The host name that this widget is showing the processes of */
QString hostName() const;
/** Whether this process has a GUI window */
bool hasGUIWindow(qlonglong pid) const;
/** Returns for process controller pointer for this model */
KSysGuard::Processes *processController() const; //The processes instance
/** Convenience function to get the number of processes.
*
* Equivalent to processController->processCount() */
int processCount() const { return processController()->processCount(); }
/** The headings in the model. The order here is the order that they are shown
* in. If you change this, make sure you also change the
* setup header function, and make sure you increase PROCESSHEADERVERSION. This will ensure
* that old saved settings won't be used
*/
#define PROCESSHEADERVERSION 5
enum { HeadingName=0, HeadingUser, HeadingPid, HeadingTty, HeadingNiceness, HeadingCPUUsage, HeadingCPUTime, HeadingIoRead, HeadingIoWrite, HeadingVmSize, HeadingMemory, HeadingSharedMemory, HeadingCommand, HeadingXMemory, HeadingXTitle };
enum { UidRole = Qt::UserRole, SortingValueRole, WindowIdRole, PlainValueRole, PercentageRole };
bool showTotals() const;
/** When displaying memory sizes, this is the units it should be displayed in */
enum Units { UnitsAuto, UnitsKB, UnitsMB, UnitsGB, UnitsTB, UnitsPB, UnitsPercentage };
/** Set the units memory sizes etc should be displayed in */
void setUnits(Units units);
/** The units memory sizes etc should be displayed in */
Units units() const;
/** Set the I/O units sizes etc should be displayed in */
void setIoUnits(Units units);
/** The units I/O sizes etc should be displayed in */
Units ioUnits() const;
enum IoInformation { Bytes, Syscalls, ActualBytes, BytesRate, SyscallsRate, ActualBytesRate };
/** Set the information to show in the Io Read and Io Write columns */
void setIoInformation( IoInformation ioInformation );
/** The information to show in the Io Read and Io Write columns */
IoInformation ioInformation() const;
/** Take an amount in kb, and return a string in the units set by setUnits() */
QString formatMemoryInfo(qlonglong amountInKB, Units units, bool returnEmptyIfValueIsZero = false) const;
/** Whether to show the command line options in the process name column */
bool isShowCommandLineOptions() const;
/** Set whether to show the command line options in the process name column */
void setShowCommandLineOptions(bool showCommandLineOptions);
/** Whether to show tooltips when the mouse hovers over a process */
bool isShowingTooltips() const;
/** Set whether to show tooltips when the mouse hovers over a process */
void setShowingTooltips(bool showTooltips);
/** Whether to divide CPU usage by the number of CPUs */
bool isNormalizedCPUUsage() const;
/** Set whether to divide CPU usage by the number of CPUs */
void setNormalizedCPUUsage(bool normalizeCPUUsage);
/** Retranslate the GUI, for when the system language changes */
void retranslateUi();
public Q_SLOTS:
/** Whether to show the total cpu for the process plus all of its children */
void setShowTotals(bool showTotals);
private:
ProcessModelPrivate* const d;
friend class ProcessModelPrivate;
};
#endif
|