Very rough initial implementation of torrent adding working.
[qtrapids] / src / qml-client / MainPageHandler.h
1 /*
2     <one line to give the program's name and a brief idea of what it does.>
3     Copyright (C) 2012  <copyright holder> <email>
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 along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 #ifndef MAINPAGEHANDLER_H
20 #define MAINPAGEHANDLER_H
21
22 // Used in this class and main.cpp, so include here
23 #include <meegotouch/mapplication.h> 
24 #include <QtCore/QObject>
25 #include <QtCore/QSettings>
26
27 #include "proxy.h"
28 #include "models/QDeclarativeDownloadListModel.h"
29
30 class QDeclarativeEngine;
31
32 namespace qtrapids
33 {
34
35 class MainPageHandler : public QObject
36 {
37     Q_OBJECT
38 public:
39     MainPageHandler(QDeclarativeEngine *engine, QObject *parent = 0);
40     virtual ~MainPageHandler();
41
42     Q_INVOKABLE void fileSelectorOpen();
43     Q_INVOKABLE void on_torrentFileSelected(const QString& fileUrl);
44 private slots:
45     //void on_torrentFileSelected(const QString& file);
46     void on_alert(qtrapids::TorrentState info, qtrapids::ParamsMap_t other_info);
47 private:
48     void connectToServer();
49     void restoreSettings();
50
51 private:
52     Q_DISABLE_COPY(MainPageHandler);
53     
54     QDeclarativeDownloadListModel downloadModel_;
55
56     QDeclarativeEngine *engine_;
57     QSettings settings_;
58     QtRapidsServer server_;
59 };
60
61 } // namespace qtrapids
62
63
64 #endif // MAINPAGEHANDLER_H