mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
100 lines
1.9 KiB
C++
100 lines
1.9 KiB
C++
#include "Sidebar.h"
|
|
#include "ui_Sidebar.h"
|
|
|
|
#include "MainWindow.h"
|
|
|
|
#include <QSettings>
|
|
|
|
|
|
SideBar::SideBar(MainWindow *main) :
|
|
QWidget(main),
|
|
ui(new Ui::SideBar),
|
|
// Radare core found in:
|
|
main(main)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
QSettings settings;
|
|
if (settings.value("responsive").toBool())
|
|
{
|
|
ui->respButton->setChecked(true);
|
|
}
|
|
else
|
|
{
|
|
ui->respButton->setChecked(false);
|
|
}
|
|
if (settings.value("dark").toBool())
|
|
{
|
|
ui->themesButton->setChecked(true);
|
|
}
|
|
else
|
|
{
|
|
ui->themesButton->setChecked(false);
|
|
}
|
|
}
|
|
|
|
SideBar::~SideBar() {}
|
|
|
|
void SideBar::on_tabsButton_clicked()
|
|
{
|
|
this->main->on_actionTabs_triggered();
|
|
}
|
|
|
|
void SideBar::on_lockButton_clicked()
|
|
{
|
|
if (ui->lockButton->isChecked())
|
|
{
|
|
ui->lockButton->setIcon(QIcon(":/img/icons/unlock_white.svg"));
|
|
this->main->lockUnlock_Docks(1);
|
|
}
|
|
else
|
|
{
|
|
ui->lockButton->setIcon(QIcon(":/img/icons/lock_white.svg"));
|
|
this->main->lockUnlock_Docks(0);
|
|
}
|
|
}
|
|
|
|
void SideBar::themesButtonToggle()
|
|
{
|
|
ui->themesButton->click();
|
|
}
|
|
|
|
void SideBar::on_themesButton_clicked()
|
|
{
|
|
if (ui->themesButton->isChecked())
|
|
{
|
|
// Dark theme
|
|
this->main->setDarkTheme();
|
|
}
|
|
else
|
|
{
|
|
// Clear theme
|
|
this->main->setDefaultTheme();
|
|
}
|
|
}
|
|
|
|
void SideBar::on_calcInput_textChanged(const QString &arg1)
|
|
{
|
|
ui->calcOutput->setText(QString::number(CutterCore::getInstance()->math(arg1)));
|
|
}
|
|
|
|
void SideBar::on_asm2hex_clicked()
|
|
{
|
|
ui->hexInput->setPlainText(CutterCore::getInstance()->assemble(ui->asmInput->toPlainText()));
|
|
}
|
|
|
|
void SideBar::on_hex2asm_clicked()
|
|
{
|
|
ui->asmInput->setPlainText(CutterCore::getInstance()->disassemble(ui->hexInput->toPlainText()));
|
|
}
|
|
|
|
void SideBar::on_respButton_toggled(bool checked)
|
|
{
|
|
this->main->toggleResponsive(checked);
|
|
}
|
|
|
|
void SideBar::on_refreshButton_clicked()
|
|
{
|
|
this->main->refreshAll();
|
|
}
|