-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwatchdir.h
52 lines (40 loc) · 1.05 KB
/
watchdir.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* This file Copyright (C) Mnemosyne LLC
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* $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:
const TorrentModel& myModel;
QSet<QString> myWatchDirFiles;
QFileSystemWatcher * myWatcher;
};
#endif