/usr/include/kjobtrackerinterface.h is in kdelibs5-dev 4:4.14.2-5+deb8u2.
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 | /* This file is part of the KDE project
Copyright (C) 2007 Kevin Ottens <ervin@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 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 KJOBTRACKERINTERFACE_H
#define KJOBTRACKERINTERFACE_H
#include <kdecore_export.h>
#include <kjob.h>
#include <QtCore/QObject>
#include <QtCore/QPair>
/**
* The interface to implement to track the progresses of a job.
*/
class KDECORE_EXPORT KJobTrackerInterface : public QObject
{
Q_OBJECT
public:
/**
* Creates a new KJobTrackerInterface
*
* @param parent the parent object
*/
KJobTrackerInterface(QObject *parent=0);
/**
* Destroys a KJobTrackerInterface
*/
virtual ~KJobTrackerInterface();
public Q_SLOTS:
/**
* Register a new job in this tracker.
*
* @param job the job to register
*/
virtual void registerJob(KJob *job);
/**
* Unregister a job from this tracker.
*
* @param job the job to unregister
*/
virtual void unregisterJob(KJob *job);
protected Q_SLOTS:
/**
* Called when a job is finished, in any case. It is used to notify
* that the job is terminated and that progress UI (if any) can be hidden.
*
* @param job the job that emitted this signal
*/
virtual void finished(KJob *job);
/**
* Called when a job is suspended.
*
* @param job the job that emitted this signal
*/
virtual void suspended(KJob *job);
/**
* Called when a job is resumed.
*
* @param job the job that emitted this signal
*/
virtual void resumed(KJob *job);
/**
* Called to display general description of a job. A description has
* a title and two optional fields which can be used to complete the
* description.
*
* Examples of titles are "Copying", "Creating resource", etc.
* The fields of the description can be "Source" with an URL, and,
* "Destination" with an URL for a "Copying" description.
* @param job the job that emitted this signal
* @param title the general description of the job
* @param field1 first field (localized name and value)
* @param field2 second field (localized name and value)
*/
virtual void description(KJob *job, const QString &title,
const QPair<QString, QString> &field1,
const QPair<QString, QString> &field2);
/**
* Called to display state information about a job.
* Examples of message are "Resolving host", "Connecting to host...", etc.
*
* @param job the job that emitted this signal
* @param plain the info message
* @param rich the rich text version of the message, or QString() is none is available
*/
virtual void infoMessage(KJob *job, const QString &plain, const QString &rich);
/**
* Emitted to display a warning about a job.
*
* @param job the job that emitted this signal
* @param plain the warning message
* @param rich the rich text version of the message, or QString() is none is available
*/
virtual void warning(KJob *job, const QString &plain, const QString &rich);
/**
* Called when we know the amount a job will have to process. The unit of this
* amount is provided too. It can be called several times for a given job if the job
* manages several different units.
*
* @param job the job that emitted this signal
* @param unit the unit of the total amount
* @param amount the total amount
*/
virtual void totalAmount(KJob *job, KJob::Unit unit, qulonglong amount);
/**
* Regularly called to show the progress of a job by giving the current amount.
* The unit of this amount is provided too. It can be called several times for a given
* job if the job manages several different units.
*
* @param job the job that emitted this signal
* @param unit the unit of the processed amount
* @param amount the processed amount
*/
virtual void processedAmount(KJob *job, KJob::Unit unit, qulonglong amount);
/**
* Called to show the overall progress of the job.
* Note that this is not called for finished jobs.
*
* @param job the job that emitted this signal
* @param percent the percentage
*/
virtual void percent(KJob *job, unsigned long percent);
/**
* Called to show the speed of the job.
*
* @param job the job that emitted this signal
* @param value the current speed of the job
*/
virtual void speed(KJob *job, unsigned long value);
private:
class Private;
Private *const d;
};
#endif
|