- License texts modified to GPLv2
[qtrapids] / src / engine / AlertWaiterThread.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Ixonos Plc   *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; version 2 of the License.               *
7  *                                                                         *
8  *   This program is distributed in the hope that it will be useful,       *
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
11  *   GNU General Public License for more details.                          *
12  *                                                                         *
13  *   You should have received a copy of the GNU General Public License     *
14  *   along with this program; if not, write to the                         *
15  *   Free Software Foundation, Inc.,                                       *
16  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
17  ***************************************************************************/
18 #ifndef ALERTWAITERTHREAD_H
19 #define ALERTWAITERTHREAD_H
20
21 #include <QThread>
22 #include "QBittorrentSession.h"
23
24
25 /**
26         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
27 */
28 class AlertWaiterThread : public QThread
29 {
30         Q_OBJECT
31
32 public:
33         AlertWaiterThread(TorrentSession *const session, QObject *parent = 0);
34
35         virtual ~AlertWaiterThread();
36
37         void allAlerts(bool enable = true);
38
39         virtual void run(); // Overridden from QThread
40
41 signals:
42         /// @TODO alert() uses direct connection, so th connected slot is executed by AlertWaiterThread
43         /// Hence, QMutex is needed in receiver slot/thread for thread-safety.
44         /// @NOTE Alternatively, we could use an event loop in the thread and use queued signal (is it heavier?)
45         void alert(Alert const *alert);
46
47 private:
48         TorrentSession *const btSession_;
49
50 };
51
52 #endif