8dd1fdca1ba217f51a2e5ee8cc860f465d72cd3c
[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 {
41         Q_OBJECT
42
43 public:
44         MainWindow();
45
46         virtual ~MainWindow();
47
48         // Implemented from PluginHostInterface
49         virtual bool setGui(qtrapids::PluginInterface* from, QWidget* widget);
50         virtual void addPluginWidget(qtrapids::PluginInterface* from, QWidget* widget);
51         virtual void addToolbar(qtrapids::PluginInterface* from, QWidget* widget);
52         virtual void addToolItem(qtrapids::PluginInterface* from, QWidget* widget);
53         virtual void addMenu(qtrapids::PluginInterface* from, QWidget* widget);
54         virtual void addMenuItem(qtrapids::PluginInterface* from, QWidget* widget);
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
76 private:
77         QTabWidget *tabWidget_;
78         DownloadView *dlView_;
79         SeedView *seedView_;
80         PreferencesDialog *preferencesDialog_;
81         QSettings settings_;
82         QDir pluginsDir_;
83         QStringList pluginFileNames_;
84
85         qtrapids::QBittorrentSession btSession_;
86
87 };
88
89 #endif