summaryrefslogtreecommitdiff
path: root/qmpchannelswindow.cpp
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2015-12-28 22:02:45 +0800
committerGravatar Chris Xiong <chirs241097@gmail.com> 2015-12-28 22:02:45 +0800
commit40ea6580aaf3d19aa77f43551185a55013d216d9 (patch)
tree3ac49b1fbe75e22664b57e796ba47a2b55e35b59 /qmpchannelswindow.cpp
parenta17d580f623dfc3a6eb33c540203798d6200a5fc (diff)
downloadQMidiPlayer-40ea6580aaf3d19aa77f43551185a55013d216d9.tar.xz
Last Remote.(WTF)
Diffstat (limited to 'qmpchannelswindow.cpp')
-rw-r--r--qmpchannelswindow.cpp88
1 files changed, 88 insertions, 0 deletions
diff --git a/qmpchannelswindow.cpp b/qmpchannelswindow.cpp
new file mode 100644
index 0000000..6aca878
--- /dev/null
+++ b/qmpchannelswindow.cpp
@@ -0,0 +1,88 @@
+#include <QCheckBox>
+#include <QPushButton>
+#include <QComboBox>
+#include <QLabel>
+#include "qmpchannelswindow.hpp"
+#include "ui_qmpchannelswindow.h"
+#include "qmpmainwindow.hpp"
+
+qmpchannelswindow::qmpchannelswindow(QWidget *parent) :
+ QDialog(parent),
+ ui(new Ui::qmpchannelswindow)
+{
+ ui->setupUi(this);
+ connect(this,SIGNAL(dialogClosing()),parent,SLOT(dialogClosed()));
+ for(int i=0;i<16;++i)
+ {
+ ui->twChannels->setCellWidget(i,0,new QCheckBox(""));
+ connect(ui->twChannels->cellWidget(i,0),SIGNAL(stateChanged(int)),this,SLOT(channelMSChanged()));
+ ui->twChannels->setCellWidget(i,1,new QCheckBox(""));
+ connect(ui->twChannels->cellWidget(i,1),SIGNAL(stateChanged(int)),this,SLOT(channelMSChanged()));
+ ui->twChannels->setCellWidget(i,2,new QComboBox());
+ QComboBox *cb=(QComboBox*)ui->twChannels->cellWidget(i,2);
+ //stub
+ cb->addItem("Internal fluidsynth");
+ ui->twChannels->setCellWidget(i,3,new QLabel(""));
+ ui->twChannels->setCellWidget(i,4,new QPushButton("..."));
+ }
+ ui->twChannels->setColumnWidth(0,32);
+ ui->twChannels->setColumnWidth(1,32);
+ ui->twChannels->setColumnWidth(2,192);
+ ui->twChannels->setColumnWidth(3,192);
+ ui->twChannels->setColumnWidth(4,32);
+}
+
+void qmpchannelswindow::closeEvent(QCloseEvent *event)
+{
+ setVisible(false);
+ emit dialogClosing();
+ event->accept();
+}
+
+void qmpchannelswindow::channelWindowsUpdate()
+{
+ for(int i=0;i<16;++i)
+ {
+ char data[128],nm[24];
+ int b,p;
+ ((qmpMainWindow*)this->parent())->getPlayer()->getChannelPreset(i,&b,&p,nm);
+ sprintf(data,"%d:%d %s",b,p,nm);
+ ((QLabel*)ui->twChannels->cellWidget(i,3))->setText(data);
+ }
+}
+
+void qmpchannelswindow::channelMSChanged()
+{
+ for(int i=0;i<16;++i)
+ {
+ QCheckBox *m,*s;
+ m=(QCheckBox*)ui->twChannels->cellWidget(i,0);
+ s=(QCheckBox*)ui->twChannels->cellWidget(i,1);
+ if(m->isChecked()&&s->isChecked())s->setChecked(false);
+ ((qmpMainWindow*)this->parent())->getPlayer()->setMute(i,m->isChecked());
+ ((qmpMainWindow*)this->parent())->getPlayer()->setSolo(i,s->isChecked());
+ }
+}
+
+qmpchannelswindow::~qmpchannelswindow()
+{
+ delete ui;
+}
+
+void qmpchannelswindow::on_pbUnmute_clicked()
+{
+ for(int i=0;i<16;++i)
+ {
+ ((QCheckBox*)ui->twChannels->cellWidget(i,0))->setChecked(false);
+ ((qmpMainWindow*)this->parent())->getPlayer()->setMute(i,false);
+ }
+}
+
+void qmpchannelswindow::on_pbUnsolo_clicked()
+{
+ for(int i=0;i<16;++i)
+ {
+ ((QCheckBox*)ui->twChannels->cellWidget(i,1))->setChecked(false);
+ ((qmpMainWindow*)this->parent())->getPlayer()->setSolo(i,false);
+ }
+}