I am trying to create a macOS menubar application that will have a text box as the first element. The text box will serve as a search bar to filter other items that will be displayed below it.
It should look very similar to 1password:

This is what I managed:

I accomplished this by creating Status menu
with three elements and creating my own view for the first element in the menu.
However, this approach does not seem to solve my problem. When you click cmd + A
in the search field, the focus moves to the next menu item. This is the default behavior for NSMenu
.
So my question is: is it right to come up with a single-user application or is there a better one?