2017-10-01 19:09:42 +00:00
|
|
|
#include "MainWindow.h"
|
|
|
|
#include "ui_MainWindow.h"
|
2017-10-02 09:41:28 +00:00
|
|
|
#include "dialogs/CreateNewDialog.h"
|
2017-10-01 19:09:42 +00:00
|
|
|
#include "dialogs/CommentsDialog.h"
|
|
|
|
#include "dialogs/AboutDialog.h"
|
|
|
|
#include "dialogs/RenameDialog.h"
|
|
|
|
#include "dialogs/AsmOptionsDialog.h"
|
|
|
|
#include "utils/Helpers.h"
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-05-14 16:21:54 +00:00
|
|
|
#include <QComboBox>
|
|
|
|
#include <QCompleter>
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QDesktopServices>
|
2017-05-14 16:21:54 +00:00
|
|
|
#include <QDir>
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include <QFile>
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QFileDialog>
|
2017-05-14 16:21:54 +00:00
|
|
|
#include <QFont>
|
|
|
|
#include <QFontDialog>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QList>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QProcess>
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QPropertyAnimation>
|
2017-05-14 16:21:54 +00:00
|
|
|
#include <QScrollBar>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QShortcut>
|
|
|
|
#include <QStringListModel>
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QStyledItemDelegate>
|
2017-05-14 16:21:54 +00:00
|
|
|
#include <QStyleFactory>
|
|
|
|
#include <QTextCursor>
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QtGlobal>
|
2017-05-14 16:21:54 +00:00
|
|
|
#include <QToolButton>
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QToolTip>
|
2017-04-13 15:36:20 +00:00
|
|
|
#include <QTreeWidgetItem>
|
2017-05-14 16:21:54 +00:00
|
|
|
|
2017-10-01 19:09:42 +00:00
|
|
|
#include "utils/Highlighter.h"
|
|
|
|
#include "utils/HexAsciiHighlighter.h"
|
|
|
|
#include "utils/Helpers.h"
|
2017-10-02 09:41:28 +00:00
|
|
|
#include "dialogs/NewFileDialog.h"
|
2017-04-13 15:36:20 +00:00
|
|
|
|
2017-10-12 19:55:15 +00:00
|
|
|
#include "widgets/PreviewWidget.h"
|
2017-10-02 16:18:40 +00:00
|
|
|
#include "widgets/FunctionsWidget.h"
|
|
|
|
#include "widgets/SectionsWidget.h"
|
|
|
|
#include "widgets/CommentsWidget.h"
|
|
|
|
#include "widgets/ImportsWidget.h"
|
|
|
|
#include "widgets/ExportsWidget.h"
|
|
|
|
#include "widgets/SymbolsWidget.h"
|
|
|
|
#include "widgets/StringsWidget.h"
|
|
|
|
#include "widgets/SectionsDock.h"
|
|
|
|
#include "widgets/RelocsWidget.h"
|
|
|
|
#include "widgets/FlagsWidget.h"
|
|
|
|
#include "widgets/CodeGraphic.h"
|
|
|
|
#include "widgets/Dashboard.h"
|
|
|
|
#include "widgets/Notepad.h"
|
|
|
|
#include "widgets/Sidebar.h"
|
|
|
|
#include "widgets/SdbDock.h"
|
|
|
|
#include "widgets/Omnibar.h"
|
|
|
|
#include "widgets/ConsoleWidget.h"
|
2017-10-01 19:09:42 +00:00
|
|
|
#include "dialogs/OptionsDialog.h"
|
2017-10-02 16:18:40 +00:00
|
|
|
#include "widgets/EntrypointWidget.h"
|
2017-09-28 21:53:59 +00:00
|
|
|
#include "widgets/DisassemblerGraphView.h"
|
2017-04-13 15:36:20 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
// graphics
|
|
|
|
#include <QGraphicsEllipseItem>
|
|
|
|
#include <QGraphicsScene>
|
|
|
|
#include <QGraphicsView>
|
|
|
|
|
2017-04-05 08:56:59 +00:00
|
|
|
#include <cassert>
|
|
|
|
|
2017-04-09 17:09:35 +00:00
|
|
|
static void registerCustomFonts()
|
2017-04-05 08:56:59 +00:00
|
|
|
{
|
2017-06-15 09:53:10 +00:00
|
|
|
int ret = QFontDatabase::addApplicationFont(":/fonts/Anonymous Pro.ttf");
|
2017-04-09 17:09:35 +00:00
|
|
|
assert(-1 != ret && "unable to register Anonymous Pro.ttf");
|
2017-04-05 08:56:59 +00:00
|
|
|
|
2017-06-15 09:53:10 +00:00
|
|
|
ret = QFontDatabase::addApplicationFont(":/fonts/Inconsolata-Regular.ttf");
|
2017-04-09 17:09:35 +00:00
|
|
|
assert(-1 != ret && "unable to register Inconsolata-Regular.ttf");
|
2017-04-05 08:56:59 +00:00
|
|
|
|
2017-04-09 17:09:35 +00:00
|
|
|
// do not issue a warning in release
|
|
|
|
Q_UNUSED(ret)
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-05-13 18:09:36 +00:00
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
2017-03-29 10:18:37 +00:00
|
|
|
QMainWindow(parent),
|
2017-10-09 18:08:35 +00:00
|
|
|
core(CutterCore::getInstance()),
|
2017-10-12 19:55:15 +00:00
|
|
|
previewDock(nullptr),
|
2017-04-13 15:36:20 +00:00
|
|
|
notepadDock(nullptr),
|
2017-04-12 21:04:39 +00:00
|
|
|
asmDock(nullptr),
|
|
|
|
calcDock(nullptr),
|
|
|
|
omnibar(nullptr),
|
|
|
|
sideBar(nullptr),
|
2017-04-01 01:56:35 +00:00
|
|
|
ui(new Ui::MainWindow),
|
2017-04-12 21:04:39 +00:00
|
|
|
highlighter(nullptr),
|
|
|
|
hex_highlighter(nullptr),
|
|
|
|
graphicsBar(nullptr),
|
2017-09-27 20:23:18 +00:00
|
|
|
entrypointDock(nullptr),
|
2017-04-12 21:04:39 +00:00
|
|
|
functionsDock(nullptr),
|
|
|
|
importsDock(nullptr),
|
2017-05-19 07:45:26 +00:00
|
|
|
exportsDock(nullptr),
|
2017-04-12 21:04:39 +00:00
|
|
|
symbolsDock(nullptr),
|
|
|
|
relocsDock(nullptr),
|
|
|
|
commentsDock(nullptr),
|
|
|
|
stringsDock(nullptr),
|
|
|
|
flagsDock(nullptr),
|
|
|
|
dashboardDock(nullptr),
|
|
|
|
gotoEntry(nullptr),
|
|
|
|
sdbDock(nullptr),
|
|
|
|
sidebar_action(nullptr),
|
|
|
|
sectionsDock(nullptr),
|
2017-10-14 09:45:11 +00:00
|
|
|
consoleWidget(nullptr)
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
|
|
|
doLock = false;
|
2017-10-14 09:35:49 +00:00
|
|
|
configuration = new Configuration();
|
2017-05-13 18:09:36 +00:00
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-05-13 18:09:36 +00:00
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{
|
|
|
|
delete core;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::initUI()
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2017-04-05 08:56:59 +00:00
|
|
|
|
2017-05-13 18:09:36 +00:00
|
|
|
registerCustomFonts();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Toolbar
|
|
|
|
*/
|
|
|
|
// Hide central tab widget tabs
|
|
|
|
QTabBar *centralbar = ui->centralTabWidget->tabBar();
|
|
|
|
centralbar->setVisible(false);
|
2017-10-09 18:08:35 +00:00
|
|
|
consoleWidget = new ConsoleWidget(this);
|
2017-04-26 23:00:20 +00:00
|
|
|
ui->tabVerticalLayout->addWidget(consoleWidget);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
// Sepparator between back/forward and undo/redo buttons
|
2017-04-09 19:55:06 +00:00
|
|
|
QWidget *spacer4 = new QWidget();
|
2017-03-29 10:18:37 +00:00
|
|
|
spacer4->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding);
|
|
|
|
spacer4->setMinimumSize(10, 10);
|
|
|
|
ui->mainToolBar->insertWidget(ui->actionForward, spacer4);
|
|
|
|
|
|
|
|
// Popup menu on theme toolbar button
|
|
|
|
QToolButton *backButton = new QToolButton(this);
|
2017-06-15 09:53:10 +00:00
|
|
|
backButton->setIcon(QIcon(":/img/icons/arrow_left.svg"));
|
2017-03-29 10:18:37 +00:00
|
|
|
//backButton->setPopupMode(QToolButton::DelayedPopup);
|
|
|
|
ui->mainToolBar->insertWidget(ui->actionForward, backButton);
|
2017-09-02 08:46:48 +00:00
|
|
|
connect(backButton, SIGNAL(clicked()), this, SLOT(backButton_clicked()));
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
// Sepparator between undo/redo and goto lineEdit
|
2017-04-09 19:55:06 +00:00
|
|
|
QWidget *spacer3 = new QWidget();
|
2017-03-29 10:18:37 +00:00
|
|
|
spacer3->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
|
|
|
spacer3->setMinimumSize(20, 20);
|
|
|
|
spacer3->setMaximumWidth(300);
|
|
|
|
ui->mainToolBar->insertWidget(ui->actionShow_Hide_mainsidebar, spacer3);
|
|
|
|
|
|
|
|
// Omnibar LineEdit
|
|
|
|
this->omnibar = new Omnibar(this);
|
|
|
|
ui->mainToolBar->insertWidget(ui->actionShow_Hide_mainsidebar, this->omnibar);
|
|
|
|
|
2017-09-01 13:03:35 +00:00
|
|
|
// Add special separators to the toolbar that expand to separate groups of elements
|
2017-04-09 19:55:06 +00:00
|
|
|
QWidget *spacer2 = new QWidget();
|
2017-03-29 10:18:37 +00:00
|
|
|
spacer2->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
|
|
|
spacer2->setMinimumSize(10, 10);
|
|
|
|
spacer2->setMaximumWidth(300);
|
|
|
|
ui->mainToolBar->insertWidget(ui->actionShow_Hide_mainsidebar, spacer2);
|
|
|
|
|
2017-09-01 13:03:35 +00:00
|
|
|
// Separator between back/forward and undo/redo buttons
|
2017-04-09 19:55:06 +00:00
|
|
|
QWidget *spacer = new QWidget();
|
2017-03-29 10:18:37 +00:00
|
|
|
spacer->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding);
|
|
|
|
spacer->setMinimumSize(20, 20);
|
|
|
|
ui->mainToolBar->addWidget(spacer);
|
|
|
|
|
|
|
|
// codeGraphics tool bar
|
|
|
|
this->graphicsBar = new GraphicsBar(this);
|
|
|
|
this->graphicsBar->setMovable(false);
|
|
|
|
addToolBarBreak(Qt::TopToolBarArea);
|
|
|
|
addToolBar(graphicsBar);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Dock Widgets
|
|
|
|
*/
|
2017-10-11 21:07:32 +00:00
|
|
|
dockWidgets.reserve(14);
|
2017-10-11 11:22:30 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
// Add Memory DockWidget
|
2017-10-12 19:55:15 +00:00
|
|
|
this->previewDock = new PreviewWidget(tr("Preview"), this);
|
|
|
|
dockWidgets.push_back(previewDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
// To use in the future when we handle more than one memory views
|
2017-10-12 19:55:15 +00:00
|
|
|
// this->previewDock->setAttribute(Qt::WA_DeleteOnClose);
|
2017-03-29 10:18:37 +00:00
|
|
|
// this->add_debug_output( QString::number(this->dockList.length()) );
|
|
|
|
|
2017-10-11 21:07:32 +00:00
|
|
|
// Add disassembly view (dockable)
|
2017-10-12 19:55:15 +00:00
|
|
|
this->disassemblyDock = new DisassemblyWidget(tr("Disassembly"), this);
|
2017-10-11 21:07:32 +00:00
|
|
|
dockWidgets.push_back(disassemblyDock);
|
|
|
|
|
2017-10-12 19:55:15 +00:00
|
|
|
sidebarDock = new SidebarWidget(tr("Sidebar"), this);
|
|
|
|
dockWidgets.push_back(sidebarDock);
|
|
|
|
|
|
|
|
hexdumpDock = new HexdumpWidget(tr("Hexdump"), this);
|
|
|
|
dockWidgets.push_back(hexdumpDock);
|
|
|
|
|
2017-10-11 21:07:32 +00:00
|
|
|
// Add graph view as dockable
|
|
|
|
graphDock = new QDockWidget(tr("Graph"), this);
|
2017-10-20 16:02:35 +00:00
|
|
|
graphDock->setObjectName("Graph");
|
2017-10-11 21:07:32 +00:00
|
|
|
graphDock->setAllowedAreas(Qt::AllDockWidgetAreas);
|
|
|
|
DisassemblerGraphView *gv = new DisassemblerGraphView(graphDock);
|
|
|
|
graphDock->setWidget(gv);
|
|
|
|
dockWidgets.push_back(graphDock);
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
// Add Sections dock panel
|
2017-04-12 10:16:43 +00:00
|
|
|
this->sectionsDock = new SectionsDock(this);
|
2017-04-13 15:36:20 +00:00
|
|
|
dockWidgets.push_back(sectionsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-07-13 18:49:12 +00:00
|
|
|
// Add entrypoint DockWidget
|
|
|
|
this->entrypointDock = new EntrypointWidget(this);
|
|
|
|
dockWidgets.push_back(entrypointDock);
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
// Add functions DockWidget
|
|
|
|
this->functionsDock = new FunctionsWidget(this);
|
2017-04-13 15:36:20 +00:00
|
|
|
dockWidgets.push_back(functionsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
// Add imports DockWidget
|
|
|
|
this->importsDock = new ImportsWidget(this);
|
2017-04-13 15:36:20 +00:00
|
|
|
dockWidgets.push_back(importsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
// Add exports DockWidget
|
|
|
|
this->exportsDock = new ExportsWidget(this);
|
|
|
|
dockWidgets.push_back(exportsDock);
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
// Add symbols DockWidget
|
|
|
|
this->symbolsDock = new SymbolsWidget(this);
|
2017-04-13 15:36:20 +00:00
|
|
|
dockWidgets.push_back(symbolsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
// Add relocs DockWidget
|
|
|
|
this->relocsDock = new RelocsWidget(this);
|
2017-04-13 15:36:20 +00:00
|
|
|
dockWidgets.push_back(relocsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
// Add comments DockWidget
|
|
|
|
this->commentsDock = new CommentsWidget(this);
|
2017-04-13 15:36:20 +00:00
|
|
|
dockWidgets.push_back(commentsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
// Add strings DockWidget
|
|
|
|
this->stringsDock = new StringsWidget(this);
|
2017-04-13 15:36:20 +00:00
|
|
|
dockWidgets.push_back(stringsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
// Add flags DockWidget
|
|
|
|
this->flagsDock = new FlagsWidget(this);
|
2017-04-13 15:36:20 +00:00
|
|
|
dockWidgets.push_back(flagsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
// Add Notepad Dock panel
|
|
|
|
this->notepadDock = new Notepad(this);
|
2017-04-13 15:36:20 +00:00
|
|
|
dockWidgets.push_back(notepadDock);
|
2017-10-12 19:55:15 +00:00
|
|
|
connect(previewDock, SIGNAL(fontChanged(QFont)), notepadDock, SLOT(setFonts(QFont)));
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
//Add Dashboard Dock panel
|
|
|
|
this->dashboardDock = new Dashboard(this);
|
2017-04-13 15:36:20 +00:00
|
|
|
dockWidgets.push_back(dashboardDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
// Set up dock widgets default layout
|
|
|
|
restoreDocks();
|
|
|
|
hideAllDocks();
|
|
|
|
showDefaultDocks();
|
|
|
|
|
|
|
|
// Restore saved settings
|
|
|
|
this->readSettings();
|
|
|
|
// TODO: Allow the user to select this option visually in the GUI settings
|
|
|
|
// Adjust the DockWidget areas
|
2017-04-09 19:55:06 +00:00
|
|
|
setCorner(Qt::TopLeftCorner, Qt::LeftDockWidgetArea);
|
2017-03-29 10:18:37 +00:00
|
|
|
//setCorner( Qt::TopRightCorner, Qt::RightDockWidgetArea );
|
2017-04-09 19:55:06 +00:00
|
|
|
setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea);
|
2017-03-29 10:18:37 +00:00
|
|
|
//setCorner( Qt::BottomRightCorner, Qt::RightDockWidgetArea );
|
|
|
|
|
|
|
|
// Setup and hide sidebar by default
|
|
|
|
this->sideBar = new SideBar(this);
|
|
|
|
this->sidebar_action = ui->sideToolBar->addWidget(this->sideBar);
|
|
|
|
ui->sideToolBar->hide();
|
|
|
|
|
|
|
|
// Show dashboard by default
|
|
|
|
this->dashboardDock->raise();
|
|
|
|
|
|
|
|
//qDebug() << "FOLDER: " << QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation);
|
|
|
|
/*
|
|
|
|
* Some global shortcuts
|
|
|
|
*/
|
|
|
|
// Period goes to command entry
|
2017-04-09 19:55:06 +00:00
|
|
|
QShortcut *cmd_shortcut = new QShortcut(QKeySequence(Qt::Key_Period), this);
|
2017-04-26 23:00:20 +00:00
|
|
|
connect(cmd_shortcut, SIGNAL(activated()), consoleWidget, SLOT(focusInputLineEdit()));
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
// G and S goes to goto entry
|
2017-04-09 19:55:06 +00:00
|
|
|
QShortcut *goto_shortcut = new QShortcut(QKeySequence(Qt::Key_G), this);
|
2017-03-29 10:18:37 +00:00
|
|
|
connect(goto_shortcut, SIGNAL(activated()), this->omnibar, SLOT(setFocus()));
|
2017-04-09 19:55:06 +00:00
|
|
|
QShortcut *seek_shortcut = new QShortcut(QKeySequence(Qt::Key_S), this);
|
2017-03-29 10:18:37 +00:00
|
|
|
connect(seek_shortcut, SIGNAL(activated()), this->omnibar, SLOT(setFocus()));
|
|
|
|
|
|
|
|
// : goes to goto entry
|
2017-04-09 19:55:06 +00:00
|
|
|
QShortcut *commands_shortcut = new QShortcut(QKeySequence(Qt::Key_Colon), this);
|
2017-03-29 10:18:37 +00:00
|
|
|
connect(commands_shortcut, SIGNAL(activated()), this->omnibar, SLOT(showCommands()));
|
|
|
|
|
2017-04-12 21:04:39 +00:00
|
|
|
QShortcut *refresh_shortcut = new QShortcut(QKeySequence(QKeySequence::Refresh), this);
|
|
|
|
connect(refresh_shortcut, SIGNAL(activated()), this, SLOT(refreshVisibleDockWidgets()));
|
2017-04-01 01:56:35 +00:00
|
|
|
}
|
|
|
|
|
2017-07-24 11:05:28 +00:00
|
|
|
void MainWindow::openFile(const QString &fn, int anal_level, QList<QString> advanced)
|
2017-04-09 19:55:06 +00:00
|
|
|
{
|
2017-05-13 18:09:36 +00:00
|
|
|
QString project_name = qhelpers::uniqueProjectName(fn);
|
|
|
|
|
2017-06-03 12:27:23 +00:00
|
|
|
if (core->getProjectNames().contains(project_name))
|
2017-05-13 18:09:36 +00:00
|
|
|
openProject(project_name);
|
|
|
|
else
|
2017-07-24 11:05:28 +00:00
|
|
|
openNewFile(fn, anal_level, advanced);
|
2017-05-13 18:09:36 +00:00
|
|
|
}
|
|
|
|
|
2017-07-24 11:05:28 +00:00
|
|
|
void MainWindow::openNewFile(const QString &fn, int anal_level, QList<QString> advanced)
|
2017-05-13 18:09:36 +00:00
|
|
|
{
|
|
|
|
setFilename(fn);
|
|
|
|
|
|
|
|
OptionsDialog *o = new OptionsDialog(this);
|
|
|
|
o->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
o->show();
|
|
|
|
|
2017-06-03 12:27:23 +00:00
|
|
|
if (anal_level >= 0)
|
2017-07-24 11:05:28 +00:00
|
|
|
o->setupAndStartAnalysis(anal_level, advanced);
|
2017-05-13 18:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::openProject(const QString &project_name)
|
|
|
|
{
|
|
|
|
QString filename = core->cmd("Pi " + project_name);
|
|
|
|
setFilename(filename.trimmed());
|
|
|
|
|
|
|
|
core->cmd("Po " + project_name);
|
|
|
|
|
|
|
|
initUI();
|
|
|
|
finalizeOpen();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::finalizeOpen()
|
|
|
|
{
|
|
|
|
core->getOpcodes();
|
|
|
|
|
|
|
|
// Set settings to override any incorrect saved in the project
|
|
|
|
core->setSettings();
|
|
|
|
|
|
|
|
|
2017-09-09 09:36:15 +00:00
|
|
|
addOutput(tr(" > Populating UI"));
|
2017-05-13 18:09:36 +00:00
|
|
|
// FIXME: initialization order frakup. the next line is needed so that the
|
|
|
|
// comments widget displays the function names.
|
|
|
|
core->cmd("fs sections");
|
|
|
|
updateFrames();
|
|
|
|
|
|
|
|
// Restore project notes
|
|
|
|
QString notes = this->core->cmd("Pnj");
|
|
|
|
//qDebug() << "Notes:" << notes;
|
|
|
|
if (notes != "")
|
|
|
|
{
|
|
|
|
QByteArray ba;
|
|
|
|
ba.append(notes);
|
|
|
|
notepadDock->setText(QByteArray::fromBase64(ba));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-09 09:36:15 +00:00
|
|
|
addOutput(tr(" > Adding binary information to notepad"));
|
2017-05-13 18:09:36 +00:00
|
|
|
|
2017-09-09 09:36:15 +00:00
|
|
|
notepadDock->setText(tr("# Binary information\n\n") + core->cmd("i") +
|
2017-06-03 12:27:23 +00:00
|
|
|
"\n" + core->cmd("ie") + "\n" + core->cmd("iM") + "\n");
|
2017-05-13 18:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//Get binary beginning/end addresses
|
|
|
|
this->core->binStart = this->core->cmd("?v $M");
|
|
|
|
this->core->binEnd = this->core->cmd("?v $M+$s");
|
|
|
|
|
2017-09-09 09:36:15 +00:00
|
|
|
addOutput(tr(" > Finished, happy reversing :)"));
|
2017-05-13 18:09:36 +00:00
|
|
|
// Add fortune message
|
|
|
|
addOutput("\n" + core->cmd("fo"));
|
2017-10-12 19:55:15 +00:00
|
|
|
//previewDock->setWindowTitle("entry0");
|
2017-05-13 18:09:36 +00:00
|
|
|
showMaximized();
|
|
|
|
// Initialize syntax highlighters
|
|
|
|
notepadDock->highlightPreview();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::saveProject()
|
|
|
|
{
|
|
|
|
QString project_name = qhelpers::uniqueProjectName(filename);
|
|
|
|
core->cmd("Ps " + project_name);
|
|
|
|
QString notes = this->notepadDock->textToBase64();
|
|
|
|
//this->add_debug_output(notes);
|
|
|
|
this->core->cmd("Pnj " + notes);
|
2017-09-09 09:36:15 +00:00
|
|
|
this->addOutput(tr("Project saved: ") + project_name);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-04-13 15:36:20 +00:00
|
|
|
void MainWindow::toggleSideBarTheme()
|
2017-04-09 19:55:06 +00:00
|
|
|
{
|
2017-04-13 15:36:20 +00:00
|
|
|
sideBar->themesButtonToggle();
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-04-27 18:59:27 +00:00
|
|
|
void MainWindow::refreshOmniBar(const QStringList &flags)
|
|
|
|
{
|
|
|
|
omnibar->refresh(flags);
|
|
|
|
}
|
|
|
|
|
2017-04-28 13:38:01 +00:00
|
|
|
void MainWindow::setFilename(const QString &fn)
|
2017-04-13 15:36:20 +00:00
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
// Add file name to window title
|
|
|
|
this->filename = fn;
|
2017-09-25 12:55:41 +00:00
|
|
|
this->setWindowTitle(APPNAME" - " + fn);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::closeEvent(QCloseEvent *event)
|
|
|
|
{
|
2017-09-25 12:55:41 +00:00
|
|
|
QMessageBox::StandardButton ret = QMessageBox::question(this, APPNAME,
|
2017-09-09 09:36:15 +00:00
|
|
|
tr("Do you really want to exit?\nSave your project before closing!"),
|
2017-05-19 07:45:26 +00:00
|
|
|
(QMessageBox::StandardButtons)(QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel));
|
2017-03-29 10:18:37 +00:00
|
|
|
//qDebug() << ret;
|
2017-04-09 19:55:06 +00:00
|
|
|
if (ret == QMessageBox::Save)
|
|
|
|
{
|
2017-04-03 00:18:09 +00:00
|
|
|
QSettings settings;
|
2017-03-29 10:18:37 +00:00
|
|
|
settings.setValue("geometry", saveGeometry());
|
|
|
|
settings.setValue("size", size());
|
|
|
|
settings.setValue("pos", pos());
|
|
|
|
settings.setValue("state", saveState());
|
2017-05-13 18:09:36 +00:00
|
|
|
saveProject();
|
2017-03-29 10:18:37 +00:00
|
|
|
QMainWindow::closeEvent(event);
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else if (ret == QMessageBox::Discard)
|
|
|
|
{
|
2017-04-03 00:18:09 +00:00
|
|
|
QSettings settings;
|
2017-03-31 10:13:33 +00:00
|
|
|
settings.setValue("geometry", saveGeometry());
|
|
|
|
settings.setValue("size", size());
|
|
|
|
settings.setValue("pos", pos());
|
|
|
|
settings.setValue("state", saveState());
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
event->ignore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::readSettings()
|
|
|
|
{
|
2017-04-03 00:18:09 +00:00
|
|
|
QSettings settings;
|
2017-03-29 10:18:37 +00:00
|
|
|
QByteArray geo = settings.value("geometry", QByteArray()).toByteArray();
|
|
|
|
restoreGeometry(geo);
|
|
|
|
QByteArray state = settings.value("state", QByteArray()).toByteArray();
|
|
|
|
restoreState(state);
|
2017-04-09 19:55:06 +00:00
|
|
|
if (settings.value("dark").toBool())
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
this->dark();
|
|
|
|
}
|
|
|
|
this->responsive = settings.value("responsive").toBool();
|
|
|
|
}
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
void MainWindow::dark()
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
qApp->setStyleSheet("QPlainTextEdit { background-color: rgb(64, 64, 64); color: rgb(222, 222, 222);} QTextEdit { background-color: rgb(64, 64, 64); color: rgb(222, 222, 222);} ");
|
2017-04-03 00:18:09 +00:00
|
|
|
QSettings settings;
|
2017-03-29 10:18:37 +00:00
|
|
|
settings.setValue("dark", true);
|
2017-10-15 11:40:20 +00:00
|
|
|
|
|
|
|
// TODO: emit a signal for theme
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
void MainWindow::def_theme()
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
qApp->setStyleSheet("");
|
2017-04-03 00:18:09 +00:00
|
|
|
QSettings settings;
|
2017-03-29 10:18:37 +00:00
|
|
|
settings.setValue("dark", false);
|
2017-10-15 11:40:20 +00:00
|
|
|
|
|
|
|
// TODO: emit a signal for theme
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Refresh widget functions
|
|
|
|
*/
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
void MainWindow::refreshFunctions()
|
|
|
|
{
|
2017-04-13 15:36:20 +00:00
|
|
|
functionsDock->refresh();
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
void MainWindow::refreshComments()
|
|
|
|
{
|
2017-04-13 15:36:20 +00:00
|
|
|
commentsDock->refresh();
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
void MainWindow::updateFrames()
|
|
|
|
{
|
2017-10-11 11:22:30 +00:00
|
|
|
/* TODO Widgets are independants and responsible to update their own
|
2017-10-11 21:57:06 +00:00
|
|
|
* content right? Just send a signal.*/
|
2017-03-29 10:18:37 +00:00
|
|
|
if (core == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
static bool first_time = true;
|
2017-04-13 15:36:20 +00:00
|
|
|
|
2017-10-11 21:07:32 +00:00
|
|
|
//TODO Send signal rather than that
|
|
|
|
disassemblyDock->refreshDisasm();
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
if (first_time)
|
|
|
|
{
|
2017-10-11 21:57:06 +00:00
|
|
|
for (auto W : dockWidgets)
|
2017-04-13 15:36:20 +00:00
|
|
|
{
|
2017-10-13 13:53:23 +00:00
|
|
|
// Temporary hack
|
2017-10-11 21:57:06 +00:00
|
|
|
DockWidget* w = dynamic_cast<DockWidget*>(W);
|
|
|
|
if (w) {
|
|
|
|
w->setup();
|
|
|
|
}
|
2017-04-13 15:36:20 +00:00
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-04-13 15:36:20 +00:00
|
|
|
first_time = false;
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-10-11 21:57:06 +00:00
|
|
|
for (auto W : dockWidgets)
|
2017-04-09 19:55:06 +00:00
|
|
|
{
|
2017-10-13 13:53:23 +00:00
|
|
|
// Temporary hack
|
2017-10-11 21:57:06 +00:00
|
|
|
DockWidget* w = dynamic_cast<DockWidget*>(W);
|
|
|
|
if (w) {
|
|
|
|
w->refresh();
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-13 15:36:20 +00:00
|
|
|
// graphicsBar->refreshColorBar();
|
|
|
|
graphicsBar->fillData();
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionLock_triggered()
|
|
|
|
{
|
|
|
|
doLock = !doLock;
|
2017-04-09 19:55:06 +00:00
|
|
|
if (doLock)
|
|
|
|
{
|
|
|
|
foreach (QDockWidget *dockWidget, findChildren<QDockWidget *>())
|
|
|
|
{
|
|
|
|
dockWidget->setFeatures(QDockWidget::NoDockWidgetFeatures);
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
2017-04-09 19:55:06 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
foreach (QDockWidget *dockWidget, findChildren<QDockWidget *>())
|
|
|
|
{
|
|
|
|
dockWidget->setFeatures(QDockWidget::AllDockWidgetFeatures);
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::lockUnlock_Docks(bool what)
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
if (what)
|
|
|
|
{
|
|
|
|
foreach (QDockWidget *dockWidget, findChildren<QDockWidget *>())
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
dockWidget->setFeatures(QDockWidget::NoDockWidgetFeatures);
|
|
|
|
}
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
foreach (QDockWidget *dockWidget, findChildren<QDockWidget *>())
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
dockWidget->setFeatures(QDockWidget::AllDockWidgetFeatures);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionLockUnlock_triggered()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
if (ui->actionLockUnlock->isChecked())
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
foreach (QDockWidget *dockWidget, findChildren<QDockWidget *>())
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
dockWidget->setFeatures(QDockWidget::NoDockWidgetFeatures);
|
|
|
|
}
|
2017-06-15 09:53:10 +00:00
|
|
|
ui->actionLockUnlock->setIcon(QIcon(":/lock"));
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
foreach (QDockWidget *dockWidget, findChildren<QDockWidget *>())
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
dockWidget->setFeatures(QDockWidget::AllDockWidgetFeatures);
|
|
|
|
}
|
2017-06-15 09:53:10 +00:00
|
|
|
ui->actionLockUnlock->setIcon(QIcon(":/unlock"));
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionTabs_triggered()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
if (ui->centralTabWidget->tabPosition() == QTabWidget::South)
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
ui->centralTabWidget->setTabPosition(QTabWidget::North);
|
|
|
|
this->setTabPosition(Qt::AllDockWidgetAreas, QTabWidget::North);
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
ui->centralTabWidget->setTabPosition(QTabWidget::South);
|
|
|
|
this->setTabPosition(Qt::AllDockWidgetAreas, QTabWidget::South);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionMem_triggered()
|
|
|
|
{
|
2017-10-12 19:55:15 +00:00
|
|
|
//this->previewDock->show();
|
|
|
|
//this->previewDock->raise();
|
|
|
|
PreviewWidget *newMemDock = new PreviewWidget();
|
2017-04-13 15:36:20 +00:00
|
|
|
this->dockWidgets << newMemDock;
|
2017-03-29 10:18:37 +00:00
|
|
|
newMemDock->setAttribute(Qt::WA_DeleteOnClose);
|
2017-10-12 19:55:15 +00:00
|
|
|
this->tabifyDockWidget(this->previewDock, newMemDock);
|
2017-10-11 21:07:32 +00:00
|
|
|
//newMemDock->refreshDisasm();
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:49:12 +00:00
|
|
|
void MainWindow::on_actionEntry_points_triggered()
|
|
|
|
{
|
|
|
|
toggleDockWidget(entrypointDock);
|
|
|
|
}
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
void MainWindow::on_actionFunctions_triggered()
|
|
|
|
{
|
2017-05-19 07:45:26 +00:00
|
|
|
toggleDockWidget(functionsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionImports_triggered()
|
|
|
|
{
|
2017-05-19 07:45:26 +00:00
|
|
|
toggleDockWidget(importsDock);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionExports_triggered()
|
|
|
|
{
|
|
|
|
toggleDockWidget(exportsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionSymbols_triggered()
|
|
|
|
{
|
2017-05-19 07:45:26 +00:00
|
|
|
toggleDockWidget(symbolsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionReloc_triggered()
|
|
|
|
{
|
2017-05-19 07:45:26 +00:00
|
|
|
toggleDockWidget(relocsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionStrings_triggered()
|
|
|
|
{
|
2017-05-19 07:45:26 +00:00
|
|
|
toggleDockWidget(stringsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionSections_triggered()
|
|
|
|
{
|
2017-05-19 07:45:26 +00:00
|
|
|
toggleDockWidget(sectionsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionFlags_triggered()
|
|
|
|
{
|
2017-05-19 07:45:26 +00:00
|
|
|
toggleDockWidget(flagsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionComents_triggered()
|
|
|
|
{
|
2017-05-19 07:45:26 +00:00
|
|
|
toggleDockWidget(commentsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionNotepad_triggered()
|
|
|
|
{
|
2017-05-19 07:45:26 +00:00
|
|
|
toggleDockWidget(notepadDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionAbout_triggered()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
AboutDialog *a = new AboutDialog(this);
|
2017-03-29 10:18:37 +00:00
|
|
|
a->open();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionRefresh_Panels_triggered()
|
|
|
|
{
|
|
|
|
this->updateFrames();
|
|
|
|
}
|
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
void MainWindow::toggleDockWidget(DockWidget *dock_widget)
|
|
|
|
{
|
|
|
|
if (dock_widget->isVisible())
|
|
|
|
{
|
|
|
|
dock_widget->close();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dock_widget->show();
|
|
|
|
dock_widget->raise();
|
|
|
|
}
|
|
|
|
}
|
2017-04-28 13:09:40 +00:00
|
|
|
|
2017-10-03 18:38:34 +00:00
|
|
|
void MainWindow::setCursorAddress(RVA addr)
|
2017-04-09 19:55:06 +00:00
|
|
|
{
|
2017-10-03 18:38:34 +00:00
|
|
|
this->cursorAddress = addr;
|
|
|
|
emit cursorAddressChanged(core->getOffset());
|
2017-04-28 13:09:40 +00:00
|
|
|
}
|
|
|
|
|
2017-09-02 08:46:48 +00:00
|
|
|
void MainWindow::backButton_clicked()
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
2017-10-16 19:00:47 +00:00
|
|
|
core->seekPrev();
|
2017-10-13 13:53:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionForward_triggered()
|
|
|
|
{
|
2017-10-16 19:00:47 +00:00
|
|
|
core->seekNext();
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionCalculator_triggered()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
if (!this->sideBar->isVisible())
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
this->on_actionShow_Hide_mainsidebar_triggered();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionCreate_File_triggered()
|
|
|
|
{
|
2017-10-02 09:41:28 +00:00
|
|
|
CreateNewDialog *n = new CreateNewDialog(this);
|
2017-03-29 10:18:37 +00:00
|
|
|
n->exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionAssembler_triggered()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
if (!this->sideBar->isVisible())
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
this->on_actionShow_Hide_mainsidebar_triggered();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionDisasAdd_comment_triggered()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
CommentsDialog *c = new CommentsDialog(this);
|
2017-03-29 10:18:37 +00:00
|
|
|
c->exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::restoreDocks()
|
|
|
|
{
|
2017-10-11 21:07:32 +00:00
|
|
|
addDockWidget(Qt::RightDockWidgetArea, this->sectionsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
addDockWidget(Qt::TopDockWidgetArea, this->dashboardDock);
|
2017-10-11 21:07:32 +00:00
|
|
|
this->tabifyDockWidget(this->sectionsDock, this->commentsDock);
|
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->disassemblyDock);
|
2017-10-11 11:22:30 +00:00
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->graphDock);
|
2017-10-13 13:53:23 +00:00
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->hexdumpDock);
|
2017-10-12 19:55:15 +00:00
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->previewDock);
|
2017-10-13 13:53:23 +00:00
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->sidebarDock);
|
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->functionsDock);
|
2017-07-13 18:49:12 +00:00
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->entrypointDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->flagsDock);
|
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->stringsDock);
|
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->relocsDock);
|
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->importsDock);
|
2017-05-19 07:45:26 +00:00
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->exportsDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->symbolsDock);
|
|
|
|
this->tabifyDockWidget(this->dashboardDock, this->notepadDock);
|
|
|
|
this->dashboardDock->raise();
|
2017-10-11 21:07:32 +00:00
|
|
|
this->sectionsDock->raise();
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-10-13 13:53:23 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
void MainWindow::on_actionDefaut_triggered()
|
|
|
|
{
|
|
|
|
hideAllDocks();
|
|
|
|
restoreDocks();
|
|
|
|
showDefaultDocks();
|
|
|
|
this->dashboardDock->raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::hideAllDocks()
|
|
|
|
{
|
2017-04-13 15:36:20 +00:00
|
|
|
for (auto w : dockWidgets)
|
|
|
|
{
|
|
|
|
w->hide();
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::showDefaultDocks()
|
|
|
|
{
|
2017-10-11 11:22:30 +00:00
|
|
|
const QList<QDockWidget *> defaultDocks = { sectionsDock,
|
2017-07-13 18:49:12 +00:00
|
|
|
entrypointDock,
|
2017-04-13 15:51:58 +00:00
|
|
|
functionsDock,
|
2017-10-12 19:55:15 +00:00
|
|
|
previewDock,
|
2017-04-13 15:51:58 +00:00
|
|
|
commentsDock,
|
|
|
|
stringsDock,
|
|
|
|
importsDock,
|
|
|
|
symbolsDock,
|
|
|
|
notepadDock,
|
2017-10-11 21:07:32 +00:00
|
|
|
graphDock,
|
|
|
|
disassemblyDock,
|
2017-10-12 19:55:15 +00:00
|
|
|
sidebarDock,
|
|
|
|
hexdumpDock,
|
2017-04-13 15:51:58 +00:00
|
|
|
dashboardDock
|
|
|
|
};
|
2017-04-13 15:36:20 +00:00
|
|
|
|
|
|
|
for (auto w : dockWidgets)
|
|
|
|
{
|
|
|
|
if (defaultDocks.contains(w))
|
|
|
|
{
|
|
|
|
w->show();
|
|
|
|
}
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionhide_bottomPannel_triggered()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
if (ui->centralWidget->isVisible())
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
ui->centralWidget->hide();
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
ui->centralWidget->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-26 23:00:20 +00:00
|
|
|
void MainWindow::sendToNotepad(const QString &txt)
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
2017-04-13 15:36:20 +00:00
|
|
|
this->notepadDock->appendPlainText("```\n" + txt + "\n```");
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionFunctionsRename_triggered()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
RenameDialog *r = new RenameDialog(this);
|
2017-03-29 10:18:37 +00:00
|
|
|
// Get function based on click position
|
|
|
|
//r->setFunctionName(fcn_name);
|
|
|
|
r->open();
|
|
|
|
}
|
|
|
|
|
2017-04-26 23:00:20 +00:00
|
|
|
void MainWindow::addOutput(const QString &msg)
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
2017-04-26 23:00:20 +00:00
|
|
|
consoleWidget->addOutput(msg);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-04-26 23:00:20 +00:00
|
|
|
void MainWindow::addDebugOutput(const QString &msg)
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
2017-04-28 13:09:40 +00:00
|
|
|
printf("debug output: %s\n", msg.toLocal8Bit().constData());
|
2017-04-26 23:00:20 +00:00
|
|
|
consoleWidget->addDebugOutput(msg);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionNew_triggered()
|
|
|
|
{
|
2017-04-13 15:51:58 +00:00
|
|
|
if (close())
|
2017-04-09 20:36:17 +00:00
|
|
|
on_actionLoad_triggered();
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionSave_triggered()
|
|
|
|
{
|
2017-05-13 18:09:36 +00:00
|
|
|
saveProject();
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionRun_Script_triggered()
|
|
|
|
{
|
|
|
|
QFileDialog dialog(this);
|
|
|
|
dialog.setFileMode(QFileDialog::ExistingFile);
|
|
|
|
dialog.setViewMode(QFileDialog::Detail);
|
|
|
|
dialog.setDirectory(QDir::home());
|
|
|
|
|
|
|
|
QString fileName;
|
2017-09-09 09:36:15 +00:00
|
|
|
fileName = dialog.getOpenFileName(this, tr("Select radare2 script"));
|
2017-04-13 15:51:58 +00:00
|
|
|
if (!fileName.length()) //cancel was pressed
|
2017-04-09 20:36:17 +00:00
|
|
|
return;
|
2017-03-29 10:18:37 +00:00
|
|
|
this->core->cmd(". " + fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionDark_Theme_triggered()
|
|
|
|
{
|
|
|
|
this->dark();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionWhite_Theme_triggered()
|
|
|
|
{
|
|
|
|
this->def_theme();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionSDB_browser_triggered()
|
|
|
|
{
|
|
|
|
this->sdbDock = new SdbDock(this);
|
2017-10-12 19:55:15 +00:00
|
|
|
this->tabifyDockWidget(this->previewDock, this->sdbDock);
|
2017-03-29 10:18:37 +00:00
|
|
|
this->sdbDock->setFloating(true);
|
|
|
|
this->sdbDock->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionLoad_triggered()
|
|
|
|
{
|
2017-04-01 01:56:35 +00:00
|
|
|
QProcess process(this);
|
|
|
|
process.setEnvironment(QProcess::systemEnvironment());
|
|
|
|
process.startDetached(qApp->applicationFilePath());
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionShow_Hide_mainsidebar_triggered()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
if (ui->sideToolBar->isVisible())
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
ui->sideToolBar->hide();
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
ui->sideToolBar->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionDashboard_triggered()
|
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
if (this->dashboardDock->isVisible())
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
this->dashboardDock->close();
|
2017-04-09 19:55:06 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
this->dashboardDock->show();
|
|
|
|
this->dashboardDock->raise();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
void MainWindow::toggleResponsive(bool maybe)
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
this->responsive = maybe;
|
|
|
|
// Save options in settings
|
2017-04-03 00:18:09 +00:00
|
|
|
QSettings settings;
|
2017-03-29 10:18:37 +00:00
|
|
|
settings.setValue("responsive", this->responsive);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionTabs_on_Top_triggered()
|
|
|
|
{
|
|
|
|
this->on_actionTabs_triggered();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionReset_settings_triggered()
|
|
|
|
{
|
2017-05-19 07:45:26 +00:00
|
|
|
QMessageBox::StandardButton ret =
|
2017-09-25 12:55:41 +00:00
|
|
|
(QMessageBox::StandardButton)QMessageBox::question(this, APPNAME,
|
2017-09-09 09:36:15 +00:00
|
|
|
tr("Do you really want to clear all settings?"),
|
2017-06-03 12:27:23 +00:00
|
|
|
QMessageBox::Ok | QMessageBox::Cancel);
|
2017-04-09 19:55:06 +00:00
|
|
|
if (ret == QMessageBox::Ok)
|
|
|
|
{
|
2017-03-29 10:18:37 +00:00
|
|
|
// Save options in settings
|
2017-04-03 00:18:09 +00:00
|
|
|
QSettings settings;
|
2017-03-29 10:18:37 +00:00
|
|
|
settings.clear();
|
|
|
|
}
|
|
|
|
}
|
2017-03-31 21:54:06 +00:00
|
|
|
|
|
|
|
void MainWindow::on_actionQuit_triggered()
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
2017-04-12 21:04:39 +00:00
|
|
|
|
|
|
|
void MainWindow::refreshVisibleDockWidgets()
|
|
|
|
{
|
2017-10-13 13:53:23 +00:00
|
|
|
/* TODO Just send a signal no? */
|
|
|
|
// There seems to be no convenience function to check if a QDockWidget
|
2017-04-12 21:04:39 +00:00
|
|
|
// is really visible or hidden in a tabbed dock. So:
|
2017-04-13 15:51:58 +00:00
|
|
|
auto isDockVisible = [](const QDockWidget * const pWidget)
|
|
|
|
{
|
2017-04-12 21:04:39 +00:00
|
|
|
return pWidget != nullptr && !pWidget->visibleRegion().isEmpty();
|
|
|
|
};
|
|
|
|
|
2017-10-13 13:53:23 +00:00
|
|
|
for (auto W : dockWidgets)
|
2017-04-13 15:36:20 +00:00
|
|
|
{
|
2017-10-13 13:53:23 +00:00
|
|
|
if (isDockVisible(W))
|
2017-04-13 15:36:20 +00:00
|
|
|
{
|
2017-10-13 13:53:23 +00:00
|
|
|
// Temporary hack
|
|
|
|
DockWidget* w = dynamic_cast<DockWidget*>(W);
|
|
|
|
if (w) {
|
|
|
|
w->setup();
|
|
|
|
}
|
2017-04-13 15:36:20 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-12 21:04:39 +00:00
|
|
|
}
|
2017-05-26 08:52:17 +00:00
|
|
|
|
|
|
|
void MainWindow::on_actionRefresh_contents_triggered()
|
|
|
|
{
|
2017-09-01 13:03:35 +00:00
|
|
|
refreshVisibleDockWidgets();
|
2017-05-26 08:52:17 +00:00
|
|
|
}
|
2017-08-31 17:43:46 +00:00
|
|
|
|
2017-10-01 14:36:40 +00:00
|
|
|
void MainWindow::on_actionAsmOptions_triggered()
|
2017-08-31 17:43:46 +00:00
|
|
|
{
|
2017-10-10 10:17:05 +00:00
|
|
|
auto dialog = new AsmOptionsDialog(this);
|
2017-10-01 14:36:40 +00:00
|
|
|
dialog->show();
|
2017-09-02 08:17:48 +00:00
|
|
|
}
|