Switch to side-by-side view

--- a/GUI/volumewidget/vw.cpp
+++ b/GUI/volumewidget/vw.cpp
@@ -22,9 +22,13 @@
 #include <iostream>
 using namespace std;
 
+#include "volumewidget.h"
+
 #include <QApplication>
+#include <QWidget>
+#include <QObject>
 
-#include "volumewidget.h"
+#include "vw.h"
 
 static const char *thisprog;
 
@@ -73,6 +77,11 @@
         Usage();
 
     VolumeHWidget w;
+//    VolumeWidget w;
+    TestReceiver r;
+    app.connect(&w, SIGNAL(volumeChanged(int)), &r, SLOT(onVolumeChanged(int)));
+    app.connect(&w, SIGNAL(muteChanged(bool)), &r, SLOT(onMuteChanged(bool)));
     w.show();
+    w.setUi(50);
     return app.exec();
 }