- Added PreferencesDialog with settings saving and reading.
[qtrapids] / src / engine / QBittorrentSession.h
1 /***************************************************************************
2  *   Copyright (C) 2009 by Lassi Väätämöinen   *
3  *   lassi.vaatamoinen@ixonos.com   *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #ifndef QBITTORRENTSESSION_H
21 #define QBITTORRENTSESSION_H
22
23 #include <memory>
24
25 #include <QObject>
26
27 #include <libtorrent/session.hpp>
28 #include <libtorrent/torrent_info.hpp>
29
30 #include "QTorrentHandle.h"
31
32
33 // Forward declarations and typedefs
34 class AlertWaiterThread;
35 typedef libtorrent::session TorrentSession;
36 typedef libtorrent::add_torrent_params AddTorrentParams;
37 typedef libtorrent::alert TorrentAlert;
38
39
40 /**
41         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
42 */
43 class QBittorrentSession : public QObject {
44         Q_OBJECT
45 //              class   BitTorrentSession;
46                         
47         public:
48                 QBittorrentSession(QObject *parent = 0);
49     ~QBittorrentSession();
50                 
51                 /// @brief Add torrent to session.
52                 QTorrentHandle addTorrent(AddTorrentParams const& params);
53                 
54         signals:
55                 void alert(std::auto_ptr<TorrentAlert> al);
56                 
57         private slots:
58                 void on_alert(TorrentAlert const *al);
59                 
60         private:
61                 TorrentSession btSession_;
62                 AlertWaiterThread *alertWaiter_;
63                 
64 };
65
66 #endif