- Added session-level upload/download-rate limit preferences
[qtrapids] / src / gui / MainWindow.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 MAINWINDOW_H
21 #define MAINWINDOW_H
22
23 #include <QMainWindow>
24 #include <QSettings>
25 #include <QDir>
26 #include <QStringList>
27
28 #include "PluginInterface.h"
29 #include "QBittorrentSession.h"
30
31 class QTabWidget;
32 class DownloadView;
33 class SeedView;
34 class PreferencesDialog;
35 class PluginInterface; 
36
37 /**
38         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
39 */
40 class MainWindow : public QMainWindow, public qtrapids::PluginHostInterface {
41         Q_OBJECT
42                         
43         public:
44     MainWindow();
45
46     virtual ~MainWindow();
47                 
48                 // Implemented from PluginHostInterface
49                 virtual bool setGui(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE, qtrapids::PluginInterface* plugin = NULL);
50                 virtual void addPluginWidget(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
51                 virtual void addToolbar(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
52                 virtual void addToolItem(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
53                 virtual void addMenu(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
54                 virtual void addMenuItem(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
55                 virtual bool eventRequest(QVariant param, PluginRequest req = UNKNOWN_REQUEST);
56                 
57         signals:
58                 void itemSelected(bool enabled);
59                 
60         public slots:
61         private slots:
62                 void on_openAction_clicked();
63                 void on_removeAction_clicked();
64                 void on_quitAction_clicked();
65                 void on_preferencesAction_clicked();
66                 void on_aboutAction_clicked();
67                 void on_aboutQtAction_clicked();
68                 void on_tabWidget_tabCloseRequested(int index);
69                 void on_downloadItemSelectionChanged();
70                 void on_seedItemSelectionChanged();
71                 void handleToolBarAction(QAction* action);
72                 void on_torrentFileSelected(const QString& file);
73                 void on_alert(std::auto_ptr<Alert> al);
74         
75         private:
76                 void LoadPlugins();
77                 void RestoreSettings();
78                 void StartTorrentFromBufferData(char const* data, int size);
79                 
80         private:
81                 QTabWidget *tabWidget_;
82                 DownloadView *dlView_;
83                 SeedView *seedView_;
84                 QWidget *searchWidget_;
85                 PreferencesDialog *preferencesDialog_;
86                 QSettings settings_;
87                 QList<QDir> pluginDirs_;
88                 QStringList pluginFileNames_;
89                 //std::vector< std::auto_ptr<QTorrentHandle> const > torrentHandles_;
90                 
91                 qtrapids::QBittorrentSession btSession_;
92                 
93
94                 //bool IsNewTorrent(std::auto_ptr<QTorrentHandle> handlePtr);
95 };
96
97 #endif