kio Library API Documentation

kdirsize.h

00001 /* This file is part of the KDE libraries
00002     Copyright (C) 2000 David Faure <faure@kde.org>
00003 
00004     This library is free software; you can redistribute it and/or
00005     modify it under the terms of the GNU Library General Public
00006     License as published by the Free Software Foundation; either
00007     version 2 of the License, or (at your option) any later version.
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., 59 Temple Place - Suite 330,
00017     Boston, MA 02111-1307, USA.
00018 */
00019 
00020 #ifndef __KDIRSIZE_H
00021 #define __KDIRSIZE_H
00022 
00023 #include <kio/job.h>
00024 #include <kfileitem.h>
00025 
00030 class KDirSize : public KIO::Job
00031 {
00032   Q_OBJECT
00033 protected:
00034   KDirSize( const KURL & directory );
00035   KDirSize( const KFileItemList & lstItems );
00036   ~KDirSize() {}
00037 
00038 public:
00042   KIO::filesize_t totalSize() const { return m_totalSize; }
00043 
00048   static KDirSize * dirSizeJob( const KURL & directory );
00049 
00057   static KDirSize * dirSizeJob( const KFileItemList & lstItems );
00058 
00063   static KIO::filesize_t dirSize( const KURL & directory );
00064 
00065 protected:
00069   void setSync() { m_bAsync = false; }
00070 
00071   void startNextJob( const KURL & url );
00072 
00073 protected slots:
00074 
00075   virtual void slotResult( KIO::Job *job );
00076   void slotEntries( KIO::Job * , const KIO::UDSEntryList & );
00077   void processList();
00078 
00079 private:
00080   bool m_bAsync;
00081   KIO::filesize_t m_totalSize;
00082   KFileItemList m_lstItems;
00083 protected:
00084     virtual void virtual_hook( int id, void* data );
00085 private:
00086   class KDirSize* d;
00087 };
00088 
00089 #endif
KDE Logo
This file is part of the documentation for kdelibs Version 3.1.4.
Documentation copyright © 1996-2002 the KDE developers.
Generated on Sun Feb 27 22:15:29 2005 by doxygen 1.3.4 written by Dimitri van Heesch, © 1997-2001