• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdecore
 

tdecore

kmountpoint.h

00001 /*
00002    This file is part of the KDE libraries
00003    Copyright (c) 2003 Waldo Bastian <bastian@kde.org>
00004 
00005    This library is free software; you can redistribute it and/or
00006    modify it under the terms of the GNU Library General Public
00007    License version 2 as published by the Free Software Foundation.
00008 
00009    This library is distributed in the hope that it will be useful,
00010    but WITHOUT ANY WARRANTY; without even the implied warranty of
00011    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012    Library General Public License for more details.
00013 
00014    You should have received a copy of the GNU Library General Public License
00015    along with this library; see the file COPYING.LIB.  If not, write to
00016    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00017    Boston, MA 02110-1301, USA.
00018 */
00019 
00020 #ifndef _KMOUNTPOINT_H_
00021 #define _KMOUNTPOINT_H_
00022 
00023 #include <tqptrlist.h>
00024 #include <tqstringlist.h>
00025 
00026 #include <ksharedptr.h>
00027 
00035 class TDECORE_EXPORT KMountPoint : public TDEShared
00036 {
00037    typedef signed long long int filesize_t;
00038 public:
00039   typedef TDESharedPtr<KMountPoint> Ptr;
00040   typedef TQValueList<Ptr> List;
00041 public:
00042    enum { NeedMountOptions = 1, NeedRealDeviceName = 2 };
00043 
00049    static KMountPoint::List possibleMountPoints(int infoNeeded=0);
00050 
00056    static KMountPoint::List currentMountPoints(int infoNeeded=0);
00057 
00062    TQString mountedFrom() const { return m_mountedFrom; }
00063 
00069    TQString realDeviceName() const { return m_device; }
00070 
00074    TQString mountPoint() const { return m_mountPoint; }
00075 
00079    TQString mountType() const { return m_mountType; }
00080 
00085    TQStringList mountOptions() const { return m_mountOptions; }
00086 
00092    static TQString devNameFromOptions(const TQStringList &options);
00093 
00097    ~KMountPoint();
00098 
00099 private:
00103    KMountPoint();
00104 
00105    TQString m_mountedFrom;
00106    TQString m_device;
00107    TQString m_mountPoint;
00108    TQString m_mountType;
00109    TQStringList m_mountOptions;
00110 
00111    class KMountPointPrivate;
00112    KMountPointPrivate *d;
00113 };
00114 
00115 #endif // _KMOUNTPOINT_H_
00116 

tdecore

Skip menu "tdecore"
  • Main Page
  • Modules
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

tdecore

Skip menu "tdecore"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdeioslave
  •   http
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for tdecore by doxygen 1.6.3
This website is maintained by Timothy Pearson.