/usr/include/KF5/KIOWidgets/kautomount.h is in kio-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 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 | /* This file is part of the KDE libraries
Copyright (C) 2000 David Faure <faure@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 KAUTOMOUNT_H
#define KAUTOMOUNT_H
#include <QtCore/QObject>
#include <QtCore/QString>
#include <QtGlobal>
#include "kiowidgets_export.h"
#ifdef Q_OS_UNIX
class KJob;
namespace KIO
{
class Job;
}
class KAutoMountPrivate;
/**
* This class implements synchronous mounting of devices,
* as well as showing a file-manager window after mounting a device, optionally.
* It is a wrapper around the asychronous KIO::special() call for mount,
* used by KDesktopFileActions.
*
* @short This class implements synchronous mounting of devices.
*/
class KIOWIDGETS_EXPORT KAutoMount : public QObject
{
Q_OBJECT
public:
/**
* Mounts a device.
* @param readonly if true, the device is mounted read-only
* @param format the file system (e.g. vfat, ext2...) [optional, fstab is used otherwise]
* @param device the path to the device (e.g. /dev/fd0)
* @param mountpoint the directory where to mount the device [optional, fstab is used otherwise]
* @param desktopFile the file the user clicked on - to notify KDirWatch of the fact that
* it should emit fileDirty for it (to have the icon change)
* @param show_filemanager_window if true, a file-manager window for that mountpoint is shown after
* the mount, if successful.
*/
KAutoMount(bool readonly, const QByteArray &format, const QString &device, const QString &mountpoint,
const QString &desktopFile, bool show_filemanager_window = true);
Q_SIGNALS:
/** Emitted when the directory has been mounted */
void finished();
/** Emitted in case the directory could not been mounted */
void error();
private:
/** KAutoMount deletes itself. Don't delete it manually. */
~KAutoMount();
Q_PRIVATE_SLOT(d, void slotResult(KJob *))
friend class KAutoMountPrivate;
KAutoMountPrivate *const d;
};
class KAutoUnmountPrivate;
/**
* This class implements synchronous unmounting of devices,
* It is a wrapper around the asychronous KIO::special() call for unmount,
* used by KDesktopFileActions.
*
* @short This class implements synchronous unmounting of devices,
*/
class KIOWIDGETS_EXPORT KAutoUnmount : public QObject
{
Q_OBJECT
public:
/**
* Unmounts a device.
* @param mountpoint the mount point - KAutoUnmount finds the device from that
* @param desktopFile the file the user clicked on - to notify KDirWatch of the fact that
* it should emit fileDirty for it (to have the icon change)
*/
KAutoUnmount(const QString &mountpoint, const QString &desktopFile);
Q_SIGNALS:
/** Emitted when the directory has been unmounted */
void finished();
/** Emitted in case the directory could not been unmounted */
void error();
private:
/** KAutoUnmount deletes itself. Don't delete it manually. */
~KAutoUnmount();
Q_PRIVATE_SLOT(d, void slotResult(KJob *))
friend class KAutoUnmountPrivate;
KAutoUnmountPrivate *const d;
};
#endif //Q_OS_UNIX
#endif
|