Add static currentIP() in AccountDialog and change all
[vlc-remote] / playermainwindow.cpp
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 #include <QDebug>
19 #include <QTime>
20 #include "playermainwindow.h"
21 #include "ui_playermainwindow.h"
22 #include "configdialog.h"
23 #include "aboutdialog.h"
24 #include "accountdialog.h"
25
26
27 PlayerMainWindow::PlayerMainWindow(QWidget *parent) :
28         QMainWindow(parent),
29         ui(new Ui::PlayerMainWindow)
30 {
31     ui->setupUi(this);
32     setWindowTitle("Vlc remote");
33
34
35
36     mTimer = new QTimer(this);
37     mNetManager = new QNetworkAccessManager(this);
38     mPlayListMainWindow = new PlayListMainWindow;
39     mBrowserMainWindow = new BrowseMainWindow;
40
41     mVolume = 100;
42     mMuted = false;
43
44     ui->playlistButton->setIcon(QIcon::fromTheme("notes_bullets"));
45     ui->browseButton->setIcon(QIcon::fromTheme("filemanager_media_folder"));
46
47     ui->previousButton->setIcon(QIcon::fromTheme("pdf_viewer_first_page"));
48     ui->nextButton->setIcon(QIcon::fromTheme("pdf_viewer_last_page"));
49     ui->playButton->setIcon(QIcon::fromTheme("camera_playback"));
50     ui->stopButton->setIcon(QIcon::fromTheme("camera_video_stop"));
51     ui->pauseButton->setIcon(QIcon::fromTheme("camera_video_pause"));
52     ui->fullscreenButton->setIcon(QIcon::fromTheme("general_fullsize"));
53     ui->volDown->setIcon(QIcon::fromTheme("statusarea_volumelevel1"));
54     ui->volUp->setIcon(QIcon::fromTheme("statusarea_volumelevel4"));
55     ui->volMute->setIcon(QIcon::fromTheme("statusarea_volume_mute"));
56
57
58 #if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5)
59     mPlayListMainWindow->setParent(this);
60     mPlayListMainWindow->setAttribute(Qt::WA_Maemo5StackedWindow);
61     mPlayListMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
62     mPlayListMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
63     setAttribute(Qt::WA_Maemo5StackedWindow);
64     mPlayListMainWindow->setWindowFlags(mPlayListMainWindow->windowFlags() | Qt::Window);
65
66     mBrowserMainWindow->setParent(this);
67     mBrowserMainWindow->setAttribute(Qt::WA_Maemo5StackedWindow);
68     mBrowserMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
69     mBrowserMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
70     setAttribute(Qt::WA_Maemo5StackedWindow);
71     mBrowserMainWindow->setWindowFlags(mBrowserMainWindow->windowFlags() | Qt::Window);
72
73 #endif
74
75     connect(mTimer,SIGNAL(timeout()),this,SLOT(askStatus()));
76     connect(ui->actionConfiguration,SIGNAL(triggered()),this,SLOT(showConfig()));
77     connect(ui->actionAbout,SIGNAL(triggered()),this,SLOT(showAbout()));
78     connect(ui->playlistButton,SIGNAL(clicked()),mPlayListMainWindow,SLOT(show()));
79     connect(ui->browseButton,SIGNAL(clicked()),mBrowserMainWindow,SLOT(show()));
80
81     connect(ui->playButton,SIGNAL(clicked()),this,SLOT(play()));
82     connect(ui->stopButton,SIGNAL(clicked()),this,SLOT(stop()));
83     connect(ui->pauseButton,SIGNAL(clicked()),this,SLOT(pause()));
84     connect(ui->previousButton,SIGNAL(clicked()),this,SLOT(previous()));
85     connect(ui->nextButton,SIGNAL(clicked()),this,SLOT(next()));
86     connect(ui->fullscreenButton,SIGNAL(clicked()),this,SLOT(fullscreen()));
87     connect(ui->volUp,SIGNAL(clicked()),this,SLOT(volUp()));
88     connect(ui->volDown,SIGNAL(clicked()),this,SLOT(volDown()));
89     connect(ui->volMute,SIGNAL(clicked()),this,SLOT(volMute()));
90     connect(ui->slider,SIGNAL(sliderMoved(int)),this,SLOT(slide(int)));
91
92     init();
93
94 }
95 void PlayerMainWindow::init()
96 {
97
98     mIp= AccountDialog::currentIp();
99
100     if ( mIp.isEmpty())
101         showConfig();
102
103     else
104     {
105         mTimer->start(5000);
106         mPlayListMainWindow->init();
107         mBrowserMainWindow->init();
108     }
109
110 }
111
112 PlayerMainWindow::~PlayerMainWindow()
113 {
114     delete ui;
115 }
116
117 void PlayerMainWindow::changeEvent(QEvent *e)
118 {
119     QMainWindow::changeEvent(e);
120     switch (e->type()) {
121     case QEvent::LanguageChange:
122         ui->retranslateUi(this);
123         break;
124     default:
125         break;
126     }
127 }
128
129 void PlayerMainWindow::play()
130 {
131
132     mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_play")));
133
134 }
135 void PlayerMainWindow::stop()
136 {
137     mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_stop")));
138
139 }
140 void PlayerMainWindow::pause()
141 {
142     mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_pause")));
143
144 }
145 void PlayerMainWindow::previous()
146 {
147     mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_previous")));
148
149 }
150 void PlayerMainWindow::next()
151 {
152     mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_next")));
153
154 }
155 void PlayerMainWindow::fullscreen()
156 {
157     mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=fullscreen")));
158
159 }
160 void PlayerMainWindow::volUp()
161 {
162     QUrl url = QUrl("http://"+mIp+"/requests/status.xml?command=volume");
163     url.addEncodedQueryItem(QByteArray("val"), QByteArray("%2B20"));
164     mNetManager->get(QNetworkRequest(url));
165 }
166 void PlayerMainWindow::volDown()
167 {
168
169     mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=volume&val=-20")));
170
171 }
172 void PlayerMainWindow::volMute()
173 {
174     this->mMuted = !this->mMuted;
175     if (this->mMuted) {
176         mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=volume&val=0")));
177     }
178     else {
179         mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=volume&val="+QString::number(this->mVolume))));
180     }
181
182 }
183 void PlayerMainWindow::slide(int value)
184 {
185     mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=seek&val="+QString::number(value)+"%25")));
186
187 }
188
189 void PlayerMainWindow::showConfig()
190 {
191     mTimer->stop();
192     AccountDialog * dialog = new AccountDialog;
193     dialog->exec();
194
195     init();
196
197
198 }
199 void PlayerMainWindow::showAbout()
200 {
201
202     AboutDialog * dialog = new AboutDialog;
203     dialog->exec();
204
205 }
206
207 void PlayerMainWindow::askStatus()
208 {
209
210     QNetworkReply * reply =  mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml")));
211     connect(reply,SIGNAL(readyRead()),this,SLOT(parseXmlStatus()));
212 }
213
214 void PlayerMainWindow::parseXmlStatus()
215 {
216     QNetworkReply * reply = qobject_cast<QNetworkReply*>(sender());
217     QDomDocument doc;
218     doc.setContent(reply->readAll());
219     QDomElement docElem = doc.documentElement();
220
221     int volume = docElem.namedItem("volume").toElement().text().toInt();
222     int length = docElem.namedItem("length").toElement().text().toInt();
223     int time = docElem.namedItem("time").toElement().text().toInt();
224     int position = docElem.namedItem("position").toElement().text().toInt();
225     QString state  =docElem.namedItem("state").toElement().text();
226
227
228     if (0 < volume) {
229         this->mVolume = volume;
230         this->mMuted = false;
231     }
232     else {
233         this->mMuted = true;
234     }
235
236
237     QTime timeLength(0,0,0) ;
238     timeLength =  timeLength.addSecs(time);
239
240     ui->timeLabel->setText(timeLength.toString("mm:ss"));
241
242
243     QDomNode infoNode =  docElem.namedItem("information");
244     QDomNode metaInfoNode =  infoNode.namedItem("meta-information");
245     QString title = metaInfoNode.namedItem("title").toElement().text();
246
247     if ( position >= 0 && position <=100)
248         ui->slider->setValue(position);
249
250     ui->label->setText(title);
251     delete reply;
252
253 }
254