diff options
| author | Rusty Wagner <rusty@vector35.com> | 2019-03-19 15:41:08 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2019-03-20 13:00:17 -0400 |
| commit | 411acbaa4a1d217e731d3df0b189445117be3b26 (patch) | |
| tree | 49b5c5290058ffb98dd23ec9a7c1a49921254d15 /ui/commentdialog.h | |
| parent | ca1bc587c22928bbd7198813064c9615c3c12771 (diff) | |
Add in progress UI API headers
Diffstat (limited to 'ui/commentdialog.h')
| -rw-r--r-- | ui/commentdialog.h | 18 |
1 files changed, 18 insertions, 0 deletions
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 <QtWidgets/QDialog> +#include <QtWidgets/QComboBox> +#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(); +}; |
