From 411acbaa4a1d217e731d3df0b189445117be3b26 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Tue, 19 Mar 2019 15:41:08 -0400 Subject: Add in progress UI API headers --- ui/reportwidget.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 ui/reportwidget.h (limited to 'ui/reportwidget.h') 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 +#include +#include +#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(); +}; -- cgit v1.3.1