1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-27 01:57:52 +00:00
transmission/qt/watchdir.h
Mike Gelfand 79848c36c0 #5841: Fix initial watchdir scan in Qt client
Run the initial scan after application has finished initializing and
session has been created. Otherwise, adding torrents is a no-op.
2014-12-11 22:21:24 +00:00

51 lines
939 B
C++

/*
* This file Copyright (C) 2009-2014 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
* $Id$
*/
#ifndef QTR_WATCHDIR_H
#define QTR_WATCHDIR_H
#include <QObject>
#include <QSet>
#include <QString>
class TorrentModel;
class QFileSystemWatcher;
class WatchDir: public QObject
{
Q_OBJECT
public:
WatchDir (const TorrentModel&);
~WatchDir ();
public:
void setPath (const QString& path, bool isEnabled);
private:
enum { OK, DUPLICATE, ERROR };
int metainfoTest (const QString& filename) const;
signals:
void torrentFileAdded (QString filename);
private slots:
void watcherActivated (const QString& path);
void onTimeout ();
private slots:
void rescanAllWatchedDirectories ();
private:
const TorrentModel& myModel;
QSet<QString> myWatchDirFiles;
QFileSystemWatcher * myWatcher;
};
#endif