2017-03-29 10:18:37 +00:00
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
2017-05-13 16:46:30 +00:00
|
|
|
#include "radarewebserver.h"
|
2017-07-02 11:11:02 +00:00
|
|
|
#include "iaitorcore.h" // only needed for ut64
|
2017-04-13 15:36:20 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QList>
|
|
|
|
|
2017-07-02 11:11:02 +00:00
|
|
|
class IaitoRCore;
|
2017-04-13 15:36:20 +00:00
|
|
|
class DockWidget;
|
|
|
|
class Omnibar;
|
|
|
|
class MemoryWidget;
|
|
|
|
class Notepad;
|
|
|
|
class SideBar;
|
|
|
|
class Highlighter;
|
|
|
|
class AsciiHighlighter;
|
|
|
|
class GraphicsBar;
|
|
|
|
class FunctionsWidget;
|
|
|
|
class ImportsWidget;
|
2017-05-19 07:45:26 +00:00
|
|
|
class ExportsWidget;
|
2017-04-13 15:36:20 +00:00
|
|
|
class SymbolsWidget;
|
|
|
|
class RelocsWidget;
|
|
|
|
class CommentsWidget;
|
|
|
|
class StringsWidget;
|
|
|
|
class FlagsWidget;
|
|
|
|
class Dashboard;
|
|
|
|
class QLineEdit;
|
|
|
|
class SdbDock;
|
|
|
|
class QAction;
|
|
|
|
class SectionsDock;
|
2017-04-26 23:00:20 +00:00
|
|
|
class ConsoleWidget;
|
2017-07-13 18:49:12 +00:00
|
|
|
class EntrypointWidget;
|
2017-04-13 15:36:20 +00:00
|
|
|
|
|
|
|
class QDockWidget;
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class MainWindow;
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-07-02 11:11:02 +00:00
|
|
|
IaitoRCore *core;
|
2017-04-13 15:36:20 +00:00
|
|
|
MemoryWidget *memoryDock;
|
|
|
|
Notepad *notepadDock;
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
bool responsive;
|
|
|
|
|
2017-05-13 18:09:36 +00:00
|
|
|
explicit MainWindow(QWidget *parent = 0);
|
2017-04-01 01:56:35 +00:00
|
|
|
~MainWindow();
|
|
|
|
|
2017-07-24 11:05:28 +00:00
|
|
|
void openFile(const QString &fn, int anal_level = -1, QList<QString> advanced = QList<QString>());
|
2017-05-13 18:09:36 +00:00
|
|
|
void initUI();
|
|
|
|
void finalizeOpen();
|
|
|
|
|
|
|
|
void applySettings();
|
|
|
|
|
|
|
|
void saveProject();
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
void start_web_server();
|
|
|
|
void closeEvent(QCloseEvent *event);
|
|
|
|
void readSettings();
|
2017-04-28 13:38:01 +00:00
|
|
|
void setFilename(const QString &fn);
|
2017-04-28 13:09:40 +00:00
|
|
|
//void setCore(QRCore *core);
|
|
|
|
void seek(const QString &offset, const QString &name = NULL, bool raise_memory_dock = false);
|
|
|
|
void seek(const RVA offset, const QString &name = NULL, bool raise_memory_dock = false);
|
2017-03-29 10:18:37 +00:00
|
|
|
void updateFrames();
|
|
|
|
void refreshFunctions();
|
|
|
|
void refreshComments();
|
2017-04-26 23:00:20 +00:00
|
|
|
void addOutput(const QString &msg);
|
|
|
|
void addDebugOutput(const QString &msg);
|
|
|
|
void sendToNotepad(const QString &txt);
|
2017-04-01 01:56:35 +00:00
|
|
|
void setWebServerState(bool start);
|
2017-04-13 15:36:20 +00:00
|
|
|
void raiseMemoryDock();
|
|
|
|
void toggleSideBarTheme();
|
2017-04-27 18:59:27 +00:00
|
|
|
void refreshOmniBar(const QStringList &flags);
|
2017-04-01 01:56:35 +00:00
|
|
|
|
2017-04-28 13:09:40 +00:00
|
|
|
signals:
|
2017-07-11 11:05:42 +00:00
|
|
|
void globalSeekTo(RVA address);
|
2017-04-28 13:09:40 +00:00
|
|
|
void cursorAddressChanged(RVA address);
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
public slots:
|
|
|
|
|
|
|
|
void dark();
|
|
|
|
|
|
|
|
void def_theme();
|
|
|
|
|
2017-07-13 18:49:12 +00:00
|
|
|
void on_actionEntry_points_triggered();
|
2017-03-29 10:18:37 +00:00
|
|
|
void on_actionFunctions_triggered();
|
|
|
|
void on_actionImports_triggered();
|
2017-05-19 07:45:26 +00:00
|
|
|
void on_actionExports_triggered();
|
2017-03-29 10:18:37 +00:00
|
|
|
void on_actionSymbols_triggered();
|
|
|
|
void on_actionReloc_triggered();
|
|
|
|
void on_actionStrings_triggered();
|
|
|
|
void on_actionSections_triggered();
|
|
|
|
void on_actionFlags_triggered();
|
|
|
|
void on_actionComents_triggered();
|
|
|
|
void on_actionNotepad_triggered();
|
|
|
|
|
|
|
|
void on_actionLock_triggered();
|
|
|
|
|
|
|
|
void on_actionLockUnlock_triggered();
|
|
|
|
|
|
|
|
void on_actionTabs_triggered();
|
|
|
|
|
|
|
|
void on_actionhide_bottomPannel_triggered();
|
|
|
|
|
|
|
|
void lockUnlock_Docks(bool what);
|
|
|
|
|
|
|
|
void on_actionDashboard_triggered();
|
|
|
|
|
|
|
|
void on_actionDark_Theme_triggered();
|
|
|
|
|
|
|
|
void on_actionRun_Script_triggered();
|
|
|
|
|
|
|
|
void toggleResponsive(bool maybe);
|
|
|
|
|
2017-04-05 09:35:19 +00:00
|
|
|
void on_backButton_clicked();
|
|
|
|
|
2017-05-26 08:52:17 +00:00
|
|
|
void refreshVisibleDockWidgets();
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
private slots:
|
|
|
|
|
|
|
|
void on_actionMem_triggered();
|
|
|
|
|
|
|
|
void on_actionAbout_triggered();
|
|
|
|
|
|
|
|
void on_actionRefresh_Panels_triggered();
|
|
|
|
|
|
|
|
void on_actionCalculator_triggered();
|
|
|
|
|
|
|
|
void on_actionCreate_File_triggered();
|
|
|
|
|
|
|
|
void on_actionAssembler_triggered();
|
|
|
|
|
|
|
|
void on_actionStart_Web_Server_triggered();
|
|
|
|
|
|
|
|
void on_actionDisasAdd_comment_triggered();
|
|
|
|
|
|
|
|
void restoreDocks();
|
|
|
|
|
|
|
|
void on_actionDefaut_triggered();
|
|
|
|
|
|
|
|
void hideAllDocks();
|
|
|
|
|
|
|
|
void showDefaultDocks();
|
|
|
|
|
|
|
|
void on_actionFunctionsRename_triggered();
|
|
|
|
|
|
|
|
void on_actionNew_triggered();
|
|
|
|
|
|
|
|
void on_actionSave_triggered();
|
|
|
|
|
|
|
|
void on_actionWhite_Theme_triggered();
|
|
|
|
|
|
|
|
void on_actionSDB_browser_triggered();
|
|
|
|
|
|
|
|
void on_actionLoad_triggered();
|
|
|
|
|
|
|
|
void on_actionShow_Hide_mainsidebar_triggered();
|
|
|
|
|
|
|
|
void on_actionForward_triggered();
|
|
|
|
|
|
|
|
void on_actionTabs_on_Top_triggered();
|
|
|
|
|
|
|
|
void on_actionReset_settings_triggered();
|
|
|
|
|
2017-03-31 21:54:06 +00:00
|
|
|
void on_actionQuit_triggered();
|
|
|
|
|
2017-05-26 08:52:17 +00:00
|
|
|
void on_actionRefresh_contents_triggered();
|
2017-04-12 21:04:39 +00:00
|
|
|
|
2017-08-31 17:43:46 +00:00
|
|
|
void on_actionDisplay_Esil_triggered();
|
|
|
|
|
|
|
|
void on_actionDisplay_Pseudocode_triggered();
|
|
|
|
|
2017-09-01 13:03:35 +00:00
|
|
|
void on_actionDisplay_Offsets_triggered();
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
private:
|
2017-04-13 15:36:20 +00:00
|
|
|
QDockWidget *asmDock;
|
|
|
|
QDockWidget *calcDock;
|
|
|
|
Omnibar *omnibar;
|
|
|
|
SideBar *sideBar;
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
bool doLock;
|
2017-04-28 13:09:40 +00:00
|
|
|
void refreshMem();
|
2017-03-29 10:18:37 +00:00
|
|
|
ut64 hexdumpTopOffset;
|
|
|
|
ut64 hexdumpBottomOffset;
|
|
|
|
QString filename;
|
2017-04-13 15:36:20 +00:00
|
|
|
QList<DockWidget *> dockWidgets;
|
2017-03-29 10:18:37 +00:00
|
|
|
Ui::MainWindow *ui;
|
|
|
|
Highlighter *highlighter;
|
|
|
|
AsciiHighlighter *hex_highlighter;
|
|
|
|
GraphicsBar *graphicsBar;
|
2017-07-13 18:49:12 +00:00
|
|
|
EntrypointWidget *entrypointDock;
|
2017-03-29 10:18:37 +00:00
|
|
|
FunctionsWidget *functionsDock;
|
|
|
|
ImportsWidget *importsDock;
|
2017-05-19 07:45:26 +00:00
|
|
|
ExportsWidget *exportsDock;
|
2017-03-29 10:18:37 +00:00
|
|
|
SymbolsWidget *symbolsDock;
|
|
|
|
RelocsWidget *relocsDock;
|
|
|
|
CommentsWidget *commentsDock;
|
|
|
|
StringsWidget *stringsDock;
|
|
|
|
FlagsWidget *flagsDock;
|
|
|
|
Dashboard *dashboardDock;
|
|
|
|
QLineEdit *gotoEntry;
|
|
|
|
SdbDock *sdbDock;
|
|
|
|
QAction *sidebar_action;
|
2017-04-12 10:16:43 +00:00
|
|
|
SectionsDock *sectionsDock;
|
2017-04-26 23:00:20 +00:00
|
|
|
ConsoleWidget *consoleWidget;
|
2017-05-13 16:39:37 +00:00
|
|
|
RadareWebServer webserver;
|
2017-04-28 13:09:40 +00:00
|
|
|
|
|
|
|
RVA cursor_address;
|
|
|
|
|
2017-05-13 18:09:36 +00:00
|
|
|
void openProject(const QString &project_name);
|
2017-07-24 11:05:28 +00:00
|
|
|
void openNewFile(const QString &fn, int anal_level, QList<QString> advanced);
|
2017-05-13 18:09:36 +00:00
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
void toggleDockWidget(DockWidget *dock_widget);
|
|
|
|
|
2017-04-28 13:09:40 +00:00
|
|
|
public:
|
|
|
|
RVA getCursorAddress() const { return cursor_address; }
|
|
|
|
void setCursorAddress(RVA addr);
|
2017-05-13 18:09:36 +00:00
|
|
|
|
|
|
|
QString getFilename() const { return filename; }
|
2017-03-29 10:18:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINWINDOW_H
|