I have a screen like so:

+--------+---------------------+
|___A____|                     |
|________| JComponent I am     |
|________|  drawing on         |
|________|    __        __     |
|________|     |        |      |
|________|                     |
|________|    \__________/     |
|________|                     |
|________|                     |
|________|                     |
+--------+---------------------+

And I would like to make it so that when I click the button A a tray is popped up over top of the JComponent I am drawing on? How best to implement this? Through ignoring the layout manager and adding it to my JComponent that I'm using as a canvas or some kind of layered pane?

+--------+---------------------+
|___A____|_Tray__|             |
|________| JComponent I am     |
|________|  drawing on         |
|________|    __        __     |
|________|     |        |      |
|________|                     |
|________|    \__________/     |
|________|                     |
|________|                     |
|________|                     |
+--------+---------------------+

To manke the distinction between JPopupMenu and the proposed tray.

+------+--------------------+
|Button|
+------+
|      |  <--- JPopupMenu
+------+

+------+--------------------+
|Button|____________|  <----- Tray
+------+
link|improve this question

2  
+1 for ASCII art ;) – Thomas Apr 21 '11 at 15:05
Whats a tray? I would guess you can just use a JDialog or JPopupMenu. – camickr Apr 21 '11 at 15:06
A sideways popup menu. Like a JPopupMenu but sideways. – dah Apr 21 '11 at 15:14
Example updated. – dah Apr 21 '11 at 15:20
3  
show() "displays the popup menu at the position x,y in the coordinate space of the component invoker." – trashgod Apr 21 '11 at 15:55
show 2 more comments
feedback

1 Answer

up vote 0 down vote accepted

It looks like the best fit for this is JToolBar as it can be set to horizontal or vertical layout.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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