X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fgui%2FMainwindow.hxx;h=7084e2fec3c6995adb2256d7d208b4db4b6c08f2;hp=40fa81d5f50de269927da297be9bbf6c37de8943;hb=083a8802e608a69d622ff5cda5d21ff61e289a85;hpb=231dae075375e7d57982f5107b86294fbe726b33 diff --git a/src/gui/Mainwindow.hxx b/src/gui/Mainwindow.hxx index 40fa81d..7084e2f 100644 --- a/src/gui/Mainwindow.hxx +++ b/src/gui/Mainwindow.hxx @@ -4,12 +4,15 @@ #include #include #include + #include #include #include #include #include +#include + #include "disassembler/Disassembler.hxx" #include "widgets/BasicBlockWidget.hxx" #include "widgets/ScriptingDock.hxx" @@ -19,8 +22,10 @@ class Mainwindow : public QMainWindow { Q_OBJECT public: Mainwindow(InformationManager* mgr); + private: void addFunction(Function* fun); + void setGlobalHotkeys(); QTextEdit *textEdit; QPushButton *quitButton; @@ -36,11 +41,22 @@ private: QAction *openAction; std::map blocks; + std::map objects_list; + std::map objects_list_by_address; std::set functions; InformationManager* manager; + + log4cxx::LoggerPtr logger; +public Q_SLOTS: + void switchMainPlaneToAddress(uint64_t); + void requestNewFunctionByAddress(uint64_t address); private Q_SLOTS: void quit(); void open(); + void switchMainPlane(int); + void showListContextMenu(const QPoint&); + void requestNewFunction(); + void renameFunction(QListWidgetItem * item); }; #endif /* INCLUDE__Mainwindow_hxx_ */