7412e5b29ab9a7fb07f4ca5f1b9895cddd60fe09
[qtrapids] / src / gui / MainWindow.cpp
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
21
22 #include <QDebug>
23
24
25 #include <QToolBar>
26 #include <QAction>
27 #include <QFileDialog>
28
29 #include "DownloadView.h"
30 #include "SeedView.h"
31
32 #include "MainWindow.h"
33
34
35
36 MainWindow::MainWindow()
37 {
38         
39         tabWidget_ = new QTabWidget();
40         
41         /// @todo Exception handling
42         dlView_ = new DownloadView(this);
43         seedView_ = new SeedView(this);
44         
45         tabWidget_->addTab(dlView_, "Downloads");
46         tabWidget_->addTab(seedView_, "Seeds");
47         
48         // Tab widget as central widget.
49         setCentralWidget(tabWidget_);
50         
51         QToolBar *toolBar = new QToolBar();
52         toolBar->addAction("Open");
53         
54         addToolBar(Qt::TopToolBarArea, toolBar);
55         
56         connect(toolBar, SIGNAL(actionTriggered(QAction*)), this, SLOT(handleToolBarAction(QAction*)));
57         
58 }
59
60
61 MainWindow::~MainWindow()
62 {
63 }
64
65
66 void MainWindow::handleToolBarAction(QAction* action)
67 {
68         
69         if (action->text() == "Open") {
70                 QFileDialog *dialog = new QFileDialog( this, "Open torrent file", QString(), tr("Torrent files (*.torrent)"));
71                 dialog->setFileMode(QFileDialog::ExistingFile);
72                 dialog->show();
73         } else {
74         }
75
76
77 }
78