Code formatting/indentation unified in trunk
[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 {
42     Q_OBJECT;
43
44 public:
45
46     MainWindow();
47     ~MainWindow();
48
49     void connectToServer()
50     {
51         qDBusRegisterMetaType<qtrapids::TorrentState>();
52         qDBusRegisterMetaType<qtrapids::ParamsMap_t>();
53
54         connect(&server_
55                 , SIGNAL(alert(qtrapids::TorrentState
56                                , qtrapids::ParamsMap_t))
57                 , this
58                 , SLOT(alert(qtrapids::TorrentState
59                              , qtrapids::ParamsMap_t)));
60         server_.getState();
61     }
62
63 signals:
64     void itemSelected(bool enabled);
65
66 public slots:
67 private slots:
68     void on_openAction_clicked();
69     void on_removeAction_clicked();
70     void on_quitAction_clicked();
71     void on_preferencesAction_clicked();
72     void on_aboutAction_clicked();
73     void on_aboutQtAction_clicked();
74     void on_downloadItemSelectionChanged();
75     void on_seedItemSelectionChanged();
76     void handleToolBarAction(QAction* action);
77     void on_torrentFileSelected(const QString& file);
78     void alert(qtrapids::TorrentState, qtrapids::ParamsMap_t);
79
80 private:
81     QTabWidget *tabWidget_;
82     DownloadView *dlView_;
83     SeedView *seedView_;
84     PreferencesDialog *preferencesDialog_;
85     QSettings settings_;
86
87     //std::vector< std::auto_ptr<QTorrentHandle> const > torrentHandles_;
88
89     QtRapidsServer server_;
90
91
92     //bool IsNewTorrent(std::auto_ptr<QTorrentHandle> handlePtr);
93 };
94
95 } // namespace qtrapids
96
97 #endif