cutter/src/dialogs/preferences/AsmOptionsWidget.cpp

287 lines
8.7 KiB
C++
Raw Normal View History

#include <QLabel>
#include <QFontDialog>
#include "AsmOptionsWidget.h"
#include "ui_AsmOptionsWidget.h"
#include "PreferencesDialog.h"
#include "utils/Helpers.h"
#include "utils/Configuration.h"
2017-12-14 19:51:24 +00:00
AsmOptionsWidget::AsmOptionsWidget(PreferencesDialog */*dialog*/, QWidget *parent)
2018-03-21 20:32:32 +00:00
: QDialog(parent),
ui(new Ui::AsmOptionsWidget)
{
ui->setupUi(this);
ui->syntaxComboBox->blockSignals(true);
2018-03-21 20:32:32 +00:00
for (const auto &syntax : Core()->cmdList("e asm.syntax=?"))
ui->syntaxComboBox->addItem(syntax, syntax);
ui->syntaxComboBox->blockSignals(false);
updateAsmOptionsFromVars();
connect(Core(), SIGNAL(asmOptionsChanged()), this, SLOT(updateAsmOptionsFromVars()));
}
AsmOptionsWidget::~AsmOptionsWidget() {}
void AsmOptionsWidget::updateAsmOptionsFromVars()
{
qhelpers::setCheckedWithoutSignals(ui->esilCheckBox, Config()->getConfigBool("asm.esil"));
qhelpers::setCheckedWithoutSignals(ui->pseudoCheckBox, Config()->getConfigBool("asm.pseudo"));
qhelpers::setCheckedWithoutSignals(ui->offsetCheckBox, Config()->getConfigBool("asm.offset"));
qhelpers::setCheckedWithoutSignals(ui->describeCheckBox, Config()->getConfigBool("asm.describe"));
qhelpers::setCheckedWithoutSignals(ui->stackpointerCheckBox, Config()->getConfigBool("asm.stackptr"));
qhelpers::setCheckedWithoutSignals(ui->slowCheckBox, Config()->getConfigBool("asm.slow"));
qhelpers::setCheckedWithoutSignals(ui->linesCheckBox, Config()->getConfigBool("asm.lines"));
2018-05-24 06:21:12 +00:00
qhelpers::setCheckedWithoutSignals(ui->fcnlinesCheckBox, Config()->getConfigBool("asm.lines.fcn"));
qhelpers::setCheckedWithoutSignals(ui->flgoffCheckBox, Config()->getConfigBool("asm.flags.offset"));
qhelpers::setCheckedWithoutSignals(ui->emuCheckBox, Config()->getConfigBool("asm.emu"));
qhelpers::setCheckedWithoutSignals(ui->cmtrightCheckBox, Config()->getConfigBool("asm.cmt.right"));
2018-05-24 06:21:12 +00:00
qhelpers::setCheckedWithoutSignals(ui->varsumCheckBox, Config()->getConfigBool("asm.var.summary"));
qhelpers::setCheckedWithoutSignals(ui->sizeCheckBox, Config()->getConfigBool("asm.size"));
bool bytesEnabled = Config()->getConfigBool("asm.bytes");
qhelpers::setCheckedWithoutSignals(ui->bytesCheckBox, bytesEnabled);
qhelpers::setCheckedWithoutSignals(ui->bytespaceCheckBox, Config()->getConfigBool("asm.bytespace"));
ui->bytespaceCheckBox->setEnabled(bytesEnabled);
qhelpers::setCheckedWithoutSignals(ui->lbytesCheckBox, Config()->getConfigBool("asm.lbytes"));
ui->lbytesCheckBox->setEnabled(bytesEnabled);
2018-02-01 09:01:09 +00:00
ui->nbytesSpinBox->blockSignals(true);
ui->nbytesSpinBox->setValue(Config()->getConfigInt("asm.nbytes"));
2018-02-01 09:01:09 +00:00
ui->nbytesSpinBox->blockSignals(false);
ui->nbytesLabel->setEnabled(bytesEnabled);
ui->nbytesSpinBox->setEnabled(bytesEnabled);
QString currentSyntax = Config()->getConfigString("asm.syntax");
2018-03-21 20:32:32 +00:00
for (int i = 0; i < ui->syntaxComboBox->count(); i++) {
if (ui->syntaxComboBox->itemData(i) == currentSyntax) {
ui->syntaxComboBox->blockSignals(true);
ui->syntaxComboBox->setCurrentIndex(i);
ui->syntaxComboBox->blockSignals(false);
break;
}
}
ui->caseComboBox->blockSignals(true);
if (Config()->getConfigBool("asm.ucase")) {
ui->caseComboBox->setCurrentIndex(1);
} else if (Config()->getConfigBool("asm.capitalize")) {
ui->caseComboBox->setCurrentIndex(2);
2018-03-21 20:32:32 +00:00
} else {
ui->caseComboBox->setCurrentIndex(0);
}
ui->caseComboBox->blockSignals(false);
2018-01-31 08:01:16 +00:00
ui->asmTabsSpinBox->blockSignals(true);
ui->asmTabsSpinBox->setValue(Config()->getConfigInt("asm.tabs"));
2018-01-31 08:01:16 +00:00
ui->asmTabsSpinBox->blockSignals(false);
qhelpers::setCheckedWithoutSignals(ui->bblineCheckBox, Config()->getConfigBool("asm.bbline"));
bool varsubEnabled = Config()->getConfigBool("asm.varsub");
qhelpers::setCheckedWithoutSignals(ui->varsubCheckBox, varsubEnabled);
qhelpers::setCheckedWithoutSignals(ui->varsubOnlyCheckBox, Config()->getConfigBool("asm.varsub_only"));
ui->varsubOnlyCheckBox->setEnabled(varsubEnabled);
}
void AsmOptionsWidget::resetToDefault()
{
Config()->resetToDefaultAsmOptions();
updateAsmOptionsFromVars();
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::triggerAsmOptionsChanged()
{
disconnect(Core(), SIGNAL(asmOptionsChanged()), this, SLOT(updateAsmOptionsFromVars()));
Core()->triggerAsmOptionsChanged();
connect(Core(), SIGNAL(asmOptionsChanged()), this, SLOT(updateAsmOptionsFromVars()));
}
void AsmOptionsWidget::on_esilCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.esil", checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_pseudoCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.pseudo", checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_offsetCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.offset", checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_describeCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.describe", checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_stackpointerCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.stackptr", checked);
triggerAsmOptionsChanged();
}
2018-01-31 08:01:16 +00:00
void AsmOptionsWidget::on_slowCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.slow", checked);
2018-01-31 08:01:16 +00:00
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_linesCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.lines", checked);
triggerAsmOptionsChanged();
}
2018-02-04 19:34:52 +00:00
void AsmOptionsWidget::on_fcnlinesCheckBox_toggled(bool checked)
{
2018-05-24 06:21:12 +00:00
Config()->setConfig("asm.lines.fcn", checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_flgoffCheckBox_toggled(bool checked)
{
2018-05-24 06:21:12 +00:00
Config()->setConfig("asm.flags.off", checked);
2018-02-04 19:34:52 +00:00
triggerAsmOptionsChanged();
}
2018-01-31 08:01:16 +00:00
void AsmOptionsWidget::on_emuCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.emu", checked);
2018-01-31 08:01:16 +00:00
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_cmtrightCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.cmt.right", checked);
2018-01-31 08:01:16 +00:00
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_varsumCheckBox_toggled(bool checked)
{
2018-05-24 06:21:12 +00:00
Config()->setConfig("asm.var.summary", checked);
2018-01-31 08:01:16 +00:00
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_bytesCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.bytes", checked);
ui->bytespaceCheckBox->setEnabled(checked);
ui->lbytesCheckBox->setEnabled(checked);
2018-02-01 09:01:09 +00:00
ui->nbytesLabel->setEnabled(checked);
ui->nbytesSpinBox->setEnabled(checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_sizeCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.size", checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_bytespaceCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.bytespace", checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_lbytesCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.lbytes", checked);
triggerAsmOptionsChanged();
}
2018-02-01 09:01:09 +00:00
void AsmOptionsWidget::on_nbytesSpinBox_valueChanged(int value)
{
Config()->setConfig("asm.nbytes", value);
2018-02-01 09:01:09 +00:00
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_syntaxComboBox_currentIndexChanged(int index)
{
Config()->setConfig("asm.syntax",
2018-03-21 20:32:32 +00:00
ui->syntaxComboBox->itemData(index).toString().toUtf8().constData());
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_caseComboBox_currentIndexChanged(int index)
{
bool ucase;
bool capitalize;
2018-03-21 20:32:32 +00:00
switch (index) {
// lowercase
case 0:
default:
ucase = false;
capitalize = false;
break;
// uppercase
case 1:
ucase = true;
capitalize = false;
break;
case 2:
ucase = false;
capitalize = true;
break;
}
Config()->setConfig("asm.ucase", ucase);
Config()->setConfig("asm.capitalize", capitalize);
triggerAsmOptionsChanged();
}
2018-01-31 08:01:16 +00:00
void AsmOptionsWidget::on_asmTabsSpinBox_valueChanged(int value)
{
Config()->setConfig("asm.tabs", value);
2018-01-31 08:01:16 +00:00
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_bblineCheckBox_toggled(bool checked)
{
Config()->setConfig("asm.bbline", checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_varsubCheckBox_toggled(bool checked)
{
2018-05-24 06:21:12 +00:00
Config()->setConfig("asm.var.sub", checked);
ui->varsubOnlyCheckBox->setEnabled(checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_varsubOnlyCheckBox_toggled(bool checked)
{
2018-05-24 06:21:12 +00:00
Config()->setConfig("asm.var.subonly", checked);
triggerAsmOptionsChanged();
}
void AsmOptionsWidget::on_buttonBox_clicked(QAbstractButton *button)
{
2018-03-21 20:32:32 +00:00
switch (ui->buttonBox->buttonRole(button)) {
case QDialogButtonBox::ButtonRole::ResetRole:
resetToDefault();
break;
default:
break;
}
}