mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
Qt: Use slider for volume slider (#659)
* Qt: Use slider for volume slider * Qt: Use slider for volume slider
This commit is contained in:
parent
5f822b32d5
commit
9aacc412ca
1 changed files with 16 additions and 6 deletions
|
@ -135,7 +135,8 @@ ConfigWindow::ConfigWindow(ConfigCallback configCallback, MainWindowCallback win
|
|||
defaultRomPath->setText(newPath);
|
||||
}
|
||||
});
|
||||
QHBoxLayout* romLayout = new QHBoxLayout;
|
||||
|
||||
QHBoxLayout* romLayout = new QHBoxLayout();
|
||||
romLayout->setSpacing(4);
|
||||
romLayout->addWidget(defaultRomPath);
|
||||
romLayout->addWidget(browseRomPath);
|
||||
|
@ -250,14 +251,23 @@ ConfigWindow::ConfigWindow(ConfigCallback configCallback, MainWindowCallback win
|
|||
});
|
||||
audioLayout->addRow(tr("Volume curve"), volumeCurveType);
|
||||
|
||||
QSpinBox* volumeRaw = new QSpinBox();
|
||||
volumeRaw->setRange(0, 200);
|
||||
volumeRaw->setValue(config.audioDeviceConfig.volumeRaw * 100);
|
||||
connect(volumeRaw, &QSpinBox::valueChanged, this, [&](int value) {
|
||||
QLabel* volumeLabel = new QLabel(QString::number(int(config.audioDeviceConfig.volumeRaw * 100)));
|
||||
|
||||
QSlider* volumeSlider = new QSlider(Qt::Horizontal);
|
||||
volumeSlider->setRange(0, 200);
|
||||
volumeSlider->setValue(int(config.audioDeviceConfig.volumeRaw * 100));
|
||||
connect(volumeSlider, &QSlider::valueChanged, this, [this, volumeLabel](int value) {
|
||||
config.audioDeviceConfig.volumeRaw = static_cast<float>(value) / 100.0f;
|
||||
volumeLabel->setText(QString::number(value));
|
||||
|
||||
updateConfig();
|
||||
});
|
||||
audioLayout->addRow(tr("Audio device volume"), volumeRaw);
|
||||
|
||||
QHBoxLayout* volumeLayout = new QHBoxLayout();
|
||||
volumeLayout->setSpacing(4);
|
||||
volumeLayout->addWidget(volumeSlider);
|
||||
volumeLayout->addWidget(volumeLabel);
|
||||
audioLayout->addRow(tr("Audio device volume"), volumeLayout);
|
||||
|
||||
// Battery settings
|
||||
QGroupBox* batGroupBox = new QGroupBox(tr("Battery Settings"), this);
|
||||
|
|
Loading…
Add table
Reference in a new issue