show config at the launch of application.
authorlepelley <lepelley@lepelley.(none)>
Tue, 17 Aug 2010 11:43:36 +0000 (13:43 +0200)
committerlepelley <lepelley@lepelley.(none)>
Tue, 17 Aug 2010 11:43:36 +0000 (13:43 +0200)
accountdialog.cpp
playermainwindow.cpp
playermainwindow.h

index 39024b7..7ca7502 100644 (file)
@@ -177,6 +177,7 @@ void AccountDialog::use()
     QSettings settings;
     settings.setValue("config/currentKey", currentKey);
     load();
+    emit accept();
 }
 
 void AccountDialog::enableUi()
index 791da6b..b4b2ed4 100644 (file)
-/*   VLC-REMOTE for MAEMO 5
- *   Copyright (C) 2010 Schutz Sacha <istdasklar@gmail.com>
- *   This program is free software; you can redistribute it and/or modify
- *   it under the terms of the GNU General Public License version 2,
- *   or (at your option) any later version, as published by the Free
- *   Software Foundation
- *
- *   This program is distributed in the hope that it will be useful,
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *   GNU General Public License for more details
- *
- *   You should have received a copy of the GNU General Public
- *   License along with this program; if not, write to the
- *   Free Software Foundation, Inc.,
- *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- */
-#include <QDebug>
-#include <QTime>
-#include "playermainwindow.h"
-#include "ui_playermainwindow.h"
-#include "configdialog.h"
-#include "aboutdialog.h"
-#include "accountdialog.h"
-
-
-PlayerMainWindow::PlayerMainWindow(QWidget *parent) :
-        QMainWindow(parent),
-        ui(new Ui::PlayerMainWindow)
-{
-    ui->setupUi(this);
-    setWindowTitle("Vlc remote");
-
-
-
-    mTimer = new QTimer(this);
-    mNetManager = new QNetworkAccessManager(this);
-    mPlayListMainWindow = new PlayListMainWindow;
-    mBrowserMainWindow = new BrowseMainWindow;
-
-    mVolume = 100;
-    mMuted = false;
-
-    ui->playlistButton->setIcon(QIcon::fromTheme("notes_bullets"));
-    ui->browseButton->setIcon(QIcon::fromTheme("filemanager_media_folder"));
-
-    ui->previousButton->setIcon(QIcon::fromTheme("pdf_viewer_first_page"));
-    ui->nextButton->setIcon(QIcon::fromTheme("pdf_viewer_last_page"));
-    ui->playButton->setIcon(QIcon::fromTheme("camera_playback"));
-    ui->stopButton->setIcon(QIcon::fromTheme("camera_video_stop"));
-    ui->pauseButton->setIcon(QIcon::fromTheme("camera_video_pause"));
-    ui->fullscreenButton->setIcon(QIcon::fromTheme("general_fullsize"));
-    ui->volDown->setIcon(QIcon::fromTheme("statusarea_volumelevel1"));
-    ui->volUp->setIcon(QIcon::fromTheme("statusarea_volumelevel4"));
-    ui->volMute->setIcon(QIcon::fromTheme("statusarea_volume_mute"));
-
-
-#if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5)
-    mPlayListMainWindow->setParent(this);
-    mPlayListMainWindow->setAttribute(Qt::WA_Maemo5StackedWindow);
-    mPlayListMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
-    mPlayListMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
-    setAttribute(Qt::WA_Maemo5StackedWindow);
-    mPlayListMainWindow->setWindowFlags(mPlayListMainWindow->windowFlags() | Qt::Window);
-
-    mBrowserMainWindow->setParent(this);
-    mBrowserMainWindow->setAttribute(Qt::WA_Maemo5StackedWindow);
-    mBrowserMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
-    mBrowserMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
-    setAttribute(Qt::WA_Maemo5StackedWindow);
-    mBrowserMainWindow->setWindowFlags(mBrowserMainWindow->windowFlags() | Qt::Window);
-
-#endif
-
-    connect(mTimer,SIGNAL(timeout()),this,SLOT(askStatus()));
-    connect(ui->actionConfiguration,SIGNAL(triggered()),this,SLOT(showConfig()));
-    connect(ui->actionAbout,SIGNAL(triggered()),this,SLOT(showAbout()));
-    connect(ui->playlistButton,SIGNAL(clicked()),mPlayListMainWindow,SLOT(show()));
-    connect(ui->playlistButton,SIGNAL(clicked()),mPlayListMainWindow,SLOT(showPlayList()));
-    connect(ui->browseButton,SIGNAL(clicked()),mBrowserMainWindow,SLOT(show()));
-    connect(ui->browseButton,SIGNAL(clicked()),mBrowserMainWindow,SLOT(showCurrentDirectory()));
-
-    connect(ui->playButton,SIGNAL(clicked()),this,SLOT(play()));
-    connect(ui->stopButton,SIGNAL(clicked()),this,SLOT(stop()));
-    connect(ui->pauseButton,SIGNAL(clicked()),this,SLOT(pause()));
-    connect(ui->previousButton,SIGNAL(clicked()),this,SLOT(previous()));
-    connect(ui->nextButton,SIGNAL(clicked()),this,SLOT(next()));
-    connect(ui->fullscreenButton,SIGNAL(clicked()),this,SLOT(fullscreen()));
-    connect(ui->volUp,SIGNAL(clicked()),this,SLOT(volUp()));
-    connect(ui->volDown,SIGNAL(clicked()),this,SLOT(volDown()));
-    connect(ui->volMute,SIGNAL(clicked()),this,SLOT(volMute()));
-    connect(ui->slider,SIGNAL(sliderMoved(int)),this,SLOT(slide(int)));
-
-    init();
-
-}
-void PlayerMainWindow::init()
-{
-
-    mIp= AccountDialog::currentIp();
-
-    if ( mIp.isEmpty())
-        showConfig();
-
-    else
-    {
-        mTimer->start(5000);
-        mPlayListMainWindow->init();
-        mBrowserMainWindow->init();
-    }
-
-}
-
-PlayerMainWindow::~PlayerMainWindow()
-{
-    delete ui;
-}
-
-void PlayerMainWindow::changeEvent(QEvent *e)
-{
-    QMainWindow::changeEvent(e);
-    switch (e->type()) {
-    case QEvent::LanguageChange:
-        ui->retranslateUi(this);
-        break;
-    default:
-        break;
-    }
-}
-
-void PlayerMainWindow::play()
-{
-
-    mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_play")));
-
-}
-void PlayerMainWindow::stop()
-{
-    mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_stop")));
-
-}
-void PlayerMainWindow::pause()
-{
-    mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_pause")));
-
-}
-void PlayerMainWindow::previous()
-{
-    mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_previous")));
-
-}
-void PlayerMainWindow::next()
-{
-    mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_next")));
-
-}
-void PlayerMainWindow::fullscreen()
-{
-    mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=fullscreen")));
-
-}
-void PlayerMainWindow::volUp()
-{
-    QUrl url = QUrl("http://"+mIp+"/requests/status.xml?command=volume");
-    url.addEncodedQueryItem(QByteArray("val"), QByteArray("%2B20"));
-    mNetManager->get(QNetworkRequest(url));
-}
-void PlayerMainWindow::volDown()
-{
-
-    mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=volume&val=-20")));
-
-}
-void PlayerMainWindow::volMute()
-{
-    this->mMuted = !this->mMuted;
-    if (this->mMuted) {
-        mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=volume&val=0")));
-    }
-    else {
-        mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=volume&val="+QString::number(this->mVolume))));
-    }
-
-}
-void PlayerMainWindow::slide(int value)
-{
-    mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=seek&val="+QString::number(value)+"%25")));
-
-}
-
-void PlayerMainWindow::showConfig()
-{
-    mTimer->stop();
-    AccountDialog * dialog = new AccountDialog;
-    dialog->exec();
-
-    init();
-
-
-}
-void PlayerMainWindow::showAbout()
-{
-
-    AboutDialog * dialog = new AboutDialog;
-    dialog->exec();
-
-}
-
-void PlayerMainWindow::askStatus()
-{
-
-    QNetworkReply * reply =  mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml")));
-    connect(reply,SIGNAL(readyRead()),this,SLOT(parseXmlStatus()));
-}
-
-void PlayerMainWindow::parseXmlStatus()
-{
-    QNetworkReply * reply = qobject_cast<QNetworkReply*>(sender());
-    QDomDocument doc;
-    doc.setContent(reply->readAll());
-    QDomElement docElem = doc.documentElement();
-
-    int volume = docElem.namedItem("volume").toElement().text().toInt();
-    int length = docElem.namedItem("length").toElement().text().toInt();
-    int time = docElem.namedItem("time").toElement().text().toInt();
-    int position = docElem.namedItem("position").toElement().text().toInt();
-    QString state  =docElem.namedItem("state").toElement().text();
-
-
-    if (0 < volume) {
-        this->mVolume = volume;
-        this->mMuted = false;
-    }
-    else {
-        this->mMuted = true;
-    }
-
-
-    QTime timeLength(0,0,0) ;
-    timeLength =  timeLength.addSecs(time);
-
-    ui->timeLabel->setText(timeLength.toString("mm:ss"));
-
-
-    QDomNode infoNode =  docElem.namedItem("information");
-    QDomNode metaInfoNode =  infoNode.namedItem("meta-information");
-    QString title = metaInfoNode.namedItem("title").toElement().text();
-
-    if ( position >= 0 && position <=100)
-        ui->slider->setValue(position);
-
-    ui->label->setText(title);
-    delete reply;
-
-}
+  /*   VLC-REMOTE for MAEMO 5
+  *   Copyright (C) 2010 Schutz Sacha <istdasklar@gmail.com>
+  *   This program is free software; you can redistribute it and/or modify
+  *   it under the terms of the GNU General Public License version 2,
+  *   or (at your option) any later version, as published by the Free
+  *   Software Foundation
+  *
+  *   This program is distributed in the hope that it will be useful,
+  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  *   GNU General Public License for more details
+  *
+  *   You should have received a copy of the GNU General Public
+  *   License along with this program; if not, write to the
+  *   Free Software Foundation, Inc.,
+  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+  */
+  #include <QDebug>
+  #include <QTime>
+  #include "playermainwindow.h"
+  #include "ui_playermainwindow.h"
+  #include "configdialog.h"
+  #include "aboutdialog.h"
+  #include "accountdialog.h"
+
+
+  PlayerMainWindow::PlayerMainWindow(QWidget *parent) :
+         QMainWindow(parent),
+         ui(new Ui::PlayerMainWindow)
+  {
+      ui->setupUi(this);
+      setWindowTitle("Vlc remote");
+
+
+
+      mTimer = new QTimer(this);
+      mNetManager = new QNetworkAccessManager(this);
+      mPlayListMainWindow = new PlayListMainWindow;
+      mBrowserMainWindow = new BrowseMainWindow;
+
+      mVolume = 100;
+      mMuted = false;
+
+      ui->playlistButton->setIcon(QIcon::fromTheme("notes_bullets"));
+      ui->browseButton->setIcon(QIcon::fromTheme("filemanager_media_folder"));
+
+      ui->previousButton->setIcon(QIcon::fromTheme("pdf_viewer_first_page"));
+      ui->nextButton->setIcon(QIcon::fromTheme("pdf_viewer_last_page"));
+      ui->playButton->setIcon(QIcon::fromTheme("camera_playback"));
+      ui->stopButton->setIcon(QIcon::fromTheme("camera_video_stop"));
+      ui->pauseButton->setIcon(QIcon::fromTheme("camera_video_pause"));
+      ui->fullscreenButton->setIcon(QIcon::fromTheme("general_fullsize"));
+      ui->volDown->setIcon(QIcon::fromTheme("statusarea_volumelevel1"));
+      ui->volUp->setIcon(QIcon::fromTheme("statusarea_volumelevel4"));
+      ui->volMute->setIcon(QIcon::fromTheme("statusarea_volume_mute"));
+
+
+  #if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5)
+      mPlayListMainWindow->setParent(this);
+      mPlayListMainWindow->setAttribute(Qt::WA_Maemo5StackedWindow);
+      mPlayListMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
+      mPlayListMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
+      setAttribute(Qt::WA_Maemo5StackedWindow);
+      mPlayListMainWindow->setWindowFlags(mPlayListMainWindow->windowFlags() | Qt::Window);
+
+      mBrowserMainWindow->setParent(this);
+      mBrowserMainWindow->setAttribute(Qt::WA_Maemo5StackedWindow);
+      mBrowserMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
+      mBrowserMainWindow->setAttribute(Qt::WA_Maemo5LandscapeOrientation,true);
+      setAttribute(Qt::WA_Maemo5StackedWindow);
+      mBrowserMainWindow->setWindowFlags(mBrowserMainWindow->windowFlags() | Qt::Window);
+
+  #endif
+
+      connect(mTimer,SIGNAL(timeout()),this,SLOT(askStatus()));
+      connect(ui->actionConfiguration,SIGNAL(triggered()),this,SLOT(showConfig()));
+      connect(ui->actionAbout,SIGNAL(triggered()),this,SLOT(showAbout()));
+      connect(ui->playlistButton,SIGNAL(clicked()),mPlayListMainWindow,SLOT(show()));
+      connect(ui->playlistButton,SIGNAL(clicked()),mPlayListMainWindow,SLOT(showPlayList()));
+      connect(ui->browseButton,SIGNAL(clicked()),mBrowserMainWindow,SLOT(show()));
+      connect(ui->browseButton,SIGNAL(clicked()),mBrowserMainWindow,SLOT(showCurrentDirectory()));
+
+      connect(ui->playButton,SIGNAL(clicked()),this,SLOT(play()));
+      connect(ui->stopButton,SIGNAL(clicked()),this,SLOT(stop()));
+      connect(ui->pauseButton,SIGNAL(clicked()),this,SLOT(pause()));
+      connect(ui->previousButton,SIGNAL(clicked()),this,SLOT(previous()));
+      connect(ui->nextButton,SIGNAL(clicked()),this,SLOT(next()));
+      connect(ui->fullscreenButton,SIGNAL(clicked()),this,SLOT(fullscreen()));
+      connect(ui->volUp,SIGNAL(clicked()),this,SLOT(volUp()));
+      connect(ui->volDown,SIGNAL(clicked()),this,SLOT(volDown()));
+      connect(ui->volMute,SIGNAL(clicked()),this,SLOT(volMute()));
+      connect(ui->slider,SIGNAL(sliderMoved(int)),this,SLOT(slide(int)));
+
+             showConfig();
+
+
+  }
+  
+
+  PlayerMainWindow::~PlayerMainWindow()
+  {
+      delete ui;
+  }
+
+  void PlayerMainWindow::changeEvent(QEvent *e)
+  {
+      QMainWindow::changeEvent(e);
+      switch (e->type()) {
+      case QEvent::LanguageChange:
+         ui->retranslateUi(this);
+         break;
+      default:
+         break;
+      }
+  }
+
+  void PlayerMainWindow::play()
+  {
+
+      mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_play")));
+
+  }
+  void PlayerMainWindow::stop()
+  {
+      mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_stop")));
+
+  }
+  void PlayerMainWindow::pause()
+  {
+      mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_pause")));
+
+  }
+  void PlayerMainWindow::previous()
+  {
+      mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_previous")));
+
+  }
+  void PlayerMainWindow::next()
+  {
+      mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_next")));
+
+  }
+  void PlayerMainWindow::fullscreen()
+  {
+      mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=fullscreen")));
+
+  }
+  void PlayerMainWindow::volUp()
+  {
+      QUrl url = QUrl("http://"+mIp+"/requests/status.xml?command=volume");
+      url.addEncodedQueryItem(QByteArray("val"), QByteArray("%2B20"));
+      mNetManager->get(QNetworkRequest(url));
+  }
+  void PlayerMainWindow::volDown()
+  {
+
+      mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=volume&val=-20")));
+
+  }
+  void PlayerMainWindow::volMute()
+  {
+      this->mMuted = !this->mMuted;
+      if (this->mMuted) {
+         mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=volume&val=0")));
+      }
+      else {
+         mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=volume&val="+QString::number(this->mVolume))));
+      }
+
+  }
+  void PlayerMainWindow::slide(int value)
+  {
+      mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=seek&val="+QString::number(value)+"%25")));
+
+  }
+
+  void PlayerMainWindow::showConfig()
+  {
+      mTimer->stop();
+      AccountDialog * dialog = new AccountDialog;
+      dialog->exec();
+     
+       mIp= AccountDialog::currentIp();
+
+      mPlayListMainWindow->init();
+      mBrowserMainWindow->init();
+      mTimer->start(5000);
+  }
+  void PlayerMainWindow::showAbout()
+  {
+
+      AboutDialog * dialog = new AboutDialog;
+      dialog->exec();
+
+  }
+
+  void PlayerMainWindow::askStatus()
+  {
+
+      QNetworkReply * reply =  mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml")));
+      connect(reply,SIGNAL(readyRead()),this,SLOT(parseXmlStatus()));
+  }
+
+  void PlayerMainWindow::parseXmlStatus()
+  {
+      QNetworkReply * reply = qobject_cast<QNetworkReply*>(sender());
+      QDomDocument doc;
+      doc.setContent(reply->readAll());
+      QDomElement docElem = doc.documentElement();
+
+      int volume = docElem.namedItem("volume").toElement().text().toInt();
+      int length = docElem.namedItem("length").toElement().text().toInt();
+      int time = docElem.namedItem("time").toElement().text().toInt();
+      int position = docElem.namedItem("position").toElement().text().toInt();
+      QString state  =docElem.namedItem("state").toElement().text();
+
+
+      if (0 < volume) {
+         this->mVolume = volume;
+         this->mMuted = false;
+      }
+      else {
+         this->mMuted = true;
+      }
+
+
+      QTime timeLength(0,0,0) ;
+      timeLength =  timeLength.addSecs(time);
+
+      ui->timeLabel->setText(timeLength.toString("mm:ss"));
+
+
+      QDomNode infoNode =  docElem.namedItem("information");
+      QDomNode metaInfoNode =  infoNode.namedItem("meta-information");
+      QString title = metaInfoNode.namedItem("title").toElement().text();
+
+      if ( position >= 0 && position <=100)
+         ui->slider->setValue(position);
+
+      ui->label->setText(title);
+      delete reply;
+
+  }
 
index 20b3bdb..d300bc9 100644 (file)
@@ -55,7 +55,7 @@ protected slots:
     void parseXmlStatus();
 protected:
     void changeEvent(QEvent *e);
-    void init();
+
 
 private:
     Ui::PlayerMainWindow *ui;