cutter/src/menus/DisassemblyContextMenu.h

106 lines
2.8 KiB
C
Raw Normal View History

#ifndef DISASSEMBLYCONTEXTMENU_H
#define DISASSEMBLYCONTEXTMENU_H
#include "cutter.h"
#include <QMenu>
#include <QKeySequence>
2017-11-19 17:49:29 +00:00
class DisassemblyContextMenu : public QMenu
{
Q_OBJECT
2017-11-19 17:49:29 +00:00
public:
2017-11-19 17:49:29 +00:00
DisassemblyContextMenu(QWidget *parent = nullptr);
~DisassemblyContextMenu();
2017-12-02 15:43:21 +00:00
signals:
void copy();
public slots:
void setOffset(RVA offset);
2017-12-02 15:43:21 +00:00
void setCanCopy(bool enabled);
2017-11-28 13:50:41 +00:00
private slots:
void aboutToShowSlot();
2017-12-02 15:43:21 +00:00
void on_actionCopy_triggered();
void on_actionAddComment_triggered();
void on_actionCreateFunction_triggered();
void on_actionAddFlag_triggered();
void on_actionRename_triggered();
2017-11-30 14:16:39 +00:00
void on_actionRenameUsedHere_triggered();
void on_actionXRefs_triggered();
void on_actionDisplayOptions_triggered();
void on_actionDeleteComment_triggered();
void on_actionDeleteFlag_triggered();
void on_actionDeleteFunction_triggered();
void on_actionSetBaseBinary_triggered();
void on_actionSetBaseOctal_triggered();
void on_actionSetBaseDecimal_triggered();
void on_actionSetBaseHexadecimal_triggered();
void on_actionSetBasePort_triggered();
void on_actionSetBaseIPAddr_triggered();
void on_actionSetBaseSyscall_triggered();
void on_actionSetBaseString_triggered();
2018-02-12 09:48:06 +00:00
void on_actionSetBits16_triggered();
void on_actionSetBits32_triggered();
void on_actionSetBits64_triggered();
private:
2017-12-02 15:43:21 +00:00
QKeySequence getCopySequence() const;
QKeySequence getCommentSequence() const;
QKeySequence getAddFlagSequence() const;
QKeySequence getRenameSequence() const;
2017-11-30 14:16:39 +00:00
QKeySequence getRenameUsedHereSequence() const;
QKeySequence getXRefSequence() const;
QKeySequence getDisplayOptionsSequence() const;
2017-11-19 17:49:29 +00:00
RVA offset;
2017-12-02 15:43:21 +00:00
bool canCopy;
QList<QAction*> anonymousActions;
2017-12-02 15:43:21 +00:00
QAction actionCopy;
QAction *copySeparator;
2017-11-19 17:49:29 +00:00
QAction actionAddComment;
QAction actionAddFlag;
QAction actionCreateFunction;
QAction actionRename;
2017-11-30 14:16:39 +00:00
QAction actionRenameUsedHere;
QAction actionXRefs;
QAction actionDisplayOptions;
QAction actionDeleteComment;
QAction actionDeleteFlag;
QAction actionDeleteFunction;
2017-11-28 13:50:41 +00:00
QMenu *setBaseMenu;
QAction *setBaseMenuAction;
QAction actionSetBaseBinary;
QAction actionSetBaseOctal;
QAction actionSetBaseDecimal;
QAction actionSetBaseHexadecimal;
QAction actionSetBasePort;
QAction actionSetBaseIPAddr;
QAction actionSetBaseSyscall;
QAction actionSetBaseString;
2018-02-12 09:48:06 +00:00
QMenu *setBitsMenu;
QAction *setBitsMenuAction;
QAction actionSetBits16;
QAction actionSetBits32;
QAction actionSetBits64;
// For creating anonymous entries (that are always visible)
void createAction(QString name, QKeySequence keySequence, const char *slot);
void createAction(QAction *action, QString name, QKeySequence keySequence, const char *slot);
};
#endif // DISASSEMBLYCONTEXTMENU_H