adding mainwindow page sources and removing mainwindow sources
[qtrapids] / src / gui / MainWindowPage.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 <DuiApplicationPage>
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 MainWindowPage : public DuiApplicationPage, //QMainWindowPage, 
40                    public qtrapids::PluginHostInterface {
41         Q_OBJECT
42                         
43         public:
44     MainWindowPage();
45
46     virtual ~MainWindowPage();
47
48     virtual void createContent();
49                 
50                 // Implemented from PluginHostInterface
51                 virtual bool setGui(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
52                 virtual void addPluginWidget(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
53                 virtual void addToolbar(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
54                 virtual void addToolItem(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
55                 virtual void addMenu(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
56                 virtual void addMenuItem(QWidget* widget, PluginWidgetType type = UNKNOWN_TYPE);
57                 virtual bool eventRequest(QVariant param, PluginRequest req = UNKNOWN_REQUEST);
58                 
59         signals:
60                 void itemSelected(bool enabled);
61                 
62         public slots:
63         private slots:
64                 void on_openAction_clicked();
65                 void on_removeAction_clicked();
66                 void on_quitAction_clicked();
67                 void on_preferencesAction_clicked();
68                 void on_aboutAction_clicked();
69                 void on_aboutQtAction_clicked();
70                 void on_downloadItemSelectionChanged();
71                 void on_seedItemSelectionChanged();
72                 void handleToolBarAction(QAction* action);
73                 void on_torrentFileSelected(const QString& file);
74                 void on_alert(std::auto_ptr<Alert> al);
75         
76         private:
77                 void LoadPlugins();
78                 
79         private:
80                 QTabWidget *tabWidget_;
81                 DownloadView *dlView_;
82                 SeedView *seedView_;
83                 PreferencesDialog *preferencesDialog_;
84                 QSettings settings_;
85                 QDir pluginsDir_;
86                 QStringList pluginFileNames_;
87                 //std::vector< std::auto_ptr<QTorrentHandle> const > torrentHandles_;
88                 
89                 qtrapids::QBittorrentSession btSession_;
90                 
91
92                 //bool IsNewTorrent(std::auto_ptr<QTorrentHandle> handlePtr);
93 };
94
95 #endif