summaryrefslogtreecommitdiff
path: root/ui/reportwidget.h
blob: 0257249071cea41aaf34e8a6241742d3d9be6566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#pragma once

#include <QtWidgets/QWidget>
#include <QtWidgets/QTextBrowser>
#include <QtWidgets/QScrollArea>
#include <QtWebEngineWidgets/QWebEngineView>
#include <QtWebEngineWidgets/QWebEngineScript>
#include <QtWebEngineWidgets/QWebEngineScriptCollection>
#include <QtWebEngineWidgets/QWebEnginePage>
#include <QtWebEngineWidgets/QWebEngineSettings>
#include "binaryninjaapi.h"
#include "action.h"
#include "theme.h"

class WebPage2 : public QWebEnginePage
{
	Q_OBJECT

public:
	WebPage2(QObject *parent = nullptr) : QWebEnginePage(parent) {}

protected:
	virtual bool acceptNavigationRequest(const QUrl &url, QWebEnginePage::NavigationType type, bool isMainFrame);

Q_SIGNALS:
	void linkClicked(const QUrl&);
};

class BINARYNINJAUIAPI ReportWidget: public QScrollArea, public UIActionHandler
{
	Q_OBJECT

	QWebEngineView* 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();
};