Tagged Questions

21
votes
3answers
19k 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
474 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
627 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
4k 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
79 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
569 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
120 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
34 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
74 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
253 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
4k 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
233 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
199 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
158 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
334 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
373 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
41 views

Adding vertical scroll to a JPopupMenu?

I would like to add a way to scroll through menu items in a JPopupMenu, much like scrolling through a list of items in a JComboBox. Let's say I have 10 menu items. I would like to display only 5 menu ...
1
vote
2answers
88 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
85 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
42 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
59 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
110 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
149 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
167 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
520 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
365 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
215 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
292 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
384 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
276 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
604 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
364 views

JTable design to synchronize with back-end data-structure

I have a JTable which is loaded from a data-structure using table model.The data-structure is of the format NavigableMap<Float,NavigableMap<Float,Boolean>>.An example data is: Table ...
0
votes
0answers
12 views

How to create JPopupMenu From Custom Tree

The method below creates Custom Data Tree from A String. I am working on a method that generates pop-up menu with many submenus. Basically these menus given dynamically so I have an algorithm to ...
0
votes
2answers
33 views

Get jTable row number from popup item

I have a jTable as from the attached picture Right click on a row starts a jPopup, with a single item "Thread Stop". I would like to return the row number by clicking on this menu item How to ...
0
votes
3answers
71 views

Java rowAtPoint() does not return a proper value

I am making a java project and i am using JTable. The thing i want to do is link a popupmenu to the jtable. The popupmenu has four different items. Some of the items need to know selected row in ...
0
votes
1answer
59 views

Open popupMenu only on mouse-click Swing

I have a question related with JPopupMenu that maybe someone can help me. As far as I can see, a JPopupMenu opens when you press a JMenu (is this is in a JMenuBar) or when you hover over a JMenu (if ...
0
votes
1answer
67 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
59 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
200 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
110 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
97 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
2answers
310 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
172 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
315 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
90 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
2answers
178 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
536 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
518 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
43 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 ...

1 2