libkonq
kivfreespaceoverlay.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _KIVFREESPACEOVERLAY_H_
00022 #define _KIVFREESPACEOVERLAY_H_
00023
00024 #include <tdefileitem.h>
00025 #include <libkonq_export.h>
00026
00027 #include <tqdict.h>
00028
00029 class KDirLister;
00030 class KFileIVI;
00031
00032 class LIBKONQ_EXPORT KIVFreeSpaceOverlay : public TQObject
00033 {
00034 Q_OBJECT
00035
00036 public:
00037 KIVFreeSpaceOverlay(KFileIVI* freespace);
00038 virtual ~KIVFreeSpaceOverlay();
00039 void start();
00040
00041 signals:
00042 void finished();
00043
00044 protected:
00045 virtual void timerEvent(TQTimerEvent *);
00046
00047 private slots:
00048 void slotDisplay();
00049
00050 private:
00051 KFileIVI* m_freespace;
00052 };
00053
00054 #endif