Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

OSX apps have a Help menu on the right of the menu bar. When the Help menu is click, a menu opens with a search box at the top and a few menu items under it.

How can this be achieved in a Java Swing app?

share|improve this question
Have you taken a look at any open-source Java-made application popular among Mac users (I don't know any as I am not a Mac user)? – Ivan Mar 13 '12 at 18:15

2 Answers

up vote 1 down vote accepted

Just add a JMenu with the name set to "Help" and add it to the JMenuBar. At least in my application running on an english OS X (Snow Leopard and Lion, Java 6), the search field is automatically added to the Help menu by the system. Did you already try this? If it did not work, what Java version and OS version do you use?

share|improve this answer
cello, you are indeed correct. The Search box has appeared. Well done and thanks. – Lyndon Mar 13 '12 at 23:07

If you're going to write Java code then trying to make the UI look like anyone particular OS is not such a good idea - it isn't going to look right to other users.

By default menu items are buttons. You might be able to derive a class from JMenuItem that adds a text box into its client area, while retaining button click functionlity for the 'Search' icon. I have no idea whether this will actually work, so consider this a disclaimer.

+--- Bounds of normal JMenuItem ---+
|+-------------------------+ Search|
||          JTextField     |  icon |
|+-------------------------+       |
+----------------------------------+
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.