2019-02-22 16:50:45 +00:00
|
|
|
|
#include "core/MainWindow.h"
|
2017-10-01 19:09:42 +00:00
|
|
|
|
#include "ui_MainWindow.h"
|
2017-05-14 16:21:54 +00:00
|
|
|
|
|
2018-11-17 10:10:44 +00:00
|
|
|
|
// Common Headers
|
2019-04-09 07:44:44 +00:00
|
|
|
|
#include "common/BugReporting.h"
|
2018-10-17 07:55:53 +00:00
|
|
|
|
#include "common/Highlighter.h"
|
|
|
|
|
#include "common/HexAsciiHighlighter.h"
|
|
|
|
|
#include "common/Helpers.h"
|
|
|
|
|
#include "common/SvgIconEngine.h"
|
|
|
|
|
#include "common/ProgressIndicator.h"
|
|
|
|
|
#include "common/TempConfig.h"
|
2019-03-14 09:28:42 +00:00
|
|
|
|
#include "common/RunScriptTask.h"
|
|
|
|
|
#include "common/PythonManager.h"
|
|
|
|
|
#include "plugins/PluginManager.h"
|
|
|
|
|
#include "CutterConfig.h"
|
2020-04-20 21:22:10 +00:00
|
|
|
|
#include "CutterApplication.h"
|
2017-04-13 15:36:20 +00:00
|
|
|
|
|
2018-11-17 10:10:44 +00:00
|
|
|
|
// Dialogs
|
2019-01-19 20:54:02 +00:00
|
|
|
|
#include "dialogs/WelcomeDialog.h"
|
2017-12-23 16:42:42 +00:00
|
|
|
|
#include "dialogs/NewFileDialog.h"
|
2018-08-18 10:51:11 +00:00
|
|
|
|
#include "dialogs/InitialOptionsDialog.h"
|
2018-06-20 09:24:28 +00:00
|
|
|
|
#include "dialogs/SaveProjectDialog.h"
|
|
|
|
|
#include "dialogs/CommentsDialog.h"
|
|
|
|
|
#include "dialogs/AboutDialog.h"
|
|
|
|
|
#include "dialogs/RenameDialog.h"
|
|
|
|
|
#include "dialogs/preferences/PreferencesDialog.h"
|
2020-04-07 13:20:52 +00:00
|
|
|
|
#include "dialogs/MapFileDialog.h"
|
2019-01-28 13:37:20 +00:00
|
|
|
|
#include "dialogs/AsyncTaskDialog.h"
|
2018-06-20 09:24:28 +00:00
|
|
|
|
|
2018-11-17 10:10:44 +00:00
|
|
|
|
// Widgets Headers
|
2017-12-13 22:38:46 +00:00
|
|
|
|
#include "widgets/DisassemblerGraphView.h"
|
2019-01-24 17:13:04 +00:00
|
|
|
|
#include "widgets/GraphView.h"
|
2018-03-16 21:46:57 +00:00
|
|
|
|
#include "widgets/GraphWidget.h"
|
2019-01-24 17:13:04 +00:00
|
|
|
|
#include "widgets/OverviewWidget.h"
|
2019-02-19 15:56:50 +00:00
|
|
|
|
#include "widgets/OverviewView.h"
|
2017-10-02 16:18:40 +00:00
|
|
|
|
#include "widgets/FunctionsWidget.h"
|
|
|
|
|
#include "widgets/SectionsWidget.h"
|
2018-10-20 18:20:06 +00:00
|
|
|
|
#include "widgets/SegmentsWidget.h"
|
2017-10-02 16:18:40 +00:00
|
|
|
|
#include "widgets/CommentsWidget.h"
|
|
|
|
|
#include "widgets/ImportsWidget.h"
|
|
|
|
|
#include "widgets/ExportsWidget.h"
|
2018-03-06 17:21:48 +00:00
|
|
|
|
#include "widgets/TypesWidget.h"
|
2018-03-08 12:24:15 +00:00
|
|
|
|
#include "widgets/SearchWidget.h"
|
2017-10-02 16:18:40 +00:00
|
|
|
|
#include "widgets/SymbolsWidget.h"
|
|
|
|
|
#include "widgets/StringsWidget.h"
|
|
|
|
|
#include "widgets/RelocsWidget.h"
|
|
|
|
|
#include "widgets/FlagsWidget.h"
|
2017-12-08 15:00:52 +00:00
|
|
|
|
#include "widgets/VisualNavbar.h"
|
2017-10-02 16:18:40 +00:00
|
|
|
|
#include "widgets/Dashboard.h"
|
2019-02-13 06:38:47 +00:00
|
|
|
|
#include "widgets/SdbWidget.h"
|
2017-10-02 16:18:40 +00:00
|
|
|
|
#include "widgets/Omnibar.h"
|
|
|
|
|
#include "widgets/ConsoleWidget.h"
|
|
|
|
|
#include "widgets/EntrypointWidget.h"
|
2017-12-23 16:42:42 +00:00
|
|
|
|
#include "widgets/ClassesWidget.h"
|
2018-02-04 14:32:18 +00:00
|
|
|
|
#include "widgets/ResourcesWidget.h"
|
2018-02-26 22:26:18 +00:00
|
|
|
|
#include "widgets/VTablesWidget.h"
|
2018-05-21 17:34:41 +00:00
|
|
|
|
#include "widgets/HeadersWidget.h"
|
2018-05-24 15:37:37 +00:00
|
|
|
|
#include "widgets/ZignaturesWidget.h"
|
2018-12-21 20:36:40 +00:00
|
|
|
|
#include "widgets/DebugActions.h"
|
2018-06-12 08:43:14 +00:00
|
|
|
|
#include "widgets/MemoryMapWidget.h"
|
2018-06-22 08:45:00 +00:00
|
|
|
|
#include "widgets/BreakpointWidget.h"
|
2018-07-19 14:35:46 +00:00
|
|
|
|
#include "widgets/RegisterRefsWidget.h"
|
2019-03-14 09:28:42 +00:00
|
|
|
|
#include "widgets/DisassemblyWidget.h"
|
|
|
|
|
#include "widgets/StackWidget.h"
|
2019-10-22 15:51:56 +00:00
|
|
|
|
#include "widgets/ThreadsWidget.h"
|
2019-12-09 18:43:42 +00:00
|
|
|
|
#include "widgets/ProcessesWidget.h"
|
2019-03-14 09:28:42 +00:00
|
|
|
|
#include "widgets/RegistersWidget.h"
|
|
|
|
|
#include "widgets/BacktraceWidget.h"
|
|
|
|
|
#include "widgets/HexdumpWidget.h"
|
2019-09-06 05:40:20 +00:00
|
|
|
|
#include "widgets/DecompilerWidget.h"
|
2019-05-16 16:03:48 +00:00
|
|
|
|
#include "widgets/HexWidget.h"
|
2017-04-13 15:36:20 +00:00
|
|
|
|
|
2019-03-14 09:28:42 +00:00
|
|
|
|
// Qt Headers
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QComboBox>
|
|
|
|
|
#include <QCompleter>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QDesktopServices>
|
|
|
|
|
#include <QDir>
|
|
|
|
|
#include <QDockWidget>
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
#include <QFont>
|
|
|
|
|
#include <QFontDialog>
|
|
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QLineEdit>
|
|
|
|
|
#include <QList>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QProcess>
|
|
|
|
|
#include <QPropertyAnimation>
|
|
|
|
|
#include <QSysInfo>
|
|
|
|
|
#include <QJsonObject>
|
2019-12-10 07:34:21 +00:00
|
|
|
|
#include <QJsonArray>
|
2019-03-14 09:28:42 +00:00
|
|
|
|
|
|
|
|
|
#include <QScrollBar>
|
|
|
|
|
#include <QSettings>
|
|
|
|
|
#include <QShortcut>
|
|
|
|
|
#include <QStringListModel>
|
|
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
|
#include <QStyleFactory>
|
|
|
|
|
#include <QTextCursor>
|
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
#include <QToolButton>
|
|
|
|
|
#include <QToolTip>
|
|
|
|
|
#include <QTreeWidgetItem>
|
|
|
|
|
#include <QSvgRenderer>
|
2019-01-28 13:37:20 +00:00
|
|
|
|
|
2018-07-06 21:23:51 +00:00
|
|
|
|
// Graphics
|
2017-03-29 10:18:37 +00:00
|
|
|
|
#include <QGraphicsEllipseItem>
|
|
|
|
|
#include <QGraphicsScene>
|
|
|
|
|
#include <QGraphicsView>
|
|
|
|
|
|
2019-06-18 13:02:41 +00:00
|
|
|
|
template<class T>
|
|
|
|
|
T* getNewInstance(MainWindow *m, QAction *a) { return new T(m, a); }
|
|
|
|
|
|
2017-05-13 18:09:36 +00:00
|
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
2017-03-29 10:18:37 +00:00
|
|
|
|
QMainWindow(parent),
|
2018-02-26 22:25:23 +00:00
|
|
|
|
core(Core()),
|
2018-02-04 14:32:18 +00:00
|
|
|
|
ui(new Ui::MainWindow)
|
2017-03-29 10:18:37 +00:00
|
|
|
|
{
|
2017-12-17 13:49:03 +00:00
|
|
|
|
panelLock = false;
|
|
|
|
|
tabsOnTop = false;
|
2018-02-26 22:25:23 +00:00
|
|
|
|
configuration = Config();
|
2019-11-04 16:40:54 +00:00
|
|
|
|
|
|
|
|
|
initUI();
|
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()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::initUI()
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
2017-04-05 08:56:59 +00:00
|
|
|
|
|
2020-01-31 10:13:28 +00:00
|
|
|
|
// Initialize context menu extensions for plugins
|
|
|
|
|
disassemblyContextMenuExtensions = new QMenu(tr("Plugins"), this);
|
|
|
|
|
addressableContextMenuExtensions = new QMenu(tr("Plugins"), this);
|
|
|
|
|
|
2019-06-18 13:02:41 +00:00
|
|
|
|
connect(ui->actionExtraGraph, &QAction::triggered, this, &MainWindow::addExtraGraph);
|
|
|
|
|
connect(ui->actionExtraDisassembly, &QAction::triggered, this, &MainWindow::addExtraDisassembly);
|
|
|
|
|
connect(ui->actionExtraHexdump, &QAction::triggered, this, &MainWindow::addExtraHexdump);
|
2020-03-19 09:36:36 +00:00
|
|
|
|
connect(ui->actionCommitChanges, &QAction::triggered, this, [this]() {
|
|
|
|
|
Core()->commitWriteCache();
|
|
|
|
|
});
|
|
|
|
|
ui->actionCommitChanges->setEnabled(false);
|
|
|
|
|
connect(Core(), &CutterCore::ioCacheChanged, ui->actionCommitChanges, &QAction::setEnabled);
|
2019-06-18 13:02:41 +00:00
|
|
|
|
|
2019-07-04 18:51:44 +00:00
|
|
|
|
widgetTypeToConstructorMap.insert(GraphWidget::getWidgetType(), getNewInstance<GraphWidget>);
|
|
|
|
|
widgetTypeToConstructorMap.insert(DisassemblyWidget::getWidgetType(), getNewInstance<DisassemblyWidget>);
|
|
|
|
|
widgetTypeToConstructorMap.insert(HexdumpWidget::getWidgetType(), getNewInstance<HexdumpWidget>);
|
2019-06-18 13:02:41 +00:00
|
|
|
|
|
2019-03-18 06:44:14 +00:00
|
|
|
|
initToolBar();
|
|
|
|
|
initDocks();
|
|
|
|
|
|
2019-06-18 13:02:41 +00:00
|
|
|
|
emptyState = saveState();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
/*
|
2019-03-18 06:44:14 +00:00
|
|
|
|
* Some global shortcuts
|
2018-11-01 22:23:01 +00:00
|
|
|
|
*/
|
2019-04-27 17:58:44 +00:00
|
|
|
|
|
2019-03-18 06:44:14 +00:00
|
|
|
|
// Period goes to command entry
|
|
|
|
|
QShortcut *cmd_shortcut = new QShortcut(QKeySequence(Qt::Key_Period), this);
|
|
|
|
|
connect(cmd_shortcut, SIGNAL(activated()), consoleDock, SLOT(focusInputLineEdit()));
|
|
|
|
|
|
|
|
|
|
// G and S goes to goto entry
|
|
|
|
|
QShortcut *goto_shortcut = new QShortcut(QKeySequence(Qt::Key_G), this);
|
|
|
|
|
connect(goto_shortcut, SIGNAL(activated()), this->omnibar, SLOT(setFocus()));
|
|
|
|
|
QShortcut *seek_shortcut = new QShortcut(QKeySequence(Qt::Key_S), this);
|
|
|
|
|
connect(seek_shortcut, SIGNAL(activated()), this->omnibar, SLOT(setFocus()));
|
2019-05-30 08:41:14 +00:00
|
|
|
|
QShortcut *seek_to_func_end_shortcut = new QShortcut(QKeySequence(Qt::Key_Dollar), this);
|
|
|
|
|
connect(seek_to_func_end_shortcut, SIGNAL(activated()), SLOT(seekToFunctionLastInstruction()));
|
|
|
|
|
QShortcut *seek_to_func_start_shortcut = new QShortcut(QKeySequence(Qt::Key_AsciiCircum), this);
|
|
|
|
|
connect(seek_to_func_start_shortcut, SIGNAL(activated()), SLOT(seekToFunctionStart()));
|
2019-03-18 06:44:14 +00:00
|
|
|
|
|
|
|
|
|
QShortcut *refresh_shortcut = new QShortcut(QKeySequence(QKeySequence::Refresh), this);
|
|
|
|
|
connect(refresh_shortcut, SIGNAL(activated()), this, SLOT(refreshAll()));
|
|
|
|
|
|
2019-10-12 05:50:10 +00:00
|
|
|
|
connect(ui->actionZoomIn, SIGNAL(triggered()), this, SLOT(onZoomIn()));
|
|
|
|
|
connect(ui->actionZoomOut, SIGNAL(triggered()), this, SLOT(onZoomOut()));
|
|
|
|
|
connect(ui->actionZoomReset, SIGNAL(triggered()), this, SLOT(onZoomReset()));
|
|
|
|
|
|
2019-03-18 06:44:14 +00:00
|
|
|
|
connect(core, SIGNAL(projectSaved(bool, const QString &)), this, SLOT(projectSaved(bool,
|
|
|
|
|
const QString &)));
|
|
|
|
|
|
2019-12-13 17:30:55 +00:00
|
|
|
|
connect(core, &CutterCore::toggleDebugView, this, &MainWindow::toggleDebugView);
|
2019-03-18 06:44:14 +00:00
|
|
|
|
|
|
|
|
|
connect(core, SIGNAL(newMessage(const QString &)),
|
|
|
|
|
this->consoleDock, SLOT(addOutput(const QString &)));
|
|
|
|
|
connect(core, SIGNAL(newDebugMessage(const QString &)),
|
|
|
|
|
this->consoleDock, SLOT(addDebugOutput(const QString &)));
|
|
|
|
|
|
2019-07-19 19:21:12 +00:00
|
|
|
|
connect(core, &CutterCore::showMemoryWidgetRequested,
|
|
|
|
|
this, static_cast<void(MainWindow::*)()>(&MainWindow::showMemoryWidget));
|
|
|
|
|
|
2019-03-18 06:44:14 +00:00
|
|
|
|
updateTasksIndicator();
|
|
|
|
|
connect(core->getAsyncTaskManager(), &AsyncTaskManager::tasksChanged, this,
|
|
|
|
|
&MainWindow::updateTasksIndicator);
|
|
|
|
|
|
2019-05-10 18:22:54 +00:00
|
|
|
|
//Undo and redo seek
|
|
|
|
|
ui->actionBackward->setShortcut(QKeySequence::Back);
|
|
|
|
|
ui->actionForward->setShortcut(QKeySequence::Forward);
|
2019-07-19 19:21:12 +00:00
|
|
|
|
|
2019-12-10 07:34:21 +00:00
|
|
|
|
initBackForwardMenu();
|
|
|
|
|
|
2019-03-18 06:44:14 +00:00
|
|
|
|
/* Setup plugins interfaces */
|
2020-01-31 10:13:28 +00:00
|
|
|
|
for (auto &plugin : Plugins()->getPlugins()) {
|
2019-03-18 06:44:14 +00:00
|
|
|
|
plugin->setupInterface(this);
|
|
|
|
|
}
|
2019-03-28 09:17:01 +00:00
|
|
|
|
|
2019-10-06 17:35:44 +00:00
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 7, 0)
|
|
|
|
|
ui->actionGrouped_dock_dragging->setVisible(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-03-29 17:02:27 +00:00
|
|
|
|
initLayout();
|
2019-03-18 06:44:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::initToolBar()
|
|
|
|
|
{
|
2019-04-27 17:58:44 +00:00
|
|
|
|
chooseThemeIcons();
|
2019-07-19 19:21:12 +00:00
|
|
|
|
|
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);
|
2019-04-27 17:58:44 +00:00
|
|
|
|
spacer3->setStyleSheet("background-color: rgba(0,0,0,0)");
|
2017-03-29 10:18:37 +00:00
|
|
|
|
spacer3->setMinimumSize(20, 20);
|
2018-06-12 08:43:14 +00:00
|
|
|
|
spacer3->setMaximumWidth(100);
|
2017-11-18 14:57:00 +00:00
|
|
|
|
ui->mainToolBar->addWidget(spacer3);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
2018-12-21 20:36:40 +00:00
|
|
|
|
DebugActions *debugActions = new DebugActions(ui->mainToolBar, this);
|
2018-07-17 07:26:20 +00:00
|
|
|
|
// Debug menu
|
2019-12-19 18:03:44 +00:00
|
|
|
|
auto debugViewAction = ui->menuDebug->addAction(tr("View"));
|
|
|
|
|
debugViewAction->setMenu(ui->menuAddDebugWidgets);
|
|
|
|
|
ui->menuDebug->addSeparator();
|
2019-01-12 19:21:45 +00:00
|
|
|
|
ui->menuDebug->addAction(debugActions->actionStart);
|
2018-12-21 20:36:40 +00:00
|
|
|
|
ui->menuDebug->addAction(debugActions->actionStartEmul);
|
2019-01-12 19:21:45 +00:00
|
|
|
|
ui->menuDebug->addAction(debugActions->actionAttach);
|
2019-12-13 18:33:13 +00:00
|
|
|
|
ui->menuDebug->addAction(debugActions->actionStartRemote);
|
2018-07-17 07:26:20 +00:00
|
|
|
|
ui->menuDebug->addSeparator();
|
2018-12-21 20:36:40 +00:00
|
|
|
|
ui->menuDebug->addAction(debugActions->actionStep);
|
|
|
|
|
ui->menuDebug->addAction(debugActions->actionStepOver);
|
|
|
|
|
ui->menuDebug->addAction(debugActions->actionStepOut);
|
2018-07-17 07:26:20 +00:00
|
|
|
|
ui->menuDebug->addSeparator();
|
2018-12-21 20:36:40 +00:00
|
|
|
|
ui->menuDebug->addAction(debugActions->actionContinue);
|
|
|
|
|
ui->menuDebug->addAction(debugActions->actionContinueUntilCall);
|
|
|
|
|
ui->menuDebug->addAction(debugActions->actionContinueUntilSyscall);
|
2018-06-12 08:43:14 +00:00
|
|
|
|
|
|
|
|
|
// Sepparator between undo/redo and goto lineEdit
|
|
|
|
|
QWidget *spacer4 = new QWidget();
|
|
|
|
|
spacer4->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
2019-04-27 17:58:44 +00:00
|
|
|
|
spacer4->setStyleSheet("background-color: rgba(0,0,0,0)");
|
|
|
|
|
spacer4->setMinimumSize(10, 10);
|
|
|
|
|
spacer4->setMaximumWidth(10);
|
2018-06-12 08:43:14 +00:00
|
|
|
|
ui->mainToolBar->addWidget(spacer4);
|
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
|
// Omnibar LineEdit
|
|
|
|
|
this->omnibar = new Omnibar(this);
|
2017-11-18 14:57:00 +00:00
|
|
|
|
ui->mainToolBar->addWidget(this->omnibar);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
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);
|
2019-04-27 17:58:44 +00:00
|
|
|
|
spacer2->setStyleSheet("background-color: rgba(0,0,0,0)");
|
2017-03-29 10:18:37 +00:00
|
|
|
|
spacer2->setMinimumSize(10, 10);
|
|
|
|
|
spacer2->setMaximumWidth(300);
|
2017-11-18 14:57:00 +00:00
|
|
|
|
ui->mainToolBar->addWidget(spacer2);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
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);
|
2019-04-27 17:58:44 +00:00
|
|
|
|
spacer->setStyleSheet("background-color: rgba(0,0,0,0)");
|
2017-03-29 10:18:37 +00:00
|
|
|
|
spacer->setMinimumSize(20, 20);
|
|
|
|
|
ui->mainToolBar->addWidget(spacer);
|
|
|
|
|
|
2018-06-24 19:12:02 +00:00
|
|
|
|
tasksProgressIndicator = new ProgressIndicator();
|
2019-04-27 17:58:44 +00:00
|
|
|
|
tasksProgressIndicator->setStyleSheet("background-color: rgba(0,0,0,0)");
|
2018-06-24 19:12:02 +00:00
|
|
|
|
ui->mainToolBar->addWidget(tasksProgressIndicator);
|
|
|
|
|
|
|
|
|
|
QWidget *spacerEnd = new QWidget();
|
|
|
|
|
spacerEnd->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding);
|
2019-04-27 17:58:44 +00:00
|
|
|
|
spacerEnd->setStyleSheet("background-color: rgba(0,0,0,0)");
|
2018-06-24 19:12:02 +00:00
|
|
|
|
spacerEnd->setMinimumSize(4, 0);
|
|
|
|
|
spacerEnd->setMaximumWidth(4);
|
|
|
|
|
ui->mainToolBar->addWidget(spacerEnd);
|
2018-06-22 18:34:25 +00:00
|
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
|
// Visual navigation tool bar
|
|
|
|
|
this->visualNavbar = new VisualNavbar(this);
|
|
|
|
|
this->visualNavbar->setMovable(false);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
addToolBarBreak(Qt::TopToolBarArea);
|
2017-12-08 15:00:52 +00:00
|
|
|
|
addToolBar(visualNavbar);
|
2018-10-10 09:37:24 +00:00
|
|
|
|
QObject::connect(configuration, &Configuration::colorsUpdated, [this]() {
|
|
|
|
|
this->visualNavbar->updateGraphicsScene();
|
|
|
|
|
});
|
2019-05-01 16:15:33 +00:00
|
|
|
|
QObject::connect(configuration, &Configuration::interfaceThemeChanged, this, &MainWindow::chooseThemeIcons);
|
2019-03-18 06:44:14 +00:00
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
2019-03-18 06:44:14 +00:00
|
|
|
|
void MainWindow::initDocks()
|
|
|
|
|
{
|
2018-02-04 14:32:18 +00:00
|
|
|
|
dockWidgets.reserve(20);
|
2019-09-06 05:40:20 +00:00
|
|
|
|
decompilerDock = new DecompilerWidget(this, ui->actionDecompiler);
|
2018-03-16 21:46:57 +00:00
|
|
|
|
consoleDock = new ConsoleWidget(this, ui->actionConsole);
|
2019-04-14 12:18:24 +00:00
|
|
|
|
|
2019-01-24 17:13:04 +00:00
|
|
|
|
overviewDock = new OverviewWidget(this, ui->actionOverview);
|
2019-02-19 15:56:50 +00:00
|
|
|
|
overviewDock->hide();
|
2019-04-14 12:18:24 +00:00
|
|
|
|
connect(overviewDock, &OverviewWidget::isAvailableChanged, this, [this](bool isAvailable) {
|
|
|
|
|
ui->actionOverview->setEnabled(isAvailable);
|
|
|
|
|
});
|
|
|
|
|
ui->actionOverview->setEnabled(overviewDock->getIsAvailable());
|
2019-03-08 18:57:57 +00:00
|
|
|
|
connect(ui->actionOverview, &QAction::toggled, [this](bool checked) {
|
|
|
|
|
if (checked) {
|
2019-04-14 12:18:24 +00:00
|
|
|
|
overviewDock->show();
|
|
|
|
|
} else {
|
|
|
|
|
overviewDock->hide();
|
2019-03-08 18:57:57 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
2019-04-14 12:18:24 +00:00
|
|
|
|
|
|
|
|
|
ui->actionOverview->setChecked(overviewDock->getUserOpened());
|
2019-01-13 15:41:08 +00:00
|
|
|
|
sectionsDock = new SectionsWidget(this, ui->actionSections);
|
2019-01-13 17:55:02 +00:00
|
|
|
|
segmentsDock = new SegmentsWidget(this, ui->actionSegments);
|
|
|
|
|
entrypointDock = new EntrypointWidget(this, ui->actionEntrypoints);
|
2018-03-16 21:46:57 +00:00
|
|
|
|
functionsDock = new FunctionsWidget(this, ui->actionFunctions);
|
2019-01-13 17:55:02 +00:00
|
|
|
|
importsDock = new ImportsWidget(this, ui->actionImports);
|
|
|
|
|
exportsDock = new ExportsWidget(this, ui->actionExports);
|
|
|
|
|
headersDock = new HeadersWidget(this, ui->actionHeaders);
|
|
|
|
|
zignaturesDock = new ZignaturesWidget(this, ui->actionZignatures);
|
|
|
|
|
typesDock = new TypesWidget(this, ui->actionTypes);
|
|
|
|
|
searchDock = new SearchWidget(this, ui->actionSearch);
|
|
|
|
|
symbolsDock = new SymbolsWidget(this, ui->actionSymbols);
|
|
|
|
|
relocsDock = new RelocsWidget(this, ui->actionRelocs);
|
2019-01-13 15:41:08 +00:00
|
|
|
|
commentsDock = new CommentsWidget(this, ui->actionComments);
|
2019-01-13 17:55:02 +00:00
|
|
|
|
stringsDock = new StringsWidget(this, ui->actionStrings);
|
|
|
|
|
flagsDock = new FlagsWidget(this, ui->actionFlags);
|
2019-01-13 18:11:59 +00:00
|
|
|
|
stackDock = new StackWidget(this, ui->actionStack);
|
2019-10-22 15:51:56 +00:00
|
|
|
|
threadsDock = new ThreadsWidget(this, ui->actionThreads);
|
2019-12-09 18:43:42 +00:00
|
|
|
|
processesDock = new ProcessesWidget(this, ui->actionProcesses);
|
2019-01-13 18:11:59 +00:00
|
|
|
|
backtraceDock = new BacktraceWidget(this, ui->actionBacktrace);
|
|
|
|
|
registersDock = new RegistersWidget(this, ui->actionRegisters);
|
|
|
|
|
memoryMapDock = new MemoryMapWidget(this, ui->actionMemoryMap);
|
|
|
|
|
breakpointDock = new BreakpointWidget(this, ui->actionBreakpoint);
|
|
|
|
|
registerRefsDock = new RegisterRefsWidget(this, ui->actionRegisterRefs);
|
2018-03-16 21:46:57 +00:00
|
|
|
|
dashboardDock = new Dashboard(this, ui->actionDashboard);
|
2019-02-13 06:38:47 +00:00
|
|
|
|
sdbDock = new SdbWidget(this, ui->actionSDBBrowser);
|
2019-01-13 17:55:02 +00:00
|
|
|
|
classesDock = new ClassesWidget(this, ui->actionClasses);
|
|
|
|
|
resourcesDock = new ResourcesWidget(this, ui->actionResources);
|
|
|
|
|
vTablesDock = new VTablesWidget(this, ui->actionVTables);
|
2019-06-18 13:02:41 +00:00
|
|
|
|
|
|
|
|
|
QSettings s;
|
2019-06-18 18:22:26 +00:00
|
|
|
|
QStringList docks = s.value("docks", QStringList {
|
|
|
|
|
DisassemblyWidget::getWidgetType(),
|
|
|
|
|
GraphWidget::getWidgetType(),
|
|
|
|
|
HexdumpWidget::getWidgetType()
|
|
|
|
|
}).toStringList();
|
2019-06-18 13:02:41 +00:00
|
|
|
|
|
|
|
|
|
// Restore all extra widgets
|
|
|
|
|
QString className;
|
|
|
|
|
for (const auto &it : docks) {
|
|
|
|
|
if (std::none_of(dockWidgets.constBegin(), dockWidgets.constEnd(),
|
2019-07-19 19:21:12 +00:00
|
|
|
|
[&it](QDockWidget * w) { return w->objectName() == it; })) {
|
2019-06-18 13:02:41 +00:00
|
|
|
|
className = it.split(';').at(0);
|
2019-07-04 18:51:44 +00:00
|
|
|
|
if (widgetTypeToConstructorMap.contains(className)) {
|
|
|
|
|
auto widget = widgetTypeToConstructorMap[className](this, nullptr);
|
2019-06-18 13:02:41 +00:00
|
|
|
|
widget->setObjectName(it);
|
|
|
|
|
addExtraWidget(widget);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-03-18 06:44:14 +00:00
|
|
|
|
}
|
2017-12-23 16:42:42 +00:00
|
|
|
|
|
2019-03-18 06:44:14 +00:00
|
|
|
|
void MainWindow::initLayout()
|
|
|
|
|
{
|
2018-03-11 11:41:19 +00:00
|
|
|
|
// Set up dock widgets default layout
|
2018-10-22 18:06:30 +00:00
|
|
|
|
enableDebugWidgetsMenu(false);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
// Restore saved settings
|
2019-03-18 06:44:14 +00:00
|
|
|
|
readSettingsOrDefault();
|
2019-06-18 13:02:41 +00:00
|
|
|
|
|
|
|
|
|
initCorners();
|
2018-06-22 18:34:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-19 15:56:50 +00:00
|
|
|
|
void MainWindow::toggleOverview(bool visibility, GraphWidget *targetGraph)
|
|
|
|
|
{
|
|
|
|
|
if (!overviewDock) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-04-14 12:18:24 +00:00
|
|
|
|
if (visibility) {
|
|
|
|
|
overviewDock->setTargetGraphWidget(targetGraph);
|
2019-03-12 07:37:10 +00:00
|
|
|
|
}
|
2019-02-19 15:56:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-22 18:34:25 +00:00
|
|
|
|
void MainWindow::updateTasksIndicator()
|
|
|
|
|
{
|
2018-08-27 11:16:48 +00:00
|
|
|
|
bool running = core->getAsyncTaskManager()->getTasksRunning();
|
2018-06-24 19:12:02 +00:00
|
|
|
|
tasksProgressIndicator->setProgressIndicatorVisible(running);
|
2017-05-13 18:09:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 13:02:41 +00:00
|
|
|
|
void MainWindow::addExtraGraph()
|
2018-05-25 14:30:59 +00:00
|
|
|
|
{
|
2019-06-18 18:22:26 +00:00
|
|
|
|
auto *extraDock = new GraphWidget(this, nullptr);
|
2018-05-25 14:30:59 +00:00
|
|
|
|
addExtraWidget(extraDock);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 13:02:41 +00:00
|
|
|
|
void MainWindow::addExtraHexdump()
|
2018-05-25 14:30:59 +00:00
|
|
|
|
{
|
2019-06-18 18:22:26 +00:00
|
|
|
|
auto *extraDock = new HexdumpWidget(this, nullptr);
|
2018-05-25 14:30:59 +00:00
|
|
|
|
addExtraWidget(extraDock);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 13:02:41 +00:00
|
|
|
|
void MainWindow::addExtraDisassembly()
|
2018-05-25 14:30:59 +00:00
|
|
|
|
{
|
2019-06-18 18:22:26 +00:00
|
|
|
|
auto *extraDock = new DisassemblyWidget(this, nullptr);
|
2018-05-25 14:30:59 +00:00
|
|
|
|
addExtraWidget(extraDock);
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-27 09:46:29 +00:00
|
|
|
|
void MainWindow::addExtraWidget(CutterDockWidget *extraDock)
|
2018-05-25 14:30:59 +00:00
|
|
|
|
{
|
2019-04-27 09:46:29 +00:00
|
|
|
|
extraDock->setTransient(true);
|
2019-06-18 13:02:41 +00:00
|
|
|
|
addDockWidget(Qt::TopDockWidgetArea, extraDock, Qt::Orientation::Horizontal);
|
2018-05-25 14:30:59 +00:00
|
|
|
|
auto restoreExtraDock = qhelpers::forceWidth(extraDock->widget(), 600);
|
|
|
|
|
qApp->processEvents();
|
|
|
|
|
restoreExtraDock.restoreWidth(extraDock->widget());
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-03 07:50:25 +00:00
|
|
|
|
QMenu *MainWindow::getMenuByType(MenuType type)
|
|
|
|
|
{
|
|
|
|
|
switch (type) {
|
|
|
|
|
case MenuType::File:
|
|
|
|
|
return ui->menuFile;
|
|
|
|
|
case MenuType::Edit:
|
|
|
|
|
return ui->menuEdit;
|
|
|
|
|
case MenuType::View:
|
|
|
|
|
return ui->menuView;
|
|
|
|
|
case MenuType::Windows:
|
|
|
|
|
return ui->menuWindows;
|
|
|
|
|
case MenuType::Debug:
|
|
|
|
|
return ui->menuDebug;
|
|
|
|
|
case MenuType::Help:
|
|
|
|
|
return ui->menuHelp;
|
|
|
|
|
case MenuType::Plugins:
|
|
|
|
|
return ui->menuPlugins;
|
|
|
|
|
default:
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-07 16:19:05 +00:00
|
|
|
|
void MainWindow::addPluginDockWidget(QDockWidget *dockWidget, QAction *action)
|
|
|
|
|
{
|
|
|
|
|
addDockWidget(Qt::TopDockWidgetArea, dockWidget);
|
2019-06-18 13:02:41 +00:00
|
|
|
|
dockWidget->addAction(action);
|
|
|
|
|
addWidget(dockWidget);
|
2019-02-21 11:08:02 +00:00
|
|
|
|
ui->menuPlugins->addAction(action);
|
2019-03-29 17:02:27 +00:00
|
|
|
|
addDockWidget(Qt::DockWidgetArea::TopDockWidgetArea, dockWidget);
|
2019-02-07 16:19:05 +00:00
|
|
|
|
updateDockActionChecked(action);
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-11 19:05:53 +00:00
|
|
|
|
void MainWindow::addMenuFileAction(QAction *action)
|
|
|
|
|
{
|
|
|
|
|
ui->menuFile->addAction(action);
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-17 11:40:50 +00:00
|
|
|
|
void MainWindow::openNewFile(InitialOptions &options, bool skipOptionsDialog)
|
2017-05-13 18:09:36 +00:00
|
|
|
|
{
|
2018-08-18 16:04:45 +00:00
|
|
|
|
setFilename(options.filename);
|
2017-05-13 18:09:36 +00:00
|
|
|
|
|
2017-12-14 12:45:03 +00:00
|
|
|
|
/* Prompt to load filename.r2 script */
|
2018-08-18 16:04:45 +00:00
|
|
|
|
if (options.script.isEmpty()) {
|
|
|
|
|
QString script = QString("%1.r2").arg(this->filename);
|
|
|
|
|
if (r_file_exists(script.toStdString().data())) {
|
|
|
|
|
QMessageBox mb;
|
|
|
|
|
mb.setWindowTitle(tr("Script loading"));
|
|
|
|
|
mb.setText(tr("Do you want to load the '%1' script?").arg(script));
|
|
|
|
|
mb.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
|
|
|
|
|
if (mb.exec() == QMessageBox::Yes) {
|
2018-08-25 11:23:31 +00:00
|
|
|
|
options.script = script;
|
2018-08-18 16:04:45 +00:00
|
|
|
|
}
|
2017-12-14 12:45:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Show analysis options dialog */
|
2018-08-18 16:04:45 +00:00
|
|
|
|
displayInitialOptionsDialog(options, skipOptionsDialog);
|
2018-01-27 10:40:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-08 20:44:53 +00:00
|
|
|
|
void MainWindow::openNewFileFailed()
|
|
|
|
|
{
|
|
|
|
|
displayNewFileDialog();
|
|
|
|
|
QMessageBox mb(this);
|
|
|
|
|
mb.setIcon(QMessageBox::Critical);
|
|
|
|
|
mb.setStandardButtons(QMessageBox::Ok);
|
|
|
|
|
mb.setWindowTitle(tr("Cannot open file!"));
|
2018-07-18 10:15:10 +00:00
|
|
|
|
mb.setText(
|
|
|
|
|
tr("Could not open the file! Make sure the file exists and that you have the correct permissions."));
|
2018-05-08 20:44:53 +00:00
|
|
|
|
mb.exec();
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-06 20:30:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* @brief displays the WelocmeDialog
|
2019-01-19 20:54:02 +00:00
|
|
|
|
*
|
|
|
|
|
* Upon first execution of Cutter, the WelcomeDialog would be showed to the user.
|
|
|
|
|
* The Welcome dialog would be showed after a reset of Cutter's preferences by the user.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
void MainWindow::displayWelcomeDialog()
|
|
|
|
|
{
|
|
|
|
|
WelcomeDialog w;
|
|
|
|
|
w.exec();
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-06 18:23:01 +00:00
|
|
|
|
void MainWindow::displayNewFileDialog()
|
|
|
|
|
{
|
2019-03-10 22:26:25 +00:00
|
|
|
|
NewFileDialog *n = new NewFileDialog(this);
|
2018-02-10 18:04:31 +00:00
|
|
|
|
newFileDialog = n;
|
2018-02-06 18:23:01 +00:00
|
|
|
|
n->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
|
n->show();
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-10 18:04:31 +00:00
|
|
|
|
void MainWindow::closeNewFileDialog()
|
|
|
|
|
{
|
|
|
|
|
if (newFileDialog) {
|
|
|
|
|
newFileDialog->close();
|
|
|
|
|
}
|
|
|
|
|
newFileDialog = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-18 16:04:45 +00:00
|
|
|
|
void MainWindow::displayInitialOptionsDialog(const InitialOptions &options, bool skipOptionsDialog)
|
2018-01-27 10:40:26 +00:00
|
|
|
|
{
|
2018-08-18 16:04:45 +00:00
|
|
|
|
auto o = new InitialOptionsDialog(this);
|
2017-05-13 18:09:36 +00:00
|
|
|
|
o->setAttribute(Qt::WA_DeleteOnClose);
|
2018-10-12 10:49:29 +00:00
|
|
|
|
o->loadOptions(options);
|
2017-05-13 18:09:36 +00:00
|
|
|
|
|
2018-08-18 16:04:45 +00:00
|
|
|
|
if (skipOptionsDialog) {
|
|
|
|
|
o->setupAndStartAnalysis();
|
2018-10-12 10:49:29 +00:00
|
|
|
|
} else {
|
2018-10-11 13:04:57 +00:00
|
|
|
|
o->show();
|
|
|
|
|
}
|
2017-05-13 18:09:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::openProject(const QString &project_name)
|
|
|
|
|
{
|
2020-03-20 18:14:21 +00:00
|
|
|
|
QString filename = core->cmdRaw("Pi " + project_name);
|
2017-05-13 18:09:36 +00:00
|
|
|
|
setFilename(filename.trimmed());
|
|
|
|
|
|
2017-10-21 19:20:10 +00:00
|
|
|
|
core->openProject(project_name);
|
2017-05-13 18:09:36 +00:00
|
|
|
|
|
|
|
|
|
finalizeOpen();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::finalizeOpen()
|
|
|
|
|
{
|
|
|
|
|
core->getOpcodes();
|
2018-09-06 17:32:12 +00:00
|
|
|
|
core->updateSeek();
|
2017-11-19 12:56:10 +00:00
|
|
|
|
refreshAll();
|
2017-05-13 18:09:36 +00:00
|
|
|
|
|
|
|
|
|
// Add fortune message
|
2020-03-20 18:14:21 +00:00
|
|
|
|
core->message("\n" + core->cmdRaw("fo"));
|
2017-05-13 18:09:36 +00:00
|
|
|
|
showMaximized();
|
2020-05-04 09:49:40 +00:00
|
|
|
|
Config()->adjustColorThemeDarkness();
|
2019-04-12 05:22:06 +00:00
|
|
|
|
|
2019-06-18 13:02:41 +00:00
|
|
|
|
QSettings s;
|
|
|
|
|
QStringList unsync = s.value("unsync").toStringList();
|
|
|
|
|
for (auto it : dockWidgets) {
|
|
|
|
|
auto w = qobject_cast<MemoryDockWidget*>(it);
|
|
|
|
|
if (w) {
|
|
|
|
|
w->getSeekable()->setSynchronization(!unsync.contains(it->objectName()));
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-12 05:22:06 +00:00
|
|
|
|
|
|
|
|
|
// Set focus to disasm or graph widget
|
|
|
|
|
|
|
|
|
|
// Use for loop to cover cases when main disasm/graph
|
|
|
|
|
// (MainWindow::disassemblyDock and MainWindow::graphDock)
|
|
|
|
|
// widgets are invisible but extra ones are visible
|
|
|
|
|
|
|
|
|
|
// Graph with function in it has focus priority over DisasmWidget
|
|
|
|
|
// if there are both graph and disasm.
|
|
|
|
|
// Otherwise Disasm has focus priority over Graph
|
|
|
|
|
|
|
|
|
|
// If there are no graph/disasm widgets focus on MainWindow
|
|
|
|
|
|
|
|
|
|
setFocus();
|
|
|
|
|
bool graphContainsFunc = false;
|
|
|
|
|
for (auto dockWidget : dockWidgets) {
|
|
|
|
|
const QString className = dockWidget->metaObject()->className();
|
2019-06-18 18:22:26 +00:00
|
|
|
|
auto graphWidget = qobject_cast<GraphWidget*>(dockWidget);
|
|
|
|
|
if (graphWidget && !dockWidget->visibleRegion().isNull()) {
|
|
|
|
|
graphContainsFunc = !graphWidget->getGraphView()->getBlocks().empty();
|
2019-04-12 05:22:06 +00:00
|
|
|
|
if (graphContainsFunc) {
|
|
|
|
|
dockWidget->widget()->setFocus();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-18 18:22:26 +00:00
|
|
|
|
auto disasmWidget = qobject_cast<DisassemblyWidget*>(dockWidget);
|
|
|
|
|
if (disasmWidget && !dockWidget->visibleRegion().isNull()) {
|
2019-04-12 05:22:06 +00:00
|
|
|
|
if (!graphContainsFunc) {
|
2019-06-18 18:22:26 +00:00
|
|
|
|
disasmWidget->setFocus();
|
2019-04-12 05:22:06 +00:00
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-13 18:09:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-21 19:20:10 +00:00
|
|
|
|
bool MainWindow::saveProject(bool quit)
|
2017-05-13 18:09:36 +00:00
|
|
|
|
{
|
2017-10-21 19:20:10 +00:00
|
|
|
|
QString projectName = core->getConfig("prj.name");
|
2018-03-21 20:32:32 +00:00
|
|
|
|
if (projectName.isEmpty()) {
|
2017-10-21 19:20:10 +00:00
|
|
|
|
return saveProjectAs(quit);
|
2018-03-21 20:32:32 +00:00
|
|
|
|
} else {
|
2017-10-21 19:20:10 +00:00
|
|
|
|
core->saveProject(projectName);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MainWindow::saveProjectAs(bool quit)
|
|
|
|
|
{
|
2017-11-03 17:22:54 +00:00
|
|
|
|
SaveProjectDialog dialog(quit, this);
|
2018-10-14 15:43:15 +00:00
|
|
|
|
return SaveProjectDialog::Rejected != dialog.exec();
|
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;
|
2018-09-27 11:16:07 +00:00
|
|
|
|
this->setWindowTitle(APPNAME" – " + fn);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::closeEvent(QCloseEvent *event)
|
|
|
|
|
{
|
2020-03-19 09:36:36 +00:00
|
|
|
|
|
|
|
|
|
// Check if there are uncommitted changes
|
|
|
|
|
if (core->isIOCacheEnabled() && !core->cmdj("wcj").array().isEmpty()) {
|
|
|
|
|
|
|
|
|
|
QMessageBox::StandardButton ret = QMessageBox::question(this, APPNAME,
|
|
|
|
|
tr("It seems that you have changes or patches that are not committed to the file.\n"
|
|
|
|
|
"Do you want to commit them now?"),
|
|
|
|
|
(QMessageBox::StandardButtons)(QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel));
|
|
|
|
|
if (ret == QMessageBox::Cancel) {
|
|
|
|
|
event->ignore();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ret == QMessageBox::Save) {
|
|
|
|
|
core->commitWriteCache();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-25 12:55:41 +00:00
|
|
|
|
QMessageBox::StandardButton ret = QMessageBox::question(this, APPNAME,
|
2019-02-07 10:52:08 +00:00
|
|
|
|
tr("Do you really want to exit?\nSave your project before closing!"),
|
|
|
|
|
(QMessageBox::StandardButtons)(QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel));
|
2018-10-12 07:08:04 +00:00
|
|
|
|
if (ret == QMessageBox::Cancel) {
|
|
|
|
|
event->ignore();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ret == QMessageBox::Save && !saveProject(true)) {
|
2017-03-29 10:18:37 +00:00
|
|
|
|
event->ignore();
|
2018-10-12 07:08:04 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!core->currentlyDebugging) {
|
|
|
|
|
saveSettings();
|
|
|
|
|
} else {
|
|
|
|
|
core->stopDebug();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
2018-10-12 07:08:04 +00:00
|
|
|
|
QMainWindow::closeEvent(event);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-18 06:44:14 +00:00
|
|
|
|
void MainWindow::paintEvent(QPaintEvent *event)
|
|
|
|
|
{
|
|
|
|
|
QMainWindow::paintEvent(event);
|
|
|
|
|
/*
|
|
|
|
|
* Dirty hack
|
|
|
|
|
* Just to adjust the width of Functions Widget to fixed size
|
|
|
|
|
* After everything is drawn, safely make it Preferred size policy
|
|
|
|
|
* So that user can change the widget size with the mouse
|
|
|
|
|
*/
|
|
|
|
|
if (functionsDock) {
|
|
|
|
|
functionsDock->changeSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::readSettingsOrDefault()
|
2017-03-29 10:18:37 +00:00
|
|
|
|
{
|
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();
|
|
|
|
|
QByteArray state = settings.value("state", QByteArray()).toByteArray();
|
2019-03-18 06:44:14 +00:00
|
|
|
|
/*
|
|
|
|
|
* Check if saved settings exist
|
|
|
|
|
* If not, then read the default layout
|
|
|
|
|
*/
|
2019-06-18 13:02:41 +00:00
|
|
|
|
if (!geo.length() || !state.length()) {
|
2019-03-18 06:44:14 +00:00
|
|
|
|
resetToDefaultLayout();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
hideAllDocks();
|
|
|
|
|
restoreGeometry(geo);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
restoreState(state);
|
2019-03-29 17:02:27 +00:00
|
|
|
|
|
|
|
|
|
// make sure all DockWidgets are part of the MainWindow
|
|
|
|
|
// also show them, so newly installed plugin widgets are shown right away
|
|
|
|
|
for (auto dockWidget : dockWidgets) {
|
2019-12-20 06:19:44 +00:00
|
|
|
|
if (dockWidgetArea(dockWidget) == Qt::DockWidgetArea::NoDockWidgetArea &&
|
|
|
|
|
!isDebugWidget(dockWidget)) {
|
2019-03-29 17:02:27 +00:00
|
|
|
|
addDockWidget(Qt::DockWidgetArea::TopDockWidgetArea, dockWidget);
|
|
|
|
|
dockWidget->show();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-18 06:44:14 +00:00
|
|
|
|
responsive = settings.value("responsive").toBool();
|
2017-12-17 13:49:03 +00:00
|
|
|
|
panelLock = settings.value("panelLock").toBool();
|
|
|
|
|
setPanelLock();
|
|
|
|
|
tabsOnTop = settings.value("tabsOnTop").toBool();
|
|
|
|
|
setTabLocation();
|
2019-05-08 11:38:25 +00:00
|
|
|
|
bool dockGroupedDragging = settings.value("docksGroupedDragging", false).toBool();
|
|
|
|
|
ui->actionGrouped_dock_dragging->setChecked(dockGroupedDragging);
|
|
|
|
|
on_actionGrouped_dock_dragging_triggered(dockGroupedDragging);
|
|
|
|
|
|
2018-07-23 23:12:36 +00:00
|
|
|
|
QPoint pos = settings.value("pos", QPoint(200, 200)).toPoint();
|
|
|
|
|
QSize size = settings.value("size", QSize(400, 400)).toSize();
|
|
|
|
|
resize(size);
|
|
|
|
|
move(pos);
|
2017-12-21 15:47:36 +00:00
|
|
|
|
updateDockActionsChecked();
|
2017-12-17 13:49:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::saveSettings()
|
|
|
|
|
{
|
|
|
|
|
QSettings settings;
|
2019-06-18 13:02:41 +00:00
|
|
|
|
|
|
|
|
|
QStringList docks;
|
|
|
|
|
QStringList unsync;
|
|
|
|
|
for (const auto &it : dockWidgets) {
|
|
|
|
|
docks.append(it->objectName());
|
2019-06-18 17:28:20 +00:00
|
|
|
|
auto memoryDockWidget = qobject_cast<MemoryDockWidget*>(it);
|
|
|
|
|
if (memoryDockWidget && !memoryDockWidget->getSeekable()->isSynchronized()) {
|
2019-06-18 13:02:41 +00:00
|
|
|
|
unsync.append(it->objectName());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
settings.setValue("docks", docks);
|
|
|
|
|
settings.setValue("unsync", unsync);
|
2017-12-17 13:49:03 +00:00
|
|
|
|
settings.setValue("geometry", saveGeometry());
|
|
|
|
|
settings.setValue("size", size());
|
|
|
|
|
settings.setValue("pos", pos());
|
|
|
|
|
settings.setValue("state", saveState());
|
|
|
|
|
settings.setValue("panelLock", panelLock);
|
|
|
|
|
settings.setValue("tabsOnTop", tabsOnTop);
|
2019-05-08 11:38:25 +00:00
|
|
|
|
settings.setValue("docksGroupedDragging", ui->actionGrouped_dock_dragging->isChecked());
|
2017-12-17 13:49:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 23:12:36 +00:00
|
|
|
|
void MainWindow::readDebugSettings()
|
|
|
|
|
{
|
|
|
|
|
QSettings settings;
|
|
|
|
|
QByteArray geo = settings.value("debug.geometry", QByteArray()).toByteArray();
|
|
|
|
|
restoreGeometry(geo);
|
|
|
|
|
QByteArray state = settings.value("debug.state", QByteArray()).toByteArray();
|
|
|
|
|
restoreState(state);
|
|
|
|
|
QPoint pos = settings.value("pos", QPoint(200, 200)).toPoint();
|
|
|
|
|
QSize size = settings.value("size", QSize(400, 400)).toSize();
|
|
|
|
|
resize(size);
|
|
|
|
|
move(pos);
|
|
|
|
|
updateDockActionsChecked();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::saveDebugSettings()
|
|
|
|
|
{
|
|
|
|
|
QSettings settings;
|
|
|
|
|
settings.setValue("debug.geometry", saveGeometry());
|
|
|
|
|
settings.setValue("debug.state", saveState());
|
|
|
|
|
settings.setValue("size", size());
|
|
|
|
|
settings.setValue("pos", pos());
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-17 13:49:03 +00:00
|
|
|
|
void MainWindow::setPanelLock()
|
|
|
|
|
{
|
2018-03-21 20:32:32 +00:00
|
|
|
|
if (panelLock) {
|
2018-05-04 07:58:32 +00:00
|
|
|
|
for (QDockWidget *dockWidget : findChildren<QDockWidget *>()) {
|
2017-12-17 13:49:03 +00:00
|
|
|
|
dockWidget->setFeatures(QDockWidget::NoDockWidgetFeatures);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui->actionLock->setChecked(false);
|
2018-03-21 20:32:32 +00:00
|
|
|
|
} else {
|
2018-05-04 07:58:32 +00:00
|
|
|
|
for (QDockWidget *dockWidget : findChildren<QDockWidget *>()) {
|
2017-12-17 13:49:03 +00:00
|
|
|
|
dockWidget->setFeatures(QDockWidget::AllDockWidgetFeatures);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui->actionLock->setChecked(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::setTabLocation()
|
|
|
|
|
{
|
2018-03-21 20:32:32 +00:00
|
|
|
|
if (tabsOnTop) {
|
2017-12-17 13:49:03 +00:00
|
|
|
|
this->setTabPosition(Qt::AllDockWidgetAreas, QTabWidget::North);
|
|
|
|
|
ui->actionTabs_on_Top->setChecked(true);
|
2018-03-21 20:32:32 +00:00
|
|
|
|
} else {
|
2017-12-17 13:49:03 +00:00
|
|
|
|
this->setTabPosition(Qt::AllDockWidgetAreas, QTabWidget::South);
|
|
|
|
|
ui->actionTabs_on_Top->setChecked(false);
|
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
|
void MainWindow::refreshAll()
|
2017-04-09 19:55:06 +00:00
|
|
|
|
{
|
2018-08-27 11:16:48 +00:00
|
|
|
|
core->triggerRefreshAll();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::lockUnlock_Docks(bool what)
|
|
|
|
|
{
|
2018-03-21 20:32:32 +00:00
|
|
|
|
if (what) {
|
2018-05-04 07:58:32 +00:00
|
|
|
|
for (QDockWidget *dockWidget : findChildren<QDockWidget *>()) {
|
2017-03-29 10:18:37 +00:00
|
|
|
|
dockWidget->setFeatures(QDockWidget::NoDockWidgetFeatures);
|
|
|
|
|
}
|
2018-03-21 20:32:32 +00:00
|
|
|
|
} else {
|
2018-05-04 07:58:32 +00:00
|
|
|
|
for (QDockWidget *dockWidget : findChildren<QDockWidget *>()) {
|
2017-03-29 10:18:37 +00:00
|
|
|
|
dockWidget->setFeatures(QDockWidget::AllDockWidgetFeatures);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::restoreDocks()
|
|
|
|
|
{
|
2017-12-10 16:55:42 +00:00
|
|
|
|
// In the upper half the functions are the first widget
|
2019-01-13 17:55:02 +00:00
|
|
|
|
addDockWidget(Qt::TopDockWidgetArea, functionsDock);
|
2019-01-24 17:13:04 +00:00
|
|
|
|
addDockWidget(Qt::TopDockWidgetArea, overviewDock);
|
2017-10-13 13:53:23 +00:00
|
|
|
|
|
2018-12-24 15:25:55 +00:00
|
|
|
|
// Function | Dashboard
|
2019-06-18 13:02:41 +00:00
|
|
|
|
splitDockWidget(functionsDock, dashboardDock, Qt::Horizontal);
|
2019-09-06 05:40:20 +00:00
|
|
|
|
tabifyDockWidget(dashboardDock, decompilerDock);
|
2019-01-13 17:55:02 +00:00
|
|
|
|
tabifyDockWidget(dashboardDock, entrypointDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, flagsDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, stringsDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, relocsDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, importsDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, exportsDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, typesDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, searchDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, headersDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, zignaturesDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, symbolsDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, classesDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, resourcesDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, vTablesDock);
|
2019-02-13 06:38:47 +00:00
|
|
|
|
tabifyDockWidget(dashboardDock, sdbDock);
|
2019-06-18 13:02:41 +00:00
|
|
|
|
tabifyDockWidget(dashboardDock, memoryMapDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, breakpointDock);
|
|
|
|
|
tabifyDockWidget(dashboardDock, registerRefsDock);
|
|
|
|
|
for (const auto &it : dockWidgets) {
|
|
|
|
|
// Check whether or not current widgets is graph, hexdump or disasm
|
|
|
|
|
if (qobject_cast<GraphWidget*>(it) ||
|
|
|
|
|
qobject_cast<HexdumpWidget*>(it) ||
|
|
|
|
|
qobject_cast<DisassemblyWidget*>(it)) {
|
|
|
|
|
tabifyDockWidget(dashboardDock, it);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
splitDockWidget(functionsDock, overviewDock, Qt::Vertical);
|
|
|
|
|
|
|
|
|
|
// In the lower half the console is the first widget
|
|
|
|
|
addDockWidget(Qt::BottomDockWidgetArea, consoleDock);
|
|
|
|
|
|
|
|
|
|
// Console | Sections
|
|
|
|
|
splitDockWidget(consoleDock, sectionsDock, Qt::Horizontal);
|
|
|
|
|
splitDockWidget(consoleDock, segmentsDock, Qt::Horizontal);
|
|
|
|
|
|
|
|
|
|
tabifyDockWidget(sectionsDock, commentsDock);
|
2018-06-06 11:05:20 +00:00
|
|
|
|
|
2019-10-22 15:51:56 +00:00
|
|
|
|
// Add Stack, Registers, Threads and Backtrace vertically stacked
|
2019-01-13 18:11:59 +00:00
|
|
|
|
addDockWidget(Qt::TopDockWidgetArea, stackDock);
|
|
|
|
|
splitDockWidget(stackDock, registersDock, Qt::Vertical);
|
|
|
|
|
tabifyDockWidget(stackDock, backtraceDock);
|
2019-10-22 15:51:56 +00:00
|
|
|
|
tabifyDockWidget(backtraceDock, threadsDock);
|
2019-12-09 18:43:42 +00:00
|
|
|
|
tabifyDockWidget(threadsDock, processesDock);
|
2019-01-13 18:11:59 +00:00
|
|
|
|
|
2017-12-21 15:47:36 +00:00
|
|
|
|
updateDockActionsChecked();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-03 17:22:54 +00:00
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
|
void MainWindow::hideAllDocks()
|
|
|
|
|
{
|
2018-03-21 20:32:32 +00:00
|
|
|
|
for (auto w : dockWidgets) {
|
2018-01-09 12:09:25 +00:00
|
|
|
|
removeDockWidget(w);
|
2017-04-13 15:36:20 +00:00
|
|
|
|
}
|
2017-12-21 15:47:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::updateDockActionsChecked()
|
|
|
|
|
{
|
2019-06-18 13:02:41 +00:00
|
|
|
|
for (auto i = dockWidgetsOfAction.constBegin(); i != dockWidgetsOfAction.constEnd(); i++) {
|
|
|
|
|
updateDockActionChecked(i.key());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-20 06:19:44 +00:00
|
|
|
|
bool MainWindow::isDebugWidget(QDockWidget *dock) const
|
|
|
|
|
{
|
|
|
|
|
return dock == stackDock ||
|
|
|
|
|
dock == registersDock ||
|
|
|
|
|
dock == backtraceDock ||
|
|
|
|
|
dock == threadsDock ||
|
|
|
|
|
dock == memoryMapDock ||
|
|
|
|
|
dock == breakpointDock ||
|
|
|
|
|
dock == processesDock ||
|
|
|
|
|
dock == registerRefsDock;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-19 19:21:12 +00:00
|
|
|
|
MemoryWidgetType MainWindow::getMemoryWidgetTypeToRestore()
|
|
|
|
|
{
|
2019-09-02 07:34:41 +00:00
|
|
|
|
if (lastSyncMemoryWidget) {
|
|
|
|
|
return lastSyncMemoryWidget->getType();
|
2019-07-19 19:21:12 +00:00
|
|
|
|
}
|
|
|
|
|
return MemoryWidgetType::Disassembly;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 17:57:07 +00:00
|
|
|
|
QString MainWindow::getUniqueObjectName(const QString &widgetType) const
|
2019-06-18 13:02:41 +00:00
|
|
|
|
{
|
|
|
|
|
QStringList docks;
|
|
|
|
|
docks.reserve(dockWidgets.size());
|
|
|
|
|
QString name;
|
|
|
|
|
for (const auto &it : dockWidgets) {
|
|
|
|
|
name = it->objectName();
|
2019-06-18 17:57:07 +00:00
|
|
|
|
if (name.split(';').at(0) == widgetType) {
|
2019-06-18 13:02:41 +00:00
|
|
|
|
docks.push_back(name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (docks.isEmpty()) {
|
|
|
|
|
return widgetType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int id = 0;
|
|
|
|
|
while (docks.contains(widgetType + ";" + QString::number(id))) {
|
|
|
|
|
id++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return widgetType + ";" + QString::number(id);
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-19 19:21:12 +00:00
|
|
|
|
void MainWindow::showMemoryWidget()
|
|
|
|
|
{
|
2019-09-02 07:34:41 +00:00
|
|
|
|
if (lastSyncMemoryWidget) {
|
|
|
|
|
if (lastSyncMemoryWidget->tryRaiseMemoryWidget()) {
|
2019-07-19 19:21:12 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
showMemoryWidget(MemoryWidgetType::Disassembly);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::showMemoryWidget(MemoryWidgetType type)
|
|
|
|
|
{
|
|
|
|
|
for (auto &dock : dockWidgets) {
|
|
|
|
|
if (auto memoryWidget = qobject_cast<MemoryDockWidget *>(dock)) {
|
|
|
|
|
if (memoryWidget->getType() == type && memoryWidget->getSeekable()->isSynchronized()) {
|
|
|
|
|
memoryWidget->tryRaiseMemoryWidget();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
auto memoryDockWidget = addNewMemoryWidget(type, Core()->getOffset());
|
|
|
|
|
memoryDockWidget->raiseMemoryWidget();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu *MainWindow::createShowInMenu(QWidget *parent, RVA address)
|
|
|
|
|
{
|
|
|
|
|
QMenu *menu = new QMenu(parent);
|
|
|
|
|
for (auto &dock : dockWidgets) {
|
|
|
|
|
if (auto memoryWidget = qobject_cast<MemoryDockWidget *>(dock)) {
|
|
|
|
|
QAction *action = new QAction(memoryWidget->windowTitle(), menu);
|
|
|
|
|
connect(action, &QAction::triggered, this, [this, memoryWidget, address](){
|
|
|
|
|
memoryWidget->getSeekable()->seek(address);
|
|
|
|
|
memoryWidget->raiseMemoryWidget();
|
|
|
|
|
});
|
|
|
|
|
menu->addAction(action);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
menu->addSeparator();
|
|
|
|
|
auto createAddNewWidgetAction = [this, menu, address](QString label, MemoryWidgetType type) {
|
|
|
|
|
QAction *action = new QAction(label, menu);
|
|
|
|
|
connect(action, &QAction::triggered, this, [this, address, type](){
|
2019-08-14 18:47:30 +00:00
|
|
|
|
addNewMemoryWidget(type, address, false);
|
2019-07-19 19:21:12 +00:00
|
|
|
|
});
|
|
|
|
|
menu->addAction(action);
|
|
|
|
|
};
|
|
|
|
|
createAddNewWidgetAction(tr("New disassembly"), MemoryWidgetType::Disassembly);
|
|
|
|
|
createAddNewWidgetAction(tr("New graph"), MemoryWidgetType::Graph);
|
|
|
|
|
createAddNewWidgetAction(tr("New hexdump"), MemoryWidgetType::Hexdump);
|
|
|
|
|
|
|
|
|
|
return menu;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::setCurrentMemoryWidget(MemoryDockWidget *memoryWidget)
|
|
|
|
|
{
|
|
|
|
|
if (memoryWidget->getSeekable()->isSynchronized()) {
|
2019-09-02 07:34:41 +00:00
|
|
|
|
lastSyncMemoryWidget = memoryWidget;
|
2019-07-19 19:21:12 +00:00
|
|
|
|
}
|
2019-09-02 07:34:41 +00:00
|
|
|
|
lastMemoryWidget = memoryWidget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MemoryDockWidget *MainWindow::getLastMemoryWidget()
|
|
|
|
|
{
|
|
|
|
|
return lastMemoryWidget;
|
2019-07-19 19:21:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MemoryDockWidget *MainWindow::addNewMemoryWidget(MemoryWidgetType type, RVA address,
|
|
|
|
|
bool synchronized)
|
|
|
|
|
{
|
|
|
|
|
MemoryDockWidget *memoryWidget = nullptr;
|
|
|
|
|
switch (type) {
|
|
|
|
|
case MemoryWidgetType::Graph:
|
|
|
|
|
memoryWidget = new GraphWidget(this);
|
|
|
|
|
break;
|
|
|
|
|
case MemoryWidgetType::Hexdump:
|
|
|
|
|
memoryWidget = new HexdumpWidget(this);
|
|
|
|
|
break;
|
|
|
|
|
case MemoryWidgetType::Disassembly:
|
|
|
|
|
memoryWidget = new DisassemblyWidget(this);
|
|
|
|
|
break;
|
2019-09-06 05:40:20 +00:00
|
|
|
|
case MemoryWidgetType::Decompiler:
|
|
|
|
|
memoryWidget = new DecompilerWidget(this);
|
2019-07-19 19:21:12 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
auto seekable = memoryWidget->getSeekable();
|
|
|
|
|
seekable->setSynchronization(synchronized);
|
|
|
|
|
seekable->seek(address);
|
|
|
|
|
addExtraWidget(memoryWidget);
|
|
|
|
|
return memoryWidget;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 13:02:41 +00:00
|
|
|
|
void MainWindow::initCorners()
|
|
|
|
|
{
|
|
|
|
|
// TODO: Allow the user to select this option visually in the GUI settings
|
|
|
|
|
// Adjust the DockWidget areas
|
|
|
|
|
|
|
|
|
|
setCorner(Qt::TopLeftCorner, Qt::LeftDockWidgetArea);
|
|
|
|
|
setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea);
|
|
|
|
|
|
|
|
|
|
setCorner(Qt::BottomRightCorner, Qt::BottomDockWidgetArea);
|
|
|
|
|
setCorner(Qt::TopRightCorner, Qt::RightDockWidgetArea);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-10 07:34:21 +00:00
|
|
|
|
void MainWindow::initBackForwardMenu()
|
|
|
|
|
{
|
|
|
|
|
auto prepareButtonMenu = [this](QAction *action) -> QMenu* {
|
|
|
|
|
QToolButton *button = qobject_cast<QToolButton *>(ui->mainToolBar->widgetForAction(action));
|
|
|
|
|
if (!button) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
QMenu *menu = new QMenu(button);
|
|
|
|
|
button->setMenu(menu);
|
|
|
|
|
button->setPopupMode(QToolButton::DelayedPopup);
|
|
|
|
|
button->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
|
connect(button, &QWidget::customContextMenuRequested, button,
|
|
|
|
|
[menu, button] (const QPoint &pos) {
|
|
|
|
|
menu->exec(button->mapToGlobal(pos));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
QFontMetrics metrics(fontMetrics());
|
|
|
|
|
// Roughly 10-16 lines depending on padding size, no need to calculate more precisely
|
|
|
|
|
menu->setMaximumHeight(metrics.lineSpacing() * 20);
|
|
|
|
|
|
|
|
|
|
menu->setToolTipsVisible(true);
|
|
|
|
|
return menu;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (auto menu = prepareButtonMenu(ui->actionBackward)) {
|
|
|
|
|
menu->setObjectName("historyMenu");
|
|
|
|
|
connect(menu, &QMenu::aboutToShow, menu, [this, menu]() {
|
|
|
|
|
updateHistoryMenu(menu, false);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (auto menu = prepareButtonMenu(ui->actionForward)) {
|
|
|
|
|
menu->setObjectName("forwardHistoryMenu");
|
|
|
|
|
connect(menu, &QMenu::aboutToShow, menu, [this, menu]() {
|
|
|
|
|
updateHistoryMenu(menu, true);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::updateHistoryMenu(QMenu *menu, bool redo)
|
|
|
|
|
{
|
|
|
|
|
// Not too long so that whole screen doesn't get covered,
|
|
|
|
|
// not too short so that reasonable length c++ names can be seen most of the time
|
|
|
|
|
const int MAX_NAME_LENGTH = 64;
|
|
|
|
|
|
|
|
|
|
auto hist = Core()->cmdj("sj");
|
|
|
|
|
bool history = true;
|
|
|
|
|
QList<QAction *> actions;
|
|
|
|
|
for (auto item : Core()->cmdj("sj").array()) {
|
|
|
|
|
QJsonObject obj = item.toObject();
|
|
|
|
|
QString name = obj["name"].toString();
|
|
|
|
|
RVA offset = obj["offset"].toVariant().toULongLong();
|
|
|
|
|
bool current = obj["current"].toBool(false);
|
|
|
|
|
if (current) {
|
|
|
|
|
history = false;
|
|
|
|
|
}
|
|
|
|
|
if (history != redo || current) { // Include current in both directions
|
|
|
|
|
QString addressString = RAddressString(offset);
|
|
|
|
|
|
|
|
|
|
QString toolTip = QString("%1 %2").arg(addressString, name); // show non truncated name in tooltip
|
|
|
|
|
|
|
|
|
|
name.truncate(MAX_NAME_LENGTH); // TODO:#1904 use common name shortening function
|
|
|
|
|
QString label = QString("%1 (%2)").arg(name, addressString);
|
|
|
|
|
if (current) {
|
|
|
|
|
label = QString("current position (%1)").arg(addressString);
|
|
|
|
|
}
|
|
|
|
|
QAction *action = new QAction(label, menu);
|
|
|
|
|
action->setToolTip(toolTip);
|
|
|
|
|
actions.push_back(action);
|
|
|
|
|
if (current) {
|
|
|
|
|
QFont font;
|
|
|
|
|
font.setBold(true);
|
|
|
|
|
action->setFont(font);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!redo) {
|
|
|
|
|
std::reverse(actions.begin(), actions.end());
|
|
|
|
|
}
|
|
|
|
|
menu->clear();
|
|
|
|
|
menu->addActions(actions);
|
|
|
|
|
int steps = 0;
|
|
|
|
|
for (QAction *item : menu->actions()) {
|
|
|
|
|
if (redo) {
|
|
|
|
|
connect(item, &QAction::triggered, item, [steps]() {
|
|
|
|
|
for (int i = 0; i < steps; i++) {
|
|
|
|
|
Core()->seekNext();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
connect(item, &QAction::triggered, item, [steps]() {
|
|
|
|
|
for (int i = 0; i < steps; i++) {
|
|
|
|
|
Core()->seekPrev();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
++steps;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 13:02:41 +00:00
|
|
|
|
void MainWindow::addWidget(QDockWidget* widget)
|
|
|
|
|
{
|
|
|
|
|
dockWidgets.push_back(widget);
|
|
|
|
|
for (auto action : widget->actions()) {
|
|
|
|
|
dockWidgetsOfAction.insert(action, widget);
|
|
|
|
|
connect(qobject_cast<CutterDockWidget*>(widget), &CutterDockWidget::closed,
|
|
|
|
|
this, [this]() {
|
|
|
|
|
QDockWidget *widget = qobject_cast<QDockWidget*>(sender());
|
|
|
|
|
dockWidgets.removeOne(widget);
|
|
|
|
|
for (auto action : widget->actions()) {
|
|
|
|
|
dockWidgetsOfAction.remove(action, widget);
|
|
|
|
|
}
|
|
|
|
|
updateDockActionsChecked();
|
|
|
|
|
});
|
2019-07-19 19:21:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::addMemoryDockWidget(MemoryDockWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
connect(widget, &QDockWidget::visibilityChanged, this, [this, widget](bool visibility) {
|
|
|
|
|
if (visibility) {
|
|
|
|
|
setCurrentMemoryWidget(widget);
|
|
|
|
|
}
|
|
|
|
|
});
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 18:22:26 +00:00
|
|
|
|
void MainWindow::removeWidget(QDockWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
dockWidgets.removeAll(widget);
|
2019-09-02 07:34:41 +00:00
|
|
|
|
if (lastSyncMemoryWidget == widget) {
|
|
|
|
|
lastSyncMemoryWidget = nullptr;
|
|
|
|
|
}
|
2019-07-19 19:21:12 +00:00
|
|
|
|
if (lastMemoryWidget == widget) {
|
|
|
|
|
lastMemoryWidget = nullptr;
|
|
|
|
|
}
|
2019-06-18 18:22:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-25 21:22:34 +00:00
|
|
|
|
void MainWindow::updateDockActionChecked(QAction *action)
|
2018-10-16 06:25:09 +00:00
|
|
|
|
{
|
2019-06-18 13:02:41 +00:00
|
|
|
|
auto actions = dockWidgetsOfAction.values(action);
|
|
|
|
|
action->setChecked(!std::accumulate(actions.begin(), actions.end(), false,
|
|
|
|
|
[](bool a, QDockWidget* w) -> bool {
|
|
|
|
|
return a || w->isHidden();
|
|
|
|
|
}));
|
2018-10-16 06:25:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-25 14:30:59 +00:00
|
|
|
|
void MainWindow::showZenDocks()
|
|
|
|
|
{
|
|
|
|
|
const QList<QDockWidget *> zenDocks = { functionsDock,
|
2018-09-30 20:00:44 +00:00
|
|
|
|
dashboardDock,
|
2018-05-25 14:30:59 +00:00
|
|
|
|
stringsDock,
|
2019-05-15 18:45:16 +00:00
|
|
|
|
searchDock,
|
2019-06-18 13:02:41 +00:00
|
|
|
|
importsDock
|
2018-07-18 10:15:10 +00:00
|
|
|
|
};
|
2019-06-18 13:02:41 +00:00
|
|
|
|
int width = functionsDock->maximumWidth();
|
|
|
|
|
functionsDock->setMaximumWidth(200);
|
2018-05-25 14:30:59 +00:00
|
|
|
|
for (auto w : dockWidgets) {
|
2019-06-18 13:02:41 +00:00
|
|
|
|
if (zenDocks.contains(w) ||
|
|
|
|
|
qobject_cast<GraphWidget*>(w) ||
|
|
|
|
|
qobject_cast<HexdumpWidget*>(w) ||
|
|
|
|
|
qobject_cast<DisassemblyWidget*>(w)) {
|
2018-05-25 14:30:59 +00:00
|
|
|
|
w->show();
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-18 13:02:41 +00:00
|
|
|
|
functionsDock->setMaximumWidth(width);
|
2018-05-25 14:30:59 +00:00
|
|
|
|
updateDockActionsChecked();
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-12 15:42:38 +00:00
|
|
|
|
void MainWindow::showDebugDocks()
|
|
|
|
|
{
|
|
|
|
|
const QList<QDockWidget *> debugDocks = { functionsDock,
|
2018-07-18 10:15:10 +00:00
|
|
|
|
stringsDock,
|
|
|
|
|
searchDock,
|
|
|
|
|
stackDock,
|
|
|
|
|
registersDock,
|
|
|
|
|
backtraceDock,
|
2019-10-22 15:51:56 +00:00
|
|
|
|
threadsDock,
|
2018-07-18 10:15:10 +00:00
|
|
|
|
memoryMapDock,
|
|
|
|
|
breakpointDock
|
2018-06-12 15:42:38 +00:00
|
|
|
|
};
|
2019-06-18 13:02:41 +00:00
|
|
|
|
int width = functionsDock->maximumWidth();
|
|
|
|
|
functionsDock->setMaximumWidth(200);
|
2018-06-12 15:42:38 +00:00
|
|
|
|
for (auto w : dockWidgets) {
|
2019-06-18 13:02:41 +00:00
|
|
|
|
if (debugDocks.contains(w) ||
|
|
|
|
|
qobject_cast<GraphWidget*>(w) ||
|
|
|
|
|
qobject_cast<HexdumpWidget*>(w) ||
|
|
|
|
|
qobject_cast<DisassemblyWidget*>(w)) {
|
2018-06-12 15:42:38 +00:00
|
|
|
|
w->show();
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-18 13:02:41 +00:00
|
|
|
|
functionsDock->setMaximumWidth(width);
|
2018-06-12 15:42:38 +00:00
|
|
|
|
updateDockActionsChecked();
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-22 18:06:30 +00:00
|
|
|
|
void MainWindow::enableDebugWidgetsMenu(bool enable)
|
|
|
|
|
{
|
2020-01-29 16:58:05 +00:00
|
|
|
|
for (QAction *action : ui->menuAddDebugWidgets->actions()) {
|
|
|
|
|
// The breakpoints menu should be available outside of debug
|
|
|
|
|
if (!action->text().contains("Breakpoints")) {
|
|
|
|
|
action->setEnabled(enable);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-22 18:06:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-03 17:22:54 +00:00
|
|
|
|
void MainWindow::resetToDefaultLayout()
|
2018-05-25 14:30:59 +00:00
|
|
|
|
{
|
|
|
|
|
hideAllDocks();
|
|
|
|
|
restoreDocks();
|
|
|
|
|
showZenDocks();
|
2018-09-30 20:00:44 +00:00
|
|
|
|
dashboardDock->raise();
|
2018-05-25 14:30:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-12 15:42:38 +00:00
|
|
|
|
void MainWindow::resetToDebugLayout()
|
2019-01-14 08:17:10 +00:00
|
|
|
|
{
|
2019-07-19 19:21:12 +00:00
|
|
|
|
MemoryWidgetType memType = getMemoryWidgetTypeToRestore();
|
2019-01-14 08:17:10 +00:00
|
|
|
|
hideAllDocks();
|
|
|
|
|
restoreDocks();
|
|
|
|
|
showDebugDocks();
|
2019-07-19 19:21:12 +00:00
|
|
|
|
showMemoryWidget(memType);
|
2019-01-14 08:17:10 +00:00
|
|
|
|
|
|
|
|
|
auto restoreStackDock = qhelpers::forceWidth(stackDock->widget(), 400);
|
|
|
|
|
qApp->processEvents();
|
|
|
|
|
restoreStackDock.restoreWidth(stackDock->widget());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::restoreDebugLayout()
|
2018-06-12 15:42:38 +00:00
|
|
|
|
{
|
2019-07-19 19:21:12 +00:00
|
|
|
|
MemoryWidgetType memType = getMemoryWidgetTypeToRestore();
|
2018-07-24 23:12:15 +00:00
|
|
|
|
bool isMaxim = isMaximized();
|
2018-06-12 15:42:38 +00:00
|
|
|
|
hideAllDocks();
|
|
|
|
|
restoreDocks();
|
|
|
|
|
showDebugDocks();
|
2018-07-23 23:12:36 +00:00
|
|
|
|
readDebugSettings();
|
2019-07-19 19:21:12 +00:00
|
|
|
|
showMemoryWidget(memType);
|
2018-07-24 23:12:15 +00:00
|
|
|
|
if (isMaxim) {
|
|
|
|
|
showMaximized();
|
|
|
|
|
} else {
|
|
|
|
|
showNormal();
|
|
|
|
|
}
|
2018-06-12 15:42:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-18 13:02:41 +00:00
|
|
|
|
void MainWindow::resetDockWidgetList()
|
|
|
|
|
{
|
|
|
|
|
QStringList isLeft;
|
|
|
|
|
QList<QWidget*> toClose;
|
|
|
|
|
for (auto it : dockWidgets) {
|
|
|
|
|
if (isLeft.contains(it->metaObject()->className())) {
|
|
|
|
|
toClose.append(it);
|
2019-10-13 14:59:12 +00:00
|
|
|
|
} else if (QRegularExpression("\\A(?:\\w+ \\d+)\\z").match(it->objectName()).hasMatch()) {
|
2019-06-18 13:02:41 +00:00
|
|
|
|
isLeft.append(it->metaObject()->className());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for (auto it : toClose) {
|
|
|
|
|
it->close();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-16 14:09:51 +00:00
|
|
|
|
void MainWindow::on_actionLock_triggered()
|
|
|
|
|
{
|
|
|
|
|
panelLock = !panelLock;
|
|
|
|
|
setPanelLock();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::on_actionLockUnlock_triggered()
|
|
|
|
|
{
|
2018-03-21 20:32:32 +00:00
|
|
|
|
if (ui->actionLockUnlock->isChecked()) {
|
2018-05-04 07:58:32 +00:00
|
|
|
|
for (QDockWidget *dockWidget : findChildren<QDockWidget *>()) {
|
2018-01-16 14:09:51 +00:00
|
|
|
|
dockWidget->setFeatures(QDockWidget::NoDockWidgetFeatures);
|
|
|
|
|
}
|
|
|
|
|
ui->actionLockUnlock->setIcon(QIcon(":/lock"));
|
2018-03-21 20:32:32 +00:00
|
|
|
|
} else {
|
2018-05-04 07:58:32 +00:00
|
|
|
|
for (QDockWidget *dockWidget : findChildren<QDockWidget *>()) {
|
2018-01-16 14:09:51 +00:00
|
|
|
|
dockWidget->setFeatures(QDockWidget::AllDockWidgetFeatures);
|
|
|
|
|
}
|
|
|
|
|
ui->actionLockUnlock->setIcon(QIcon(":/unlock"));
|
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::on_actionFunctionsRename_triggered()
|
|
|
|
|
{
|
2019-03-23 06:32:31 +00:00
|
|
|
|
RenameDialog r(this);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
// Get function based on click position
|
|
|
|
|
//r->setFunctionName(fcn_name);
|
2019-03-23 06:32:31 +00:00
|
|
|
|
r.exec();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-16 14:09:51 +00:00
|
|
|
|
void MainWindow::on_actionDefault_triggered()
|
2017-03-29 10:18:37 +00:00
|
|
|
|
{
|
2019-06-18 13:02:41 +00:00
|
|
|
|
QSettings s;
|
|
|
|
|
restoreState(emptyState);
|
|
|
|
|
|
|
|
|
|
initCorners();
|
|
|
|
|
resetDockWidgetList();
|
|
|
|
|
|
2019-01-14 08:17:10 +00:00
|
|
|
|
if (core->currentlyDebugging) {
|
2019-06-18 13:02:41 +00:00
|
|
|
|
resetToDefaultLayout();
|
|
|
|
|
saveSettings();
|
|
|
|
|
|
2019-01-14 08:17:10 +00:00
|
|
|
|
resetToDebugLayout();
|
|
|
|
|
} else {
|
2019-06-18 13:02:41 +00:00
|
|
|
|
resetToDebugLayout();
|
|
|
|
|
saveDebugSettings();
|
|
|
|
|
|
2019-01-14 08:17:10 +00:00
|
|
|
|
resetToDefaultLayout();
|
|
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 08:17:10 +00:00
|
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* @brief MainWindow::on_actionNew_triggered
|
|
|
|
|
* Open a new Cutter session.
|
|
|
|
|
*/
|
2017-03-29 10:18:37 +00:00
|
|
|
|
void MainWindow::on_actionNew_triggered()
|
|
|
|
|
{
|
2018-06-20 09:24:28 +00:00
|
|
|
|
// Create a new Cutter process
|
2020-04-20 21:22:10 +00:00
|
|
|
|
static_cast<CutterApplication*>(qApp)->launchNewInstance();
|
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
|
|
|
|
}
|
|
|
|
|
|
2017-10-21 19:20:10 +00:00
|
|
|
|
void MainWindow::on_actionSaveAs_triggered()
|
|
|
|
|
{
|
2017-11-03 17:22:54 +00:00
|
|
|
|
saveProjectAs();
|
2017-10-21 19:20:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
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());
|
|
|
|
|
|
2019-02-07 10:52:08 +00:00
|
|
|
|
const QString &fileName = QDir::toNativeSeparators(dialog.getOpenFileName(this,
|
|
|
|
|
tr("Select radare2 script")));
|
2018-11-02 06:48:17 +00:00
|
|
|
|
if (fileName.isEmpty()) // Cancel was pressed
|
2017-04-09 20:36:17 +00:00
|
|
|
|
return;
|
2019-01-28 13:37:20 +00:00
|
|
|
|
|
|
|
|
|
RunScriptTask *runScriptTask = new RunScriptTask();
|
|
|
|
|
runScriptTask->setFileName(fileName);
|
|
|
|
|
|
|
|
|
|
AsyncTask::Ptr runScriptTaskPtr(runScriptTask);
|
|
|
|
|
|
|
|
|
|
AsyncTaskDialog *taskDialog = new AsyncTaskDialog(runScriptTaskPtr, this);
|
|
|
|
|
taskDialog->setInterruptOnClose(true);
|
|
|
|
|
taskDialog->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
|
taskDialog->show();
|
|
|
|
|
|
|
|
|
|
Core()->getAsyncTaskManager()->start(runScriptTaskPtr);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* @brief MainWindow::on_actionOpen_triggered
|
|
|
|
|
* Open a file as in "load (add) a file in current session".
|
|
|
|
|
*/
|
2020-04-07 13:18:41 +00:00
|
|
|
|
void MainWindow::on_actionMap_triggered()
|
2017-03-29 10:18:37 +00:00
|
|
|
|
{
|
2020-04-07 13:20:52 +00:00
|
|
|
|
MapFileDialog dialog(this);
|
2018-06-20 09:24:28 +00:00
|
|
|
|
dialog.exec();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
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,
|
2019-02-07 10:52:08 +00:00
|
|
|
|
tr("Do you really want to clear all settings?"),
|
|
|
|
|
QMessageBox::Ok | QMessageBox::Cancel);
|
2018-03-21 20:32:32 +00:00
|
|
|
|
if (ret == QMessageBox::Ok) {
|
2017-12-03 12:10:09 +00:00
|
|
|
|
Config()->resetAll();
|
2019-03-21 20:14:52 +00:00
|
|
|
|
on_actionDefault_triggered();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-31 21:54:06 +00:00
|
|
|
|
|
|
|
|
|
void MainWindow::on_actionQuit_triggered()
|
|
|
|
|
{
|
|
|
|
|
close();
|
|
|
|
|
}
|
2017-04-12 21:04:39 +00:00
|
|
|
|
|
2018-03-08 09:11:19 +00:00
|
|
|
|
void MainWindow::on_actionBackward_triggered()
|
|
|
|
|
{
|
2018-08-27 11:16:48 +00:00
|
|
|
|
core->seekPrev();
|
2018-03-08 09:11:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-16 14:09:51 +00:00
|
|
|
|
void MainWindow::on_actionForward_triggered()
|
2018-03-08 09:11:19 +00:00
|
|
|
|
{
|
2018-08-27 11:16:48 +00:00
|
|
|
|
core->seekNext();
|
2018-01-16 14:09:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::on_actionDisasAdd_comment_triggered()
|
|
|
|
|
{
|
2019-03-23 06:32:31 +00:00
|
|
|
|
CommentsDialog c(this);
|
|
|
|
|
c.exec();
|
2018-01-16 14:09:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-26 08:52:17 +00:00
|
|
|
|
void MainWindow::on_actionRefresh_contents_triggered()
|
|
|
|
|
{
|
2017-11-19 12:56:10 +00:00
|
|
|
|
refreshAll();
|
2017-05-26 08:52:17 +00:00
|
|
|
|
}
|
2017-08-31 17:43:46 +00:00
|
|
|
|
|
2017-12-14 13:42:24 +00:00
|
|
|
|
void MainWindow::on_actionPreferences_triggered()
|
2017-08-31 17:43:46 +00:00
|
|
|
|
{
|
2017-12-14 13:42:24 +00:00
|
|
|
|
auto dialog = new PreferencesDialog(this);
|
2017-10-01 14:36:40 +00:00
|
|
|
|
dialog->show();
|
2017-09-02 08:17:48 +00:00
|
|
|
|
}
|
2017-10-21 19:20:10 +00:00
|
|
|
|
|
2018-01-16 14:09:51 +00:00
|
|
|
|
void MainWindow::on_actionTabs_triggered()
|
|
|
|
|
{
|
|
|
|
|
tabsOnTop = !tabsOnTop;
|
|
|
|
|
setTabLocation();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::on_actionAbout_triggered()
|
|
|
|
|
{
|
|
|
|
|
AboutDialog *a = new AboutDialog(this);
|
2019-02-06 14:30:29 +00:00
|
|
|
|
a->setAttribute(Qt::WA_DeleteOnClose);
|
2018-01-16 14:09:51 +00:00
|
|
|
|
a->open();
|
|
|
|
|
}
|
2019-04-09 07:44:44 +00:00
|
|
|
|
|
2019-02-07 10:52:08 +00:00
|
|
|
|
void MainWindow::on_actionIssue_triggered()
|
|
|
|
|
{
|
2019-04-09 07:44:44 +00:00
|
|
|
|
openIssue();
|
2019-02-07 10:52:08 +00:00
|
|
|
|
}
|
2018-01-16 14:09:51 +00:00
|
|
|
|
|
|
|
|
|
void MainWindow::on_actionRefresh_Panels_triggered()
|
|
|
|
|
{
|
|
|
|
|
this->refreshAll();
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-27 10:40:26 +00:00
|
|
|
|
void MainWindow::on_actionAnalyze_triggered()
|
|
|
|
|
{
|
2018-08-18 16:04:45 +00:00
|
|
|
|
// TODO: implement this, but do NOT open InitialOptionsDialog!!
|
2018-01-27 10:40:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-16 14:09:51 +00:00
|
|
|
|
void MainWindow::on_actionImportPDB_triggered()
|
|
|
|
|
{
|
|
|
|
|
QFileDialog dialog(this);
|
|
|
|
|
dialog.setWindowTitle(tr("Select PDB file"));
|
|
|
|
|
dialog.setNameFilters({ tr("PDB file (*.pdb)"), tr("All files (*)") });
|
|
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
|
if (!dialog.exec()) {
|
2018-01-16 14:09:51 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-02 06:48:17 +00:00
|
|
|
|
const QString &pdbFile = QDir::toNativeSeparators(dialog.selectedFiles().first());
|
2018-01-16 14:09:51 +00:00
|
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
|
if (!pdbFile.isEmpty()) {
|
2018-08-27 11:16:48 +00:00
|
|
|
|
core->loadPDB(pdbFile);
|
|
|
|
|
core->message(tr("%1 loaded.").arg(pdbFile));
|
2018-11-17 10:10:44 +00:00
|
|
|
|
this->refreshAll();
|
2018-01-16 14:09:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-24 22:36:15 +00:00
|
|
|
|
void MainWindow::on_actionExport_as_code_triggered()
|
|
|
|
|
{
|
|
|
|
|
QStringList filters;
|
|
|
|
|
QMap<QString, QString> cmdMap;
|
|
|
|
|
|
|
|
|
|
filters << tr("C uin8_t array (*.c)");
|
|
|
|
|
cmdMap[filters.last()] = "pc";
|
|
|
|
|
filters << tr("C uin16_t array (*.c)");
|
|
|
|
|
cmdMap[filters.last()] = "pch";
|
|
|
|
|
filters << tr("C uin32_t array (*.c)");
|
|
|
|
|
cmdMap[filters.last()] = "pcw";
|
|
|
|
|
filters << tr("C uin64_t array (*.c)");
|
|
|
|
|
cmdMap[filters.last()] = "pcd";
|
|
|
|
|
filters << tr("C string (*.c)");
|
|
|
|
|
cmdMap[filters.last()] = "pcs";
|
|
|
|
|
filters << tr("Shell-script that reconstructs the bin (*.sh)");
|
|
|
|
|
cmdMap[filters.last()] = "pcS";
|
|
|
|
|
filters << tr("JSON array (*.json)");
|
|
|
|
|
cmdMap[filters.last()] = "pcj";
|
|
|
|
|
filters << tr("JavaScript array (*.js)");
|
|
|
|
|
cmdMap[filters.last()] = "pcJ";
|
|
|
|
|
filters << tr("Python array (*.py)");
|
|
|
|
|
cmdMap[filters.last()] = "pcp";
|
|
|
|
|
filters << tr("Print 'wx' r2 commands (*.r2)");
|
|
|
|
|
cmdMap[filters.last()] = "pc*";
|
2018-10-25 21:22:34 +00:00
|
|
|
|
filters << tr("GAS .byte blob (*.asm, *.s)");
|
2018-08-24 22:36:15 +00:00
|
|
|
|
cmdMap[filters.last()] = "pca";
|
|
|
|
|
filters << tr(".bytes with instructions in comments (*.txt)");
|
|
|
|
|
cmdMap[filters.last()] = "pcA";
|
|
|
|
|
|
|
|
|
|
QFileDialog dialog(this, tr("Export as code"));
|
|
|
|
|
dialog.setAcceptMode(QFileDialog::AcceptSave);
|
|
|
|
|
dialog.setFileMode(QFileDialog::AnyFile);
|
|
|
|
|
dialog.setNameFilters(filters);
|
|
|
|
|
dialog.selectFile("dump");
|
|
|
|
|
dialog.setDefaultSuffix("c");
|
|
|
|
|
if (!dialog.exec())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QFile file(dialog.selectedFiles()[0]);
|
|
|
|
|
if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
|
|
|
|
|
qWarning() << "Can't open file";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
TempConfig tempConfig;
|
|
|
|
|
tempConfig.set("io.va", false);
|
|
|
|
|
QTextStream fileOut(&file);
|
|
|
|
|
QString &cmd = cmdMap[dialog.selectedNameFilter()];
|
2020-03-20 18:14:21 +00:00
|
|
|
|
|
|
|
|
|
// Use cmd because cmdRaw would not handle such input
|
2018-08-24 22:36:15 +00:00
|
|
|
|
fileOut << Core()->cmd(cmd + " $s @ 0");
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-08 11:38:25 +00:00
|
|
|
|
void MainWindow::on_actionGrouped_dock_dragging_triggered(bool checked)
|
|
|
|
|
{
|
2019-10-06 17:35:44 +00:00
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)
|
2019-05-08 11:38:25 +00:00
|
|
|
|
auto options = dockOptions();
|
|
|
|
|
options.setFlag(QMainWindow::DockOption::GroupedDragging, checked);
|
|
|
|
|
setDockOptions(options);
|
2019-10-06 17:35:44 +00:00
|
|
|
|
#else
|
|
|
|
|
Q_UNUSED(checked);
|
|
|
|
|
#endif
|
2019-05-08 11:38:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-30 08:41:14 +00:00
|
|
|
|
void MainWindow::seekToFunctionLastInstruction()
|
|
|
|
|
{
|
|
|
|
|
Core()->seek(Core()->getLastFunctionInstruction(Core()->getOffset()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::seekToFunctionStart()
|
|
|
|
|
{
|
|
|
|
|
Core()->seek(Core()->getFunctionStart(Core()->getOffset()));
|
|
|
|
|
}
|
2018-08-24 22:36:15 +00:00
|
|
|
|
|
2018-11-02 06:48:17 +00:00
|
|
|
|
void MainWindow::projectSaved(bool successfully, const QString &name)
|
2017-10-21 19:20:10 +00:00
|
|
|
|
{
|
2018-11-02 06:48:17 +00:00
|
|
|
|
if (successfully)
|
|
|
|
|
core->message(tr("Project saved: %1").arg(name));
|
|
|
|
|
else
|
|
|
|
|
core->message(tr("Failed to save project: %1").arg(name));
|
2017-10-21 19:20:10 +00:00
|
|
|
|
}
|
2018-03-16 21:46:57 +00:00
|
|
|
|
|
2019-12-13 17:30:55 +00:00
|
|
|
|
void MainWindow::toggleDebugView()
|
2018-06-12 15:42:38 +00:00
|
|
|
|
{
|
2019-12-13 17:30:55 +00:00
|
|
|
|
if (Core()->currentlyDebugging) {
|
|
|
|
|
saveSettings();
|
|
|
|
|
restoreDebugLayout();
|
|
|
|
|
enableDebugWidgetsMenu(true);
|
|
|
|
|
} else {
|
|
|
|
|
saveDebugSettings();
|
|
|
|
|
MemoryWidgetType memType = getMemoryWidgetTypeToRestore();
|
|
|
|
|
hideAllDocks();
|
|
|
|
|
restoreDocks();
|
|
|
|
|
readSettingsOrDefault();
|
|
|
|
|
enableDebugWidgetsMenu(false);
|
|
|
|
|
showMemoryWidget(memType);
|
|
|
|
|
}
|
2018-06-12 15:42:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-13 07:50:01 +00:00
|
|
|
|
void MainWindow::mousePressEvent(QMouseEvent *event)
|
|
|
|
|
{
|
|
|
|
|
switch (event->button()) {
|
|
|
|
|
case Qt::BackButton:
|
2018-08-27 11:16:48 +00:00
|
|
|
|
core->seekPrev();
|
2018-05-13 07:50:01 +00:00
|
|
|
|
break;
|
|
|
|
|
case Qt::ForwardButton:
|
2018-08-27 11:16:48 +00:00
|
|
|
|
core->seekNext();
|
2018-05-13 07:50:01 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MainWindow::eventFilter(QObject *, QEvent *event)
|
|
|
|
|
{
|
|
|
|
|
if (event->type() == QEvent::MouseButtonPress) {
|
2018-07-18 10:15:10 +00:00
|
|
|
|
QMouseEvent *mouseEvent = static_cast<QMouseEvent *>(event);
|
2018-05-13 07:50:01 +00:00
|
|
|
|
if (mouseEvent->button() == Qt::ForwardButton || mouseEvent->button() == Qt::BackButton) {
|
|
|
|
|
mousePressEvent(mouseEvent);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-07 22:03:25 +00:00
|
|
|
|
bool MainWindow::event(QEvent *event)
|
|
|
|
|
{
|
|
|
|
|
if (event->type() == QEvent::FontChange
|
|
|
|
|
|| event->type() == QEvent::StyleChange
|
|
|
|
|
|| event->type() == QEvent::PaletteChange) {
|
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5,10,0)
|
|
|
|
|
QMetaObject::invokeMethod(Config(), "refreshFont", Qt::ConnectionType::QueuedConnection);
|
|
|
|
|
#else
|
|
|
|
|
QMetaObject::invokeMethod(Config(), &Configuration::refreshFont, Qt::ConnectionType::QueuedConnection);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
return QMainWindow::event(event);
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-06 20:30:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* @brief Show a warning message box.
|
2019-02-11 19:05:53 +00:00
|
|
|
|
*
|
|
|
|
|
* This API can either be used in Cutter internals, or by Python plugins.
|
|
|
|
|
*/
|
|
|
|
|
void MainWindow::messageBoxWarning(QString title, QString message)
|
|
|
|
|
{
|
|
|
|
|
QMessageBox mb(this);
|
|
|
|
|
mb.setIcon(QMessageBox::Warning);
|
|
|
|
|
mb.setStandardButtons(QMessageBox::Ok);
|
|
|
|
|
mb.setWindowTitle(title);
|
|
|
|
|
mb.setText(message);
|
|
|
|
|
mb.exec();
|
|
|
|
|
}
|
2019-04-27 17:58:44 +00:00
|
|
|
|
|
|
|
|
|
/**
|
2019-12-08 07:19:58 +00:00
|
|
|
|
* @brief When theme changed, change icons which have a special version for the theme.
|
2019-04-27 17:58:44 +00:00
|
|
|
|
*/
|
|
|
|
|
void MainWindow::chooseThemeIcons()
|
|
|
|
|
{
|
|
|
|
|
// List of QActions which have alternative icons in different themes
|
|
|
|
|
const QList<QPair<void*, QString>> kSupportedIconsNames {
|
|
|
|
|
{ ui->actionForward, QStringLiteral("arrow_right.svg") },
|
|
|
|
|
{ ui->actionBackward, QStringLiteral("arrow_left.svg") },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set the correct icon for the QAction
|
|
|
|
|
qhelpers::setThemeIcons(kSupportedIconsNames, [](void *obj, const QIcon &icon) {
|
|
|
|
|
static_cast<QAction*>(obj)->setIcon(icon);
|
|
|
|
|
});
|
|
|
|
|
}
|
2019-10-12 05:50:10 +00:00
|
|
|
|
|
|
|
|
|
void MainWindow::onZoomIn()
|
|
|
|
|
{
|
|
|
|
|
Config()->setZoomFactor(Config()->getZoomFactor() + 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::onZoomOut()
|
|
|
|
|
{
|
|
|
|
|
Config()->setZoomFactor(Config()->getZoomFactor() - 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::onZoomReset()
|
|
|
|
|
{
|
|
|
|
|
Config()->setZoomFactor(1.0);
|
|
|
|
|
}
|
2020-01-31 10:13:28 +00:00
|
|
|
|
|
|
|
|
|
QMenu *MainWindow::getContextMenuExtensions(ContextMenuType type)
|
|
|
|
|
{
|
|
|
|
|
switch (type) {
|
|
|
|
|
case ContextMenuType::Disassembly:
|
|
|
|
|
return disassemblyContextMenuExtensions;
|
|
|
|
|
case ContextMenuType::Addressable:
|
|
|
|
|
return addressableContextMenuExtensions;
|
|
|
|
|
default:
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|