Update async methods! Now valid ip is detected
[vlc-remote] / browsemainwindow.h
1 /*   VLC-REMOTE for MAEMO 5
2  *   Copyright (C) 2010 Schutz Sacha <istdasklar@gmail.com>
3  *   This program is free software; you can redistribute it and/or modify
4  *   it under the terms of the GNU General Public License version 2,
5  *   or (at your option) any later version, as published by the Free
6  *   Software Foundation
7  *
8  *   This program is distributed in the hope that it will be useful,
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *   GNU General Public License for more details
12  *
13  *   You should have received a copy of the GNU General Public
14  *   License along with this program; if not, write to the
15  *   Free Software Foundation, Inc.,
16  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18 #ifndef BROWSEMAINWINDOW_H
19 #define BROWSEMAINWINDOW_H
20
21 #include <QMainWindow>
22 #include <QtNetwork>
23 #include <QtXml>
24 #include <QListWidgetItem>
25 #include "vlcbrowseelement.h"
26
27 namespace Ui {
28     class BrowseMainWindow;
29 }
30
31 class BrowseMainWindow : public QMainWindow {
32     Q_OBJECT
33 public:
34     explicit BrowseMainWindow(QWidget *parent = 0);
35     ~BrowseMainWindow();
36
37 public slots:
38     void init();
39     void browseDirectory(QString);
40     void onBrowse();
41     void onPlay();
42     void onAddToPlaylist();
43     void onListSelectionChanged();
44     void finished(QNetworkReply * reply);
45     void readReady();
46     void showCurrentDirectory();
47
48 protected slots:
49     void parseXmlDirectory();
50     void updateList();
51
52 protected:
53     void changeEvent(QEvent *e);
54     VlcBrowseElement getElementFromText(QString text);
55     void writeFile(QString path, QByteArray text);
56
57 private:
58     Ui::BrowseMainWindow *ui;
59     QNetworkAccessManager * mNetManager;
60     QString mCurrentDir;
61     QString mIp;
62     QList<VlcBrowseElement>* mContents;
63     VlcBrowseElement mCurrentElement;
64     QByteArray mResponse;
65 };
66
67 #endif // BROWSEMAINWINDOW_H