mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 21:06:10 +00:00
41 lines
819 B
C++
41 lines
819 B
C++
#ifndef PSEUDOCODEWIDGET_H
|
|
#define PSEUDOCODEWIDGET_H
|
|
|
|
#include <memory>
|
|
|
|
#include "Cutter.h"
|
|
#include "CutterDockWidget.h"
|
|
|
|
namespace Ui {
|
|
class PseudocodeWidget;
|
|
}
|
|
|
|
class QTextEdit;
|
|
class SyntaxHighlighter;
|
|
|
|
class PseudocodeWidget : public CutterDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PseudocodeWidget(MainWindow *main, QAction *action = nullptr);
|
|
~PseudocodeWidget();
|
|
|
|
private slots:
|
|
void raisePrioritizedMemoryWidget(CutterCore::MemoryWidgetType type);
|
|
void fontsUpdated();
|
|
void colorsUpdatedSlot();
|
|
void refreshPseudocode();
|
|
|
|
private:
|
|
enum DecompilerComboBoxValues { DecompilerCBR2Dec, DecompilerCBPdc };
|
|
std::unique_ptr<Ui::PseudocodeWidget> ui;
|
|
|
|
SyntaxHighlighter *syntaxHighLighter;
|
|
|
|
void doRefresh(RVA addr);
|
|
void setupFonts();
|
|
};
|
|
|
|
#endif // PSEUDOCODEWIDGET_H
|