/usr/include/KF5/KJobWidgets/kjobwidgets.h is in libkf5jobwidgets-dev 5.18.0-0ubuntu1.
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 | /* This file is part of the KDE libraries
* Copyright (c) 2013 David Faure <faure@kde.org>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2 of the License or ( at
* your option ) version 3 or, at the discretion of KDE e.V. ( which shall
* act as a proxy as in section 14 of the GPLv3 ), 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 Lesser 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 KJOBWIDGETS_H
#define KJOBWIDGETS_H
#include <kjobwidgets_export.h>
class QWidget;
class QWindow;
class KJob;
/**
* KJobWidgets namespace
*/
namespace KJobWidgets
{
/**
* Associate this job with a window given by @p window.
* This is used:
* @li by KDialogJobUiDelegate as parent widget for error messages
* @li by KWidgetJobTracker as parent widget for progress dialogs
* @li by KIO::AbstractJobInteractionInterface as parent widget for rename/skip dialogs
* and possibly more.
* @since 5.0
*/
KJOBWIDGETS_EXPORT void setWindow(KJob *job, QWidget *widget);
/**
* Overload that takes a QWindow.
* @since 5.0
*/
//KJOBWIDGETS_EXPORT void setWindow(KJob *job, QWindow *window);
/**
* Return the window associated with this job.
* @since 5.0
*/
KJOBWIDGETS_EXPORT QWidget *window(KJob *job);
/**
* Updates the last user action timestamp to the given time.
* @since 5.0
*/
KJOBWIDGETS_EXPORT void updateUserTimestamp(KJob *job, unsigned long time);
/**
* Returns the last user action timestamp
* @since 5.0
*/
KJOBWIDGETS_EXPORT unsigned long userTimestamp(KJob *job);
}
#endif
|