mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-20 03:46:11 +00:00
0c69988f83
* Fix crash on invalid asm/hex Added nullptr checks because the called functions can (and will) return NULL * Call disassemble when hex2asm is clicked * Change order on != comparison * Fix missing whitspace
99 lines
2.2 KiB
C++
99 lines
2.2 KiB
C++
#include "sidebar.h"
|
|
#include "ui_sidebar.h"
|
|
|
|
#include <QSettings>
|
|
|
|
#include "mainwindow.h"
|
|
|
|
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()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void SideBar::on_tabsButton_clicked()
|
|
{
|
|
this->main->on_actionTabs_triggered();
|
|
}
|
|
|
|
void SideBar::on_consoleButton_clicked()
|
|
{
|
|
this->main->on_actionhide_bottomPannel_triggered();
|
|
if (ui->consoleButton->isChecked()) {
|
|
ui->consoleButton->setIcon(QIcon(":/new/prefix1/img/icons/up_white.png"));
|
|
} else {
|
|
ui->consoleButton->setIcon(QIcon(":/new/prefix1/img/icons/down_white.png"));
|
|
}
|
|
}
|
|
|
|
void SideBar::on_webServerButton_clicked()
|
|
{
|
|
main->setWebServerState(ui->webServerButton->isChecked());
|
|
}
|
|
|
|
void SideBar::on_lockButton_clicked()
|
|
{
|
|
if(ui->lockButton->isChecked()) {
|
|
ui->lockButton->setIcon( QIcon(":/new/prefix1/img/icons/unlock_white.png") );
|
|
this->main->lockUnlock_Docks(1);
|
|
} else {
|
|
ui->lockButton->setIcon( QIcon(":/new/prefix1/img/icons/lock_white.png") );
|
|
this->main->lockUnlock_Docks(0);
|
|
}
|
|
}
|
|
|
|
void SideBar::themesButtonToggle() {
|
|
ui->themesButton->click();
|
|
}
|
|
|
|
void SideBar::on_themesButton_clicked()
|
|
{
|
|
if (ui->themesButton->isChecked() ) {
|
|
// Dark theme
|
|
this->main->dark();
|
|
} else {
|
|
// Clear theme
|
|
this->main->def_theme();
|
|
}
|
|
}
|
|
|
|
void SideBar::on_calcInput_textChanged(const QString &arg1)
|
|
{
|
|
ui->calcOutput->setText(QString::number(this->main->core->math (arg1)));
|
|
}
|
|
|
|
void SideBar::on_asm2hex_clicked()
|
|
{
|
|
ui->hexInput->setPlainText(main->core->assemble(ui->asmInput->toPlainText()));
|
|
}
|
|
|
|
void SideBar::on_hex2asm_clicked()
|
|
{
|
|
ui->asmInput->setPlainText(main->core->disassemble(ui->hexInput->toPlainText()));
|
|
}
|
|
|
|
void SideBar::on_respButton_toggled(bool checked)
|
|
{
|
|
this->main->toggleResponsive(checked);
|
|
}
|