- Added rate limit preferences to DBus client/server implementation
[qtrapids] / src / client / 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
26 #include "PluginInterface.h"
27 #include "proxy.h"
28
29 class QTabWidget;
30 class DownloadView;
31 class PreferencesDialog;
32
33 namespace qtrapids
34 {
35
36 class SeedView;
37
38 /**
39    @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
40 */
41 class MainWindow : public QMainWindow, public PluginHostInterface 
42 {
43
44         Q_OBJECT;
45
46 public:
47
48         MainWindow();
49         virtual ~MainWindow();
50
51         // Implemented from PluginHostInterface
52         virtual bool setGui(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE, qtrapids::PluginInterface* plugin = NULL);
53         virtual void addPluginWidget(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
54         virtual void addToolbar(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
55         virtual void addToolItem(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
56         virtual void addMenu(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
57         virtual void addMenuItem(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
58         virtual bool eventRequest(QVariant param, PluginRequest req = UNKNOWN_REQUEST);
59         
60         void RestoreSettings();
61
62         void connectToServer() {
63                 qDBusRegisterMetaType<qtrapids::TorrentState>();
64                 qDBusRegisterMetaType<qtrapids::ParamsMap_t>();
65
66                 connect(&server_
67                         , SIGNAL(alert(qtrapids::TorrentState
68                                        , qtrapids::ParamsMap_t))
69                         , this
70                         , SLOT(on_alert(qtrapids::TorrentState
71                                      , qtrapids::ParamsMap_t)));
72                 server_.getState();
73         }
74
75 signals:
76         void itemSelected(bool enabled);
77
78 public slots:
79 private slots:
80         void on_openAction_clicked();
81         void on_removeAction_clicked();
82         void on_quitAction_clicked();
83         void on_preferencesAction_clicked();
84         void on_aboutAction_clicked();
85         void on_aboutQtAction_clicked();
86         void on_tabWidget_tabCloseRequested(int index);
87         void on_downloadItemSelectionChanged();
88         void on_seedItemSelectionChanged();
89         void handleToolBarAction(QAction* action);
90         void on_torrentFileSelected(const QString& file);
91         void on_alert(qtrapids::TorrentState, qtrapids::ParamsMap_t);
92
93 private:
94         void LoadPlugins();
95         void StartTorrentFromBufferData(char const* data, int size);
96                 
97 private:
98         QTabWidget *tabWidget_;
99         DownloadView *dlView_;
100         SeedView *seedView_;
101         QWidget *searchWidget_;
102         PreferencesDialog *preferencesDialog_;
103         QSettings settings_;
104         QList<QDir> pluginDirs_;
105         QStringList pluginFileNames_;
106
107         //std::vector< std::auto_ptr<QTorrentHandle> const > torrentHandles_;
108
109         QtRapidsServer server_;
110
111
112         //bool IsNewTorrent(std::auto_ptr<QTorrentHandle> handlePtr);
113 };
114
115 } // namespace qtrapids
116
117 #endif