cutter/src/widgets/Sidebar.cpp

100 lines
1.9 KiB
C++
Raw Normal View History

#include "Sidebar.h"
#include "ui_Sidebar.h"
2017-10-01 19:09:42 +00:00
#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;
2017-04-09 19:55:06 +00:00
if (settings.value("responsive").toBool())
{
ui->respButton->setChecked(true);
2017-04-09 19:55:06 +00:00
}
else
{
ui->respButton->setChecked(false);
}
2017-04-09 19:55:06 +00:00
if (settings.value("dark").toBool())
{
2017-04-05 14:29:01 +00:00
ui->themesButton->setChecked(true);
2017-04-09 19:55:06 +00:00
}
else
{
2017-04-05 14:29:01 +00:00
ui->themesButton->setChecked(false);
}
}
2017-10-02 09:41:28 +00:00
SideBar::~SideBar() {}
void SideBar::on_tabsButton_clicked()
{
this->main->on_actionTabs_triggered();
}
void SideBar::on_lockButton_clicked()
{
2017-04-09 19:55:06 +00:00
if (ui->lockButton->isChecked())
{
ui->lockButton->setIcon(QIcon(":/img/icons/unlock_white.svg"));
this->main->lockUnlock_Docks(1);
2017-04-09 19:55:06 +00:00
}
else
{
ui->lockButton->setIcon(QIcon(":/img/icons/lock_white.svg"));
this->main->lockUnlock_Docks(0);
}
}
2017-04-09 19:55:06 +00:00
void SideBar::themesButtonToggle()
{
ui->themesButton->click();
}
void SideBar::on_themesButton_clicked()
{
2017-04-09 19:55:06 +00:00
if (ui->themesButton->isChecked())
{
// Dark theme
2017-11-20 11:23:37 +00:00
this->main->setDarkTheme();
2017-04-09 19:55:06 +00:00
}
else
{
// Clear theme
2017-11-20 11:23:37 +00:00
this->main->setDefaultTheme();
}
}
void SideBar::on_calcInput_textChanged(const QString &arg1)
{
2017-10-09 18:08:35 +00:00
ui->calcOutput->setText(QString::number(CutterCore::getInstance()->math(arg1)));
}
void SideBar::on_asm2hex_clicked()
{
2017-10-09 18:08:35 +00:00
ui->hexInput->setPlainText(CutterCore::getInstance()->assemble(ui->asmInput->toPlainText()));
}
void SideBar::on_hex2asm_clicked()
{
2017-10-09 18:08:35 +00:00
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();
}