cutter/src/widgets/sidebar.cpp

121 lines
2.4 KiB
C++
Raw Normal View History

#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;
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);
}
}
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();
2017-04-09 19:55:06 +00:00
if (ui->consoleButton->isChecked())
{
ui->consoleButton->setIcon(QIcon(":/new/prefix1/img/icons/up_white.png"));
2017-04-09 19:55:06 +00:00
}
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()
{
2017-04-09 19:55:06 +00:00
if (ui->lockButton->isChecked())
{
ui->lockButton->setIcon(QIcon(":/new/prefix1/img/icons/unlock_white.png"));
this->main->lockUnlock_Docks(1);
2017-04-09 19:55:06 +00:00
}
else
{
ui->lockButton->setIcon(QIcon(":/new/prefix1/img/icons/lock_white.png"));
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
this->main->dark();
2017-04-09 19:55:06 +00:00
}
else
{
// Clear theme
this->main->def_theme();
}
}
void SideBar::on_calcInput_textChanged(const QString &arg1)
{
2017-04-09 19:55:06 +00:00
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);
}
void SideBar::on_refreshButton_clicked()
{
this->main->refreshVisibleDockWidgets();
}