diff options
Diffstat (limited to 'plugins/scanfolder/scanfolder.h')
-rw-r--r-- | plugins/scanfolder/scanfolder.h | 112 |
1 files changed, 0 insertions, 112 deletions
diff --git a/plugins/scanfolder/scanfolder.h b/plugins/scanfolder/scanfolder.h deleted file mode 100644 index 58fbd04..0000000 --- a/plugins/scanfolder/scanfolder.h +++ /dev/null @@ -1,112 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2006 by Ivan Vasić * - * [email protected] * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program 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 General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ -#ifndef SCANFOLDER_H -#define SCANFOLDER_H - -#include <kdirlister.h> -#include <tdefileitem.h> -#include <tqstring.h> -#include <tqobject.h> -#include <tqdir.h> -#include <tqvaluelist.h> -#include <tqtimer.h> -#include <kurl.h> - -namespace kt -{ - ///Action to perform after loading torrent. - enum LoadedTorrentAction - { - deleteAction, - moveAction, - defaultAction - }; - - class CoreInterface; - - /** - * @brief Scanned folder class. - * @author Ivan Vasić <[email protected]> - * - * It will monitor m_dir directory for changes and automatically pass new torrents to core for loading. - * After loading, it will perform specified action which can be: - * 1. Deleting torrent in question - * 2. Moving torrent to 'loaded' subdirectory - * 3. Default action (neither 1. nor 2.) - * @see LoadedTorrentAction - * - */ - class ScanFolder : public TQObject - { - TQ_OBJECT - - public: - - /** - * Default constructor. - * @param core Pointer to core interface - * @param dir Full directory path - * @param action Action to perform on loaded torrents. - * @param openSilently Wheather to open torrent silently or not. - */ - ScanFolder(CoreInterface* core, TQString& dir, LoadedTorrentAction action = defaultAction, bool openSilently = true); - ~ScanFolder(); - - ///Accessor method for m_openSilently. - bool openSilently() const { return m_openSilently; } - ///Accessor method for m_openSilently - void setOpenSilently(bool theValue); - - ///Accessor method for m_loadedAction. - void setLoadedAction(const LoadedTorrentAction& theValue); - ///Accessor method for m_loadedAction. - LoadedTorrentAction loadedAction() const { return m_loadedAction; } - - ///Returns true if this object is valid, that is - weather directory is valid and this object does its work. - bool isValid() const { return m_valid; } - - ///Sets directory path - void setFolderUrl(TQString& url); - - public slots: - void onNewItems(const KFileItemList &items); - void onLoadingFinished(const KURL & url,bool success,bool canceled); - void onIncompletePollingTimeout(); - - private: - /// Check if the URL is a complete file - bool incomplete(const KURL & src); - - private: - CoreInterface* m_core; - - bool m_valid; - KDirLister* m_dir; - - LoadedTorrentAction m_loadedAction; - bool m_openSilently; - - TQValueList<KURL> m_pendingURLs; - TQValueList<KURL> m_incompleteURLs; - - TQTimer m_incomplePollingTimer; - }; -} -#endif |