- Added daemon start functionality
[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                 // Request server state. 
73                 // NOTE: This call starts qtrapids-server automatically with the GUI, 
74                 // if the .service file is in /usr/share/dbus-1/services/
75                 server_.getState();
76         }
77
78 signals:
79         void itemSelected(bool enabled);
80
81 public slots:
82 private slots:
83         void on_openAction_clicked();
84         void on_removeAction_clicked();
85         void on_quitAction_clicked();
86         void on_startDaemonAction_clicked();
87         void on_stopDaemonAction_clicked();
88         void on_serverTerminated();
89         void on_columnsAction_clicked();
90         void on_preferencesAction_clicked();
91         void on_aboutAction_clicked();
92         void on_aboutQtAction_clicked();
93         void on_tabWidget_tabCloseRequested(int index);
94         void on_downloadItemSelectionChanged();
95         void on_seedItemSelectionChanged();
96         void handleToolBarAction(QAction* action);
97         void on_torrentFileSelected(const QString& file);
98         void on_alert(qtrapids::TorrentState, qtrapids::ParamsMap_t);
99
100         
101 private:
102         void LoadPlugins();
103         void StartTorrentFromBufferData(char const* data, int size);
104                 
105 private:
106         QTabWidget *tabWidget_;
107         DownloadView *dlView_;
108         SeedView *seedView_;
109         QWidget *searchWidget_;
110         QAction *startDaemonAction_, *stopDaemonAction_;
111         PreferencesDialog *preferencesDialog_;
112         QSettings settings_;
113         QList<QDir> pluginDirs_;
114         QStringList pluginFileNames_;
115
116
117         //std::vector< std::auto_ptr<QTorrentHandle> const > torrentHandles_;
118
119         QtRapidsServer server_;
120
121
122         //bool IsNewTorrent(std::auto_ptr<QTorrentHandle> handlePtr);
123 };
124
125 } // namespace qtrapids
126
127 #endif