Browser working correctly from a functional perspective.
[vlc-remote] / playermainwindow.h
index d11af4c..20b3bdb 100644 (file)
@@ -23,6 +23,8 @@
 #include <QtXml>
 #include <QTimer>
 #include "playlistmainwindow.h"
+#include "browsemainwindow.h"
+
 namespace Ui {
     class PlayerMainWindow;
 }
@@ -45,6 +47,7 @@ public slots:
     void fullscreen();
     void volUp();
     void volDown();
+    void volMute();
     void slide(int value);
 
 
@@ -52,13 +55,17 @@ protected slots:
     void parseXmlStatus();
 protected:
     void changeEvent(QEvent *e);
+    void init();
 
 private:
     Ui::PlayerMainWindow *ui;
     PlayListMainWindow * mPlayListMainWindow;
+    BrowseMainWindow * mBrowserMainWindow;
     QNetworkAccessManager * mNetManager;
     QString mIp;
     QTimer * mTimer;
+    int mVolume;
+    int mMuted;
 
 };