//Author: Max Howell , (C) 2003-4 //Copyright: See COPYING file that comes with this distribution #ifndef SCAN_H #define SCAN_H #include #include class TQThread; class Directory; template class Chain; namespace Filelight { class ScanManager : public TQObject { Q_OBJECT TQ_OBJECT friend class LocalLister; friend class RemoteLister; public: ScanManager( TQObject *parent ); virtual ~ScanManager(); bool start( const KURL& ); bool running() const; static uint files() { return s_files; } public slots: bool abort(); void emptyCache(); signals: void completed( Directory* ); void aboutToEmptyCache(); private: static bool s_abort; static uint s_files; KURL m_url; TQThread *m_thread; Chain *m_cache; virtual void customEvent( TQCustomEvent* ); }; } #endif