You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
3.8 KiB
123 lines
3.8 KiB
/* 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 __auto_mount_h__
|
|
#define __auto_mount_h__
|
|
|
|
#include <tqobject.h>
|
|
#include <tqstring.h>
|
|
|
|
#include <tdelibs_export.h>
|
|
|
|
#ifdef Q_MOC_RUN
|
|
#define Q_OS_UNIX
|
|
#endif // Q_MOC_RUN
|
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
namespace TDEIO {
|
|
class Job;
|
|
}
|
|
|
|
/**
|
|
* 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 TDEIO::special() call for mount,
|
|
* used by KMimeType.
|
|
*
|
|
* @short This class implements synchronous mounting of devices.
|
|
*/
|
|
class TDEIO_EXPORT KAutoMount : public TQObject
|
|
{
|
|
Q_OBJECT
|
|
friend class gcc_gives_a_warning_without_this;
|
|
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 TQString& format, const TQString& device, const TQString& mountpoint,
|
|
const TQString & desktopFile, bool show_filemanager_window = true );
|
|
|
|
signals:
|
|
/** Emitted when the directory has been mounted */
|
|
void finished();
|
|
/** Emitted in case the directory could not been mounted */
|
|
void error();
|
|
|
|
protected slots:
|
|
void slotResult( TDEIO::Job * );
|
|
|
|
protected:
|
|
TQString m_strDevice;
|
|
bool m_bShowFilemanagerWindow;
|
|
TQString m_desktopFile;
|
|
private:
|
|
/** KAutoMount deletes itself. Don't delete it manually. */
|
|
~KAutoMount() {}
|
|
class KAutoMountPrivate* d;
|
|
};
|
|
|
|
/**
|
|
* This class implements synchronous unmounting of devices,
|
|
* It is a wrapper around the asychronous TDEIO::special() call for unmount,
|
|
* used by KMimeType.
|
|
*
|
|
* @short This class implements synchronous unmounting of devices,
|
|
*/
|
|
class TDEIO_EXPORT KAutoUnmount : public TQObject
|
|
{
|
|
Q_OBJECT
|
|
friend class gcc_gives_a_warning_without_this;
|
|
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 TQString & mountpoint, const TQString & desktopFile );
|
|
|
|
signals:
|
|
/** Emitted when the directory has been unmounted */
|
|
void finished();
|
|
/** Emitted in case the directory could not been unmounted */
|
|
void error();
|
|
|
|
protected slots:
|
|
void slotResult( TDEIO::Job * );
|
|
private:
|
|
TQString m_desktopFile;
|
|
TQString m_mountpoint;
|
|
private:
|
|
/** KAutoUnmount deletes itself. Don't delete it manually. */
|
|
~KAutoUnmount() {}
|
|
class KAutoUnmountPrivate* d;
|
|
};
|
|
|
|
#endif //Q_OS_UNIX
|
|
|
|
#endif
|