Tagged Questions
JPopupMenu is the Java Swing implementation of a popup menu, a small window that pops up and displays a series of choices. A JPopupMenu is used for the menu that appears when the user selects an item on the menu bar. It is also used for "pull-right" menu that appears when the selects a menu item that activates it. Finally, a JPopupMenu can also be used anywhere else you want a menu to appear.
18
votes
3answers
18k views
How do I create a right click context menu in Java Swing?
I'm working on a school project and we want to implement a right click pop-up menu in the gui.
Currently we are doing something like creating a JMenu on right click and setting its location to that ...
6
votes
2answers
340 views
JTable with JPopupMenu
how can I prevent triggering and showing JPopupMenu only if is Mouse Cursor over selected JTable'Row
my question: if is there another way as getBounds from selected row and determine/compare that ...
6
votes
6answers
549 views
How to prevent a disabled JMenuItem from hiding the menu when being clicked?
In my Java swing application i have noticed that when i click on a disabled JMenuItem in a JPopupMenu it hides the menu, but i i do not want to hide it, as if nothing is clicked. Is there a way to ...
6
votes
4answers
3k views
How to create a JButton with a menu?
I want to create a Toolbar for my application.
If you click a button on that toolbar , it will pop-up a menu , just like the toolbar of eclipse.
I don't know how to do it in Swing. Can someone help ...
4
votes
2answers
39 views
Right-click MouseListener on whole JTable component
I'm using Netbeans and I've designed a window with JTable and added MouseEvent listener on JTable component and added this code:
private void productsTableMousePressed(java.awt.event.MouseEvent evt) ...
4
votes
6answers
528 views
Create an inspecting properties window, button driven as a JDialog
What I asked originally didn't clearly state my question/problem, so I will explain it better. I have a JButton that sets a JDialog to visible. The JDialog has a WindowListener that sets it to NOT ...
3
votes
2answers
84 views
Java Popup Button
Note: You may have to compile and run my example to fully understand my question. If this is not kosher, I apologize in advance.
I am trying to create a Swing control that is based on a JToggleButton ...
3
votes
1answer
29 views
How to get the dimension of a JPopupMenu?
I have a TrayIcon with a JPopupMenu attached to it. When I add a JMenuItem to the popup menu, I want to know the dimension of this popup menu. But the dimension is not calculated: getBounds(), ...
3
votes
2answers
57 views
How to get focus in JPopupMenu
I am an experienced Java programmer, but a Swing newbie so please bear with me.
I wish to have a JPopupWindow which has keyboard focus. I want to respond to arrow keys, escape (to close the menu) ...
3
votes
1answer
233 views
Why isn't componentHidden called for my JPopupMenu?
I want to be notified when my JPopupMenu is hidden — whether because an item was selected, the menu was dismissed, or setVisible(false) was called on it. Here is my test code:
import javax.swing.*;
...
3
votes
7answers
3k views
Showing/hiding a JPopupMenu from a JButton; FocusListener not working?
I needed a JButton with an attached dropdown style menu. So I took a JPopupMenu and attached it to the JButton in the way you can see in the code below. What it needs to do is this:
show the popup ...
2
votes
3answers
185 views
Add JPopup menu by right clicking on node in Swing in Java
In GUI,I am displaying one JTree at the left hand side of JPanel. Now for each Node(leaf), on Mouse right click I want to display JPopup menu asking for displaying the statistics about Node in right ...
2
votes
2answers
173 views
How to prevent triggering of other events when closing a JPopupMenu by clicking outside it?
There are some properties of the right-click context menu I would like to replicate with a JPopupMenu:
When menu is open and you click elsewhere, menu closes.
When menu is open and you click ...
2
votes
1answer
149 views
Swing Popup menus are not completely painted
I have this in several areas of an app I'm working on and I can see no way to replicate it outside of this app. I can't create a sscce since I can't manage to replicate this at all - This leads me to ...
2
votes
3answers
288 views
JPopupPanel closed when click on its JPopupMenu
I have a JPopupPanel showing up when a button is clicked.
This JPopupPanel has a JPopupMenu which shows up with the mouse right click, showing different options.
When left button pressed to choose ...
2
votes
2answers
2k views
Find the JTable row on which a popup menu has been invoked
I have a JTable and a popup menu that is specific to each row. I want to calculate the row on which the user right-clicked his mouse (Windows L&F) to bring up the popup menu.
I create a ...
2
votes
1answer
332 views
JTabbedPane tabs
Alright, so I have a JTabbedPane in an application and it has several panels. Is it possible to assign a JPopupMenu to the actual tabs themselves instead of the JPanel? If it is possible, how would I ...
1
vote
2answers
50 views
System Tray Pop up menu item with Image(Icon to the MenuItem)
I read the system tray tutorial and this similar Stack Overflow question but can't find a good answer. I want to add an image to menu item in J2SE application. In the tutorial, MenuItem is used, but ...
1
vote
1answer
26 views
JPopupMenu doesn't dissapear/move when minimising/moving the JFrame it is in
I am making an mp3 player, with several JLists in my JFrame. When I right click on a JList item, a popup with some options for that song appears. But when this popup is visible, and I minimise my ...
1
vote
1answer
53 views
show JPopupMenu when RightClick on a JTextArea in Java?
I'm creating a simple sticky note app. I want to make a JPopupMenu to show when ever I click on the JTextArea . Because it's a sticky note so obviously the whole app will be a textArea
Short Code:
...
1
vote
1answer
27 views
JPopupMenu closes when child popup opens
I have a JComboBox (among other components) inside a JPopupMenu. It turns out that whenever I open the combo box's popup (to select an item), the parent JPopupMenu closes. I've been trying to find a ...
1
vote
0answers
53 views
How can I add a JPopupMenu to the title bar of JFrame?
I need to modify/add a JPopupMenu to the titlebar of a JFrame.
I did that with JInteralFrame using a method from the JComponent class called insert(cmponent, index).
Is there something similar for a ...
1
vote
2answers
88 views
How To Create a Pop Up Menu with Sub Menu in Java
I would like to add right click menu for my program. I added basit menu with the following code:
Pmenu = new JPopupMenu("Menu");
menuItem = new JMenuItem("Sections");
...
1
vote
2answers
125 views
Adding popup menu items to JChart2D's ChartPanel
Is it possible to add menu items to JChart2D's ChartPanel pop up menu, considering the class doesn't actually save the JPopupMenu created by the LayoutFactory?
1
vote
2answers
150 views
JPopupMenu not appearing?
I have a Java applet that will consist of several popup menus that the user will have to interact with. However, the JPopupMenu won't show up when added. Here is my code:
public class Parser extends ...
1
vote
1answer
442 views
Using visual swing JPopup menu in netbeans
i want to add a popup menu to my app but when i add it to my panel i see its disappear.
how i can edit jpopup menu visualy like other menus?
1
vote
2answers
349 views
Java - How to force a JPopupMenu to disable hover effects on its owner JFrame?
When i right click on a JTable in a JFrame I show a JPopupMenu. If I left this JPopupMenu shown as it is and moved with the mouse to the JTable I can still hover on its rows.
This is not the default ...
1
vote
1answer
186 views
Remove from JMenuItem
OK so I finally got the JListMenu thing down with thanks to you guys. However, now I'm trying to make it so SPECIFIC items have SPECIFIC commands. So, like Item 1 won't have the ability to right-click ...
1
vote
1answer
275 views
Adding custom elements to a JPopupMenu
The problem can be stated in two different ways:
1. I have a JPopupMenu where I want to insert a component which is not a JMenuItem (a custom JTree)... but I dont know how to do it
or
2. I have a ...
1
vote
3answers
349 views
JPopupMenu bug/glitch(?) when showing submenu
I have this strange bug with my popup menu. It happens rarely and seemingly randomly. The problem is when I have a submenu in my JPopupMenu - when I select the submenu, main menu disappears and the ...
1
vote
1answer
253 views
Java: Show JPopupMenu without passing an invoker component
When I let popup a JPopupMenu without passing the "invoker component", the menu doesn't work: submenu's don't open and isn't getting repainted. But when I create a completely useless JFrame with a ...
1
vote
1answer
579 views
How to enable ESC-Close for an JPopupMenu, if the underlying window closes on ESC?
Imagine two common situations combined: A JDialog(or JFrame) which closes on VK_ESCAPE (set as key binding on the root pane) and an inner JPopupMenu which is supposed to close on ESC as well. The ...
1
vote
1answer
270 views
How to prevent JPopUpMenu disappearing when checking checkboxes in it?
I want to use JCheckBoxMenuItems in a JPopupMenu. It works, but the problem is that the popup menu disappears when a checkbox item has been checked or unchecked. So if one wants to check/uncheck ...
0
votes
1answer
43 views
jPopUpMenu Change rollover background
I would like to change the background color of my jMenuItems on a rollover event :
Now it's blue, i want it white, how can I do ? (I use netbeans GUI)
Thank you very much.
Regards.
0
votes
1answer
49 views
Get upper left corner position of the JPopupMenu object
I have a JPopupMenu object. Its behavior depends on its coordinates.
How can I get its position relatively to its parent container?
0
votes
2answers
164 views
Java: submenu in jpopupmenu with separators and shortcut keys that appear?
how do you go about adding submenu's to an existing jpopupmenu?
when you right click the jpopupmenu appears, I want to access submenus under another menu.
how do you add separators in the ...
0
votes
1answer
101 views
JPopupMenu Behavior OSX 10.6.7
My problem is when i right click on the JFrame. JPopupMenu show up but if i click anywhere outside the JFrame the menu does not disappear. I have to click somewhere on the JFrame to get rid of it ...
0
votes
0answers
89 views
Flickering JPopUpMenu on right click in Java
Im running an application at a low FPS so i cant constantly edit and draw objects. The program runs on a JPanel which runs at 10 FPS. I would like to be able to right click objects to edit them, but ...
0
votes
1answer
24 views
assigning mouse actions forJPopupMenu
I need small help from you. How can we perform action for mouse popup menu?
I created a JPopupMenu with some menu items for mouse right button in my program.
Suppose....
click the mouse right ...
0
votes
2answers
276 views
Destroy a JPopupMenu in Java Swing
I'm using a JPopupMenu displayed when I do a right click on certain components in my GUI.
Now I have to destroy the popup menu displayed in this 2 situation:
The user click on a menu entry ...
0
votes
1answer
164 views
Submenu in JCombo
The JComboBox has a add(PopUpMenu) and a add(JMenuItem).
My class extends JComboBox. I create a JPopUpMenu, but it fails to display when I click on the JComboBox. Instead, nothing is displayed. Any ...
0
votes
2answers
289 views
An efficient way of adding JMenuItems
OK so before my INV program was to REMOVE menu items but then I was all like.. that's too much. So what if I were to ADD menu items for specific Right-clicked items INSTEAD of removing every time?
...
0
votes
2answers
85 views
One jPopup for several controls
I have code like this:
jTextArea1.add(jPopupMenu1);
jTextArea1.setComponentPopupMenu(jPopupMenu1);
jTextField1.add(jPopupMenu2);
jTextField1.setComponentPopupMenu(jPopupMenu2);
and ...
0
votes
1answer
123 views
How to add a JPopupMenu to a JMenuBar?
I have an application with a popup menu. I'd like to use the popup in the usual way (i.e., it should appear when the user right-clicks anywhere in the window), but I'd also like to attach it to the ...
0
votes
2answers
166 views
How do I make a JPopupMenu appear when a JCheckBox is clicked?
I have a JCheckBox in a program (labeled "Use MiniTimer") that, when right-clicked, shows a JPopupMenu with options "Show on Close", "Show on Minimize", "Show on Close or Minimize", and "Do not use ...
0
votes
1answer
497 views
Issue with JPopupMenu in a JTree
Hi guys
I have this issue. In a custom JTree I implemented a JPopupMenu to display different JMenuItem according to the node selected using a MouseListener.
The JPopupMenu is shown when the mouse ...
0
votes
2answers
479 views
JPopupMenu should not lose focus
Question about JPopupMenu behavior. I would like the JPopupMenu not to loose focus when it comes up. Also when JPopupMenu is in focus, the user should be able to click/update other parts of the ...
0
votes
3answers
41 views
How do I make the main window to react to a table click
I am a new user of Java swing. I need to be able to create a popup with row info when the user clicks on that row. I managed to incorporate the mouseClick event reaction in my table class, and I ...
0
votes
2answers
630 views
Show/Hide JMenuItems in a JPopupMenu based on a JTree's selection
I have a JTree which displays a JPopupMenu when I right click nodes in the JTree. What is the best way to hide/show or enable/disable certain JMenuItems in my JPopupMenu based on the node selected in ...
0
votes
1answer
454 views
How to animate showing of JPopupMenu?
I'd like to show increasingly more of a JPopupMenu so it appears to "slide out". It's not for menu items, where animation doesn't make too much sense. Instead it's for a panel with some real ...