Client-server through DBus, cmake support
[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 "proxy.h"
27
28 class QTabWidget;
29 class DownloadView;
30 class PreferencesDialog;
31
32 namespace qtrapids
33 {
34
35     class SeedView;
36
37     /**
38        @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
39     */
40     class MainWindow : public QMainWindow {
41         Q_OBJECT;
42                         
43     public:
44         
45         MainWindow();
46         ~MainWindow();
47         
48         void connectToServer()
49         {
50             qDBusRegisterMetaType<qtrapids::TorrentState>();
51             qDBusRegisterMetaType<qtrapids::ParamsMap_t>();
52
53             connect(&server_
54                     , SIGNAL(alert(qtrapids::TorrentState
55                                    , qtrapids::ParamsMap_t))
56                     , this
57                     , SLOT(alert(qtrapids::TorrentState
58                                  , qtrapids::ParamsMap_t)));
59             server_.getState();
60         }
61                 
62         signals:
63                 void itemSelected(bool enabled);
64                 
65         public slots:
66         private slots:
67                 void on_openAction_clicked();
68                 void on_removeAction_clicked();
69                 void on_quitAction_clicked();
70                 void on_preferencesAction_clicked();
71                 void on_aboutAction_clicked();
72                 void on_aboutQtAction_clicked();
73                 void on_downloadItemSelectionChanged();
74                 void on_seedItemSelectionChanged();
75                 void handleToolBarAction(QAction* action);
76                 void on_torrentFileSelected(const QString& file);
77         void alert(qtrapids::TorrentState, qtrapids::ParamsMap_t);
78                 
79         private:
80                 QTabWidget *tabWidget_;
81                 DownloadView *dlView_;
82                 SeedView *seedView_;
83                 PreferencesDialog *preferencesDialog_;
84                 QSettings settings_;
85                 
86                 //std::vector< std::auto_ptr<QTorrentHandle> const > torrentHandles_;
87
88         QtRapidsServer server_;
89                 
90
91                 //bool IsNewTorrent(std::auto_ptr<QTorrentHandle> handlePtr);
92     };
93
94 } // namespace qtrapids
95
96 #endif