summaryrefslogtreecommitdiff
path: root/ui/passwordedit.h
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2025-10-22 15:13:27 -0400
committerBrian Potchik <brian@vector35.com>2025-10-22 15:13:27 -0400
commitdd993ac110b3d098ac2388374b67e45eb4b9bf19 (patch)
treebaccf6b22c5e0aa9be95229795a80d9fe3c0370f /ui/passwordedit.h
parent551738c693b52b8c383eab629fbc9d81d04d4c4b (diff)
Add interactive mode support to the container browser.
Diffstat (limited to 'ui/passwordedit.h')
-rw-r--r--ui/passwordedit.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ui/passwordedit.h b/ui/passwordedit.h
index f919803b..12db5f5c 100644
--- a/ui/passwordedit.h
+++ b/ui/passwordedit.h
@@ -3,13 +3,21 @@
#include <QtWidgets/QLineEdit>
#include "uitypes.h"
+class ClickableLabel;
+
class BINARYNINJAUIAPI PasswordEdit: public QLineEdit
{
Q_OBJECT
+ ClickableLabel* m_toggleLabel;
+ void updateToggleIcon();
+
public:
PasswordEdit(QWidget* parent = nullptr);
+protected:
+ void resizeEvent(QResizeEvent* event) override;
+
private slots:
void showContextMenu(const QPoint& pos);
};