fcea41d77f4b6faa74a0af7c22cbf22fc6801a4d
[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_TYPE);
49                 virtual void addPluginWidget(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
50                 virtual void addToolbar(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
51                 virtual void addToolItem(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
52                 virtual void addMenu(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
53                 virtual void addMenuItem(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
54                 virtual bool eventRequest(QVariant param, PluginRequest req = UNKNOWN_REQUEST);
55                 
56         signals:
57                 void itemSelected(bool enabled);
58                 
59         public slots:
60         private slots:
61                 void on_openAction_clicked();
62                 void on_removeAction_clicked();
63                 void on_quitAction_clicked();
64                 void on_preferencesAction_clicked();
65                 void on_aboutAction_clicked();
66                 void on_aboutQtAction_clicked();
67                 void on_downloadItemSelectionChanged();
68                 void on_seedItemSelectionChanged();
69                 void handleToolBarAction(QAction* action);
70                 void on_torrentFileSelected(const QString& file);
71                 void on_alert(std::auto_ptr<Alert> al);
72         
73         private:
74                 void LoadPlugins();
75                 void StartTorrentFromBufferData(char const* data, int size);
76                 
77         private:
78                 QTabWidget *tabWidget_;
79                 DownloadView *dlView_;
80                 SeedView *seedView_;
81                 PreferencesDialog *preferencesDialog_;
82                 QSettings settings_;
83                 QList<QDir> pluginDirs_;
84                 QStringList pluginFileNames_;
85                 //std::vector< std::auto_ptr<QTorrentHandle> const > torrentHandles_;
86                 
87                 qtrapids::QBittorrentSession btSession_;
88                 
89
90                 //bool IsNewTorrent(std::auto_ptr<QTorrentHandle> handlePtr);
91 };
92
93 #endif