fix up the power management dialog
This commit is contained in:
parent
08a03bdc59
commit
3ec40c3dc8
|
@ -31,14 +31,25 @@ PowerManagementDialog* PowerManagementDialog::currentDlg = nullptr;
|
|||
|
||||
PowerManagementDialog::PowerManagementDialog(QWidget* parent) : QDialog(parent), ui(new Ui::PowerManagementDialog)
|
||||
{
|
||||
inited = false;
|
||||
|
||||
ui->setupUi(this);
|
||||
setAttribute(Qt::WA_DeleteOnClose);
|
||||
|
||||
if (NDS::ConsoleType)
|
||||
if (NDS::ConsoleType == 1)
|
||||
{
|
||||
ui->grpDSBattery->setEnabled(false);
|
||||
|
||||
oldDSiBatteryCharging = DSi_BPTWL::GetBatteryCharging();
|
||||
oldDSiBatteryLevel = DSi_BPTWL::GetBatteryLevel();
|
||||
}
|
||||
else
|
||||
{
|
||||
ui->grpDSiBattery->setEnabled(false);
|
||||
|
||||
oldDSBatteryLevel = SPI_Powerman::GetBatteryLevelOkay();
|
||||
}
|
||||
|
||||
updateDSBatteryLevelControls();
|
||||
|
||||
ui->cbDSiBatteryCharging->setChecked(DSi_BPTWL::GetBatteryCharging());
|
||||
|
@ -52,6 +63,8 @@ PowerManagementDialog::PowerManagementDialog(QWidget* parent) : QDialog(parent),
|
|||
case DSi_BPTWL::batteryLevel_Full: dsiBatterySliderPos = 4; break;
|
||||
}
|
||||
ui->sliderDSiBatteryLevel->setValue(dsiBatterySliderPos);
|
||||
|
||||
inited = true;
|
||||
}
|
||||
|
||||
PowerManagementDialog::~PowerManagementDialog()
|
||||
|
@ -61,6 +74,19 @@ PowerManagementDialog::~PowerManagementDialog()
|
|||
|
||||
void PowerManagementDialog::done(int r)
|
||||
{
|
||||
if (r != QDialog::Accepted)
|
||||
{
|
||||
if (NDS::ConsoleType == 1)
|
||||
{
|
||||
DSi_BPTWL::SetBatteryCharging(oldDSiBatteryCharging);
|
||||
DSi_BPTWL::SetBatteryLevel(oldDSiBatteryLevel);
|
||||
}
|
||||
else
|
||||
{
|
||||
SPI_Powerman::SetBatteryLevelOkay(oldDSBatteryLevel);
|
||||
}
|
||||
}
|
||||
|
||||
QDialog::done(r);
|
||||
|
||||
closeDlg();
|
||||
|
@ -91,6 +117,8 @@ void PowerManagementDialog::on_cbDSiBatteryCharging_toggled()
|
|||
|
||||
void PowerManagementDialog::on_sliderDSiBatteryLevel_valueChanged(int value)
|
||||
{
|
||||
if (!inited) return;
|
||||
|
||||
u8 newBatteryLevel;
|
||||
switch (value)
|
||||
{
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
#include <QDialog>
|
||||
#include <QAbstractButton>
|
||||
|
||||
#include "types.h"
|
||||
|
||||
namespace Ui { class PowerManagementDialog; }
|
||||
class PowerManagementDialog;
|
||||
|
||||
|
@ -63,6 +65,11 @@ private slots:
|
|||
private:
|
||||
Ui::PowerManagementDialog* ui;
|
||||
|
||||
bool inited;
|
||||
bool oldDSBatteryLevel;
|
||||
bool oldDSiBatteryCharging;
|
||||
u8 oldDSiBatteryLevel;
|
||||
|
||||
void updateDSBatteryLevelControls();
|
||||
};
|
||||
|
||||
|
|
|
@ -20,6 +20,9 @@
|
|||
<string>Power management - melonDS</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<property name="sizeConstraint">
|
||||
<enum>QLayout::SetFixedSize</enum>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QGroupBox" name="grpDSBattery">
|
||||
<property name="title">
|
||||
|
|
Loading…
Reference in New Issue