summaryrefslogtreecommitdiff
path: root/ui/passwordedit.h
blob: f919803bf8b4196a53aaca4cab7bc456d90ae933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <QtWidgets/QLineEdit>
#include "uitypes.h"

class BINARYNINJAUIAPI PasswordEdit: public QLineEdit
{
	Q_OBJECT

public:
	PasswordEdit(QWidget* parent = nullptr);

private slots:
	void showContextMenu(const QPoint& pos);
};