summaryrefslogtreecommitdiff
path: root/ui/datatypelist.h
blob: 7d802b985c75aa8b4850d29880e9a2b9fcbd58e0 (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
#pragma once

#include <QtWidgets/QLabel>
#include <string>
#include "viewframe.h"
#include "menus.h"

/*!

    \ingroup uiapi
*/
class BINARYNINJAUIAPI DataTypeList : public MenuHelper
{
	Q_OBJECT

	FileContext* m_context = nullptr;
	QString m_currentType;
	std::string m_currentDataType;

  public:
	DataTypeList(QWidget* parent);

	void setCurrentViewType(ViewFrame* view, const QString& type);

  protected:
	virtual void showMenu();

  Q_SIGNALS:
	void viewChanged(QString type);
};