aboutsummaryrefslogtreecommitdiff
path: root/qmidiplayer-desktop/qmpdevpropdialog.cpp
blob: 0159a635ebb4ca51f535cc3d7e3f582c91975217 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#include <QComboBox>
#include <QHBoxLayout>
#include <QLabel>
#include <QFileDialog>
#include <QTableWidgetItem>
#include <QCheckBox>
#include "qmpdevpropdialog.hpp"
#include "qmpmainwindow.hpp"
#include "qmpsettingswindow.hpp"
#include "ui_qmpdevpropdialog.h"

qmpDevPropDialog::qmpDevPropDialog(QWidget *parent) :
	QDialog(parent),
	ui(new Ui::qmpDevPropDialog)
{
	ui->setupUi(this);
}

qmpDevPropDialog::~qmpDevPropDialog()
{
	delete ui;
}

void qmpDevPropDialog::launch()
{
	QSettings *s=qmpSettingsWindow::getSettingsIntf();
	ui->twProps->clearContents();
	ui->twProps->setRowCount(0);
	s->beginGroup("DevInit");
	for(auto&k:s->allKeys())
		setupRow(k,s->value(k).toString());
	s->endGroup();
	show();
}

void qmpDevPropDialog::on_pbAdd_clicked()
{
	setupRow();
}

void qmpDevPropDialog::on_pbRemove_clicked()
{
	ui->twProps->removeRow(ui->twProps->currentRow());
}

void qmpDevPropDialog::setupRow(const QString&dn,const QString&din)
{
	int r;
	ui->twProps->insertRow(r=ui->twProps->rowCount());
	ui->twProps->setRowHeight(r,32);
	QComboBox *cb;
	ui->twProps->setCellWidget(r,0,cb=new QComboBox);
	for(auto&s:qmpMainWindow::getInstance()->getPlayer()->getMidiOutDevices())
	if(s!="Internal FluidSynth")cb->addItem(QString::fromStdString(s));
	QWidget *fw=new QWidget;
	QLabel *lb;QPushButton *pb;
	fw->setLayout(new QHBoxLayout);
	fw->layout()->addWidget(lb=new QLabel);
	lb->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Preferred);
	if(din.length()){lb->setText(din);fw->setProperty("fn",din);}
	fw->layout()->addWidget(pb=new QPushButton);
	pb->setText("...");
	pb->setSizePolicy(QSizePolicy::Preferred,QSizePolicy::Preferred);
	QCheckBox *cbx;
	ui->twProps->setCellWidget(r,1,cbx=new QCheckBox);
	cbx->setEnabled(false);
	cbx->setChecked(false);
	ui->twProps->setCellWidget(r,2,fw);
	ui->twProps->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeMode::ResizeToContents);
	connect(cb,&QComboBox::currentTextChanged,this,[this,r](const QString&s){
		bool conn=false;
		for(auto&ds:qmpMainWindow::getInstance()->getPlayer()->getMidiOutDevices())
			if(s==QString::fromStdString(ds)){conn=true;break;}
		((QCheckBox*)ui->twProps->cellWidget(r,1))->setChecked(conn);
	});
	if(dn.length())cb->setCurrentText(dn);
	emit cb->currentTextChanged(cb->currentText());
	connect(pb,&QPushButton::clicked,this,[this,lb,fw]{
		lb->setText(QFileDialog::getOpenFileUrl(this,"Select Device Initialization File",QUrl()).path());
		fw->setProperty("fn",lb->text());
	});
}

void qmpDevPropDialog::on_buttonBox_accepted()
{
	QSettings *s=qmpSettingsWindow::getSettingsIntf();
	s->beginGroup("DevInit");
	s->remove("");
	for(int i=0;i<ui->twProps->rowCount();++i)
	{
		s->setValue(((QComboBox*)ui->twProps->cellWidget(i,0))->currentText(),
					ui->twProps->cellWidget(i,2)->property("fn").toString());
	}
	s->endGroup();
	s->sync();
}