mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-09 05:25:26 +00:00
0567114b09
* Bye bye "General Settings", welcome "Appearance" * Fix Windows header * fix typo
95 lines
2.5 KiB
C++
95 lines
2.5 KiB
C++
#include <QDialogButtonBox>
|
|
|
|
#include "PreferencesDialog.h"
|
|
#include "ui_PreferencesDialog.h"
|
|
|
|
#include "AppearanceOptionsWidget.h"
|
|
#include "AsmOptionsWidget.h"
|
|
#include "GraphOptionsWidget.h"
|
|
#include "DebugOptionsWidget.h"
|
|
|
|
#include "PreferenceCategory.h"
|
|
|
|
#include "utils/Helpers.h"
|
|
#include "utils/Configuration.h"
|
|
|
|
|
|
PreferencesDialog::PreferencesDialog(QWidget *parent)
|
|
: QDialog(parent),
|
|
ui(new Ui::PreferencesDialog)
|
|
{
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
ui->setupUi(this);
|
|
|
|
QList<PreferenceCategory> prefs {
|
|
|
|
{
|
|
"Assembly",
|
|
new AsmOptionsWidget(this),
|
|
QIcon(":/img/icons/disas_light.svg"),
|
|
{
|
|
{
|
|
"Graph",
|
|
new GraphOptionsWidget(this),
|
|
QIcon(":/img/icons/graph_light.svg")
|
|
},
|
|
}
|
|
},
|
|
{
|
|
"Debug",
|
|
new DebugOptionsWidget(this),
|
|
QIcon(":/img/icons/bug_light.svg")
|
|
},
|
|
{
|
|
"Appearance",
|
|
new AppearanceOptionsWidget(this),
|
|
QIcon(":/img/icons/polar_light.svg")
|
|
}
|
|
};
|
|
|
|
for (auto &c : prefs)
|
|
c.addItem(*ui->configCategories, *ui->configPanel);
|
|
|
|
connect(ui->configCategories,
|
|
SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
|
|
this, SLOT(changePage(QTreeWidgetItem *, QTreeWidgetItem *)));
|
|
connect(ui->saveButtons,
|
|
SIGNAL(accepted()),
|
|
this, SLOT(close()));
|
|
|
|
QTreeWidgetItem *defitem = ui->configCategories->topLevelItem(0);
|
|
ui->configCategories->setCurrentItem(defitem, 0);
|
|
}
|
|
|
|
PreferencesDialog::~PreferencesDialog()
|
|
{
|
|
}
|
|
|
|
void PreferencesDialog::showSection(PreferencesDialog::Section section)
|
|
{
|
|
QTreeWidgetItem *defitem;
|
|
switch (section) {
|
|
case Section::Appearance:
|
|
ui->configPanel->setCurrentIndex(0);
|
|
defitem = ui->configCategories->topLevelItem(0);
|
|
ui->configCategories->setCurrentItem(defitem, 0);
|
|
break;
|
|
case Section::Disassembly:
|
|
ui->configPanel->setCurrentIndex(1);
|
|
defitem = ui->configCategories->topLevelItem(1);
|
|
ui->configCategories->setCurrentItem(defitem, 1);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void PreferencesDialog::changePage(QTreeWidgetItem *current, QTreeWidgetItem *previous)
|
|
{
|
|
if (!current)
|
|
current = previous;
|
|
|
|
int index = current->data(0, Qt::UserRole).toInt();
|
|
|
|
if (index)
|
|
ui->configPanel->setCurrentIndex(index - 1);
|
|
}
|