summaryrefslogtreecommitdiff
path: root/ui/reportwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/reportwidget.h')
-rw-r--r--ui/reportwidget.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/ui/reportwidget.h b/ui/reportwidget.h
new file mode 100644
index 00000000..22d51604
--- /dev/null
+++ b/ui/reportwidget.h
@@ -0,0 +1,33 @@
+#pragma once
+
+#include <QtWidgets/QWidget>
+#include <QtWidgets/QTextBrowser>
+#include <QtWidgets/QScrollArea>
+#include "binaryninjaapi.h"
+#include "action.h"
+
+class BINARYNINJAUIAPI ReportWidget: public QScrollArea, public UIActionHandler
+{
+ Q_OBJECT
+
+ QTextBrowser* m_contents;
+ BinaryViewRef m_view;
+ std::string m_original;
+ std::string m_title;
+ BNReportType m_type;
+ std::string m_plaintext;
+
+private Q_SLOTS:
+ void onLinkClicked(QUrl url);
+
+public:
+ ReportWidget(QWidget* parent, BinaryViewRef view, const std::string& contents,
+ BNReportType type, const std::string& title, const std::string& plaintext = "");
+ std::string getContents() const { return m_original; }
+ std::string getTitle() const { return m_title; }
+ BNReportType getType() const { return m_type; }
+ std::string getPlainText() const { return m_plaintext; }
+
+ void save();
+ void saveAs();
+};