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/commentdialog.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ui/commentdialog.h (limited to 'ui/commentdialog.h') diff --git a/ui/commentdialog.h b/ui/commentdialog.h new file mode 100644 index 00000000..803fcd3b --- /dev/null +++ b/ui/commentdialog.h @@ -0,0 +1,18 @@ +#pragma once + +#include +#include +#include "binaryninjaapi.h" +#include "dialogtextedit.h" +#include "uicontext.h" + +class BINARYNINJAUIAPI CommentDialog: public QDialog +{ + Q_OBJECT + + DialogTextEdit* m_comment; + +public: + CommentDialog(QWidget* parent, const QString& comment = ""); + QString getComment(); +}; -- cgit v1.3.1