From e16866e072f94410321d70daedbcb855ea878cac Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:56:40 -0600 Subject: Actually move the kde files that were renamed in the last commit --- tdecore/kmountpoint.h | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 tdecore/kmountpoint.h (limited to 'tdecore/kmountpoint.h') diff --git a/tdecore/kmountpoint.h b/tdecore/kmountpoint.h new file mode 100644 index 000000000..fd4fe9c5d --- /dev/null +++ b/tdecore/kmountpoint.h @@ -0,0 +1,116 @@ +/* + This file is part of the KDE libraries + Copyright (c) 2003 Waldo Bastian + + 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 _KMOUNTPOINT_H_ +#define _KMOUNTPOINT_H_ + +#include +#include + +#include + +/** + * The KMountPoint class provides information about mounted and unmounted disks. + * It provides a system independent interface to fstab. + * + * @author Waldo Bastian + * @since 3.2 + */ +class KDECORE_EXPORT KMountPoint : public KShared +{ + typedef signed long long int filesize_t; +public: + typedef KSharedPtr Ptr; + typedef TQValueList List; +public: + enum { NeedMountOptions = 1, NeedRealDeviceName = 2 }; + + /** + * This function gives a list of all possible mountpoints. (fstab) + * @param infoNeeded Flags that specify which additional information + * should be fetched. + */ + static KMountPoint::List possibleMountPoints(int infoNeeded=0); + + /** + * This function gives a list of all currently used mountpoints. (mtab) + * @param infoNeeded Flags that specify which additional information + * should be fetched. + */ + static KMountPoint::List currentMountPoints(int infoNeeded=0); + + /** + * Where this filesystem gets mounted from. + * This can refer to a device, a remote server or something else. + */ + TQString mountedFrom() const { return m_mountedFrom; } + + /** + * Canonical name of the device where the filesystem got mounted from. + * (Or empty, if not a device) + * Only available when the NeedRealDeviceName flag was set. + */ + TQString realDeviceName() const { return m_device; } + + /** + * Path where the filesystem is mounted or can be mounted. + */ + TQString mountPoint() const { return m_mountPoint; } + + /** + * Type of filesystem + */ + TQString mountType() const { return m_mountType; } + + /** + * Options used to mount the filesystem. + * Only available when the NeedMountOptions flag was set. + */ + TQStringList mountOptions() const { return m_mountOptions; } + + /** + * When using supermount, the device name is in the options field + * as dev=/my/device + * @since 3.4 + */ + static TQString devNameFromOptions(const TQStringList &options); + + /** + * Destructor + */ + ~KMountPoint(); + +private: + /** + * Constructor + */ + KMountPoint(); + + TQString m_mountedFrom; + TQString m_device; + TQString m_mountPoint; + TQString m_mountType; + TQStringList m_mountOptions; + + class KMountPointPrivate; + KMountPointPrivate *d; +}; + +#endif // _KMOUNTPOINT_H_ + -- cgit v1.2.1