From dd993ac110b3d098ac2388374b67e45eb4b9bf19 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Wed, 22 Oct 2025 15:13:27 -0400 Subject: Add interactive mode support to the container browser. --- ui/passwordedit.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ui/passwordedit.h') 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 #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); }; -- cgit v1.3.1