715ce2365cf7a41ecb818d53c95d01a69814a35c
[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
36 /**
37         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
38 */
39 class MainWindow : public QMainWindow, public qtrapids::PluginHostInterface {
40         Q_OBJECT
41                         
42         public:
43     MainWindow();
44
45     virtual ~MainWindow();
46                 
47                 // Implemented from PluginHostInterface
48                 virtual bool setGui(QWidget* widget, PluginWidgetType type = UNKNOWN);
49                 virtual void addPluginWidget(QWidget* widget, PluginWidgetType type = UNKNOWN);
50                 virtual void addToolbar(QWidget* widget, PluginWidgetType type = UNKNOWN);
51                 virtual void addToolItem(QWidget* widget, PluginWidgetType type = UNKNOWN);
52                 virtual void addMenu(QWidget* widget, PluginWidgetType type = UNKNOWN);
53                 virtual void addMenuItem(QWidget* widget, PluginWidgetType type = UNKNOWN);
54                 
55         signals:
56                 void itemSelected(bool enabled);
57                 
58         public slots:
59         private slots:
60                 void on_openAction_clicked();
61                 void on_removeAction_clicked();
62                 void on_quitAction_clicked();
63                 void on_preferencesAction_clicked();
64                 void on_aboutAction_clicked();
65                 void on_aboutQtAction_clicked();
66                 void on_downloadItemSelectionChanged();
67                 void on_seedItemSelectionChanged();
68                 void handleToolBarAction(QAction* action);
69                 void on_torrentFileSelected(const QString& file);
70                 void on_alert(std::auto_ptr<Alert> al);
71         
72         private:
73                 void LoadPlugins();
74                 
75         private:
76                 QTabWidget *tabWidget_;
77                 DownloadView *dlView_;
78                 SeedView *seedView_;
79                 PreferencesDialog *preferencesDialog_;
80                 QSettings settings_;
81                 QDir pluginsDir_;
82                 QStringList pluginFileNames_;
83                 //std::vector< std::auto_ptr<QTorrentHandle> const > torrentHandles_;
84                 
85                 qtrapids::QBittorrentSession btSession_;
86                 
87
88                 //bool IsNewTorrent(std::auto_ptr<QTorrentHandle> handlePtr);
89 };
90
91 #endif