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 ...

learn more… | top users | synonyms

0
votes
2answers
36 views

How to directly show a dynamically added item in the popup, without doubleclicking?

I have this PopupMenuListener public class MyPopupMenuListener implements PopupMenuListener { protected JTable _table; public MyPopupMenuListener(JTable table) { _table = table; } @Override ...
0
votes
1answer
20 views

Sharing Components with multiple containers

I have JTabbedPane and each tab has a JTextPane. Each JTextPane has a popup-menu but I want all of them to share the exact same popup-menu. Why? Because when I switch tabs, I want the same options ...
0
votes
2answers
40 views

Make JPopupMenu Display with a Certain Bottom Left Coordinate

Say that I want to make a button in Java in such a way so that when you click on it, a JPopupMenu appears. The relevant code for it appearing is menu.show(button, button.getWidth()/2, ...
0
votes
1answer
48 views

Detecting Keyboard Input while Having a Focus on JpopupMenu (Java)

I would like to know if there is any way to detect a keyboard input while having a focus on JpopupMenu. This is to remove the focus on JPopupMenu whenever there is an input detection from keyboard. Is ...
0
votes
0answers
29 views

jcheckbox popup menu display

I am new to java. By following various sites, I managed to get a popup check box. The link from where i got this used a button - when u click on the button, the popup menu gets displayed with various ...
0
votes
1answer
40 views

Java GUI popup menus

I'm beginner in Java GUI and have a problem to design a popup menu. I have a JPanel and want to have a popup menu with just two alternatives. Here is my code: ActionListener ordermethod = new ...
0
votes
0answers
36 views

right click popup menu is not working properly (in jtable)

its working for first time but after deleting some line it shows blank on popup menu in right click. i think its because of refresh method but i couldn't solve it. private void refresh() { ...
0
votes
0answers
20 views

How to refresh item in o popup menu?

i have a popup menu (that comes out when the user uses right click on specified elements), wich items are readed from a list. I want that when an item is selected, that item is disabled in the ...
0
votes
2answers
44 views

How to add MouseListener to JList model

I have simple sample of code. How can I to add Mouse Listener for displaying simple menu(when i clicked on right mouse button) for selected JList item? In addition: how can I to add Mouse Listener for ...
0
votes
2answers
63 views

JTextField is not editable in a JPopupMenu

When I add a JtextField in a JPopupMenu, I can't edit the text when the popup is displayed. Anyone know why? Here's a code example: public static void main(String[] args) { JFrame frame = ...
1
vote
1answer
33 views

How to disable a specific cell with JPopupmenu's JMenuItem?

I have created a simple JTable and wish to be able to disable a cell after right clicking it and selecting the option in the JPopupMenu with a JMenuItem that will disable the selected cell, here's my ...
0
votes
1answer
32 views

JMenuPopup not accurte?

Image of the problem: http://gyazo.com/56c4f7f5fc10805695fc80de567b92c5.png private JButton settingsButton = new JButton("Settings"); private JPopupMenu settings = new JPopupMenu(); ...
1
vote
0answers
47 views

Part of Pop Up menu in Java Swing appears outside bounds of main Window

I have successfully added a right click pop up menu to my swing application. However, when I click near the bounds of the Window it will overlap onto underlying applications. How do I get it so the ...
0
votes
0answers
49 views

JMenu's pop-up will not close when the cursor leaves the JMenu

JButton jButton1 = new JButton("Click Me"); public void showPopupMenu1(JButton invoker){ JPopupMenu popupMenu = new JPopupMenu(); popupMenu.setLayout(new GridLayout(5, 1)); JMenu menu = ...
1
vote
1answer
47 views

Make JPopupMenu NOT close on item selection

Here's what I want to do. I am making a popup that suggests words, 10 at a time, with the option to display the next 10 suggestions. I designed this as a JPopupMenu with 11 items; 10 suggestions and ...
0
votes
2answers
78 views

JPopupMenu's MenuItems not responding to changes… why?

I noticed that once my JPopupMenu becomes visible for the first time, its MenuItems do not reflect changes made to them for the next visibility. Here is the code; private static void ...
0
votes
1answer
88 views

Custom JMenuItem

Would it be possible to create a custom JMenuItem that contains list of checkbox? Example is the excel filter popup menu: So far, what I've done is like this: JPopupMenu headerPopup = new ...
0
votes
4answers
159 views

JMenuItem.setSelected() does not alter appearance of selected item?

I wish to programmatically cause a particular item on a menu to be selected and to display as such so that if Enter is pressed, the corresponding action will be performed. Ubnfortunately I find that ...
1
vote
1answer
87 views

How do I fire click() event whenever i click on any item in the popupmenu in java?

I want to add a window on clicking the menu item of a right click popupmenu in Java swing(seems like a simple task...but not getting) I got it to partly work by adding a custom menuitem in popupmenu ...
2
votes
0answers
161 views

Java JPopupMenu Mac OS X

i have three problems with a JPopupmenu on Mac, all can be reproduced by the enclosed java program or e.g. the netbeans java application. The first thing is that Java applications don't block the ...
2
votes
1answer
93 views

Creating shortcuts for JMenuItems in JPopupMenu

I need shortcuts for the JMenuItems in JPopupMenu. In the code given below Shortcuts are not working. import java.awt.event.*; import javax.swing.*; import static ...
0
votes
2answers
172 views

JPanel inside PopupMenu

Is there a way to render graphics like JPanel in a PopupMenu (with TrayIcon)? I know it's possible by using JPopupMenu but I do not like that the popup doesn't close if I click outside of it (and the ...
0
votes
1answer
82 views

Is the area too small for JPopupMenu?

In the last question I was asking the community why my JPopupMenu did not appear on the screen. I was unable to come up with a simple , runnable, compilable example. So, here is what I did for you ...
2
votes
2answers
160 views

JPopupMenu on JTable -> Get the cell the menu was created on

I have a situation where I have a popup menu created when a JTable is right clicked on. Standard way of creating the popup menu: aJTable.setComponentPopupMenu(rightClickMenu); Now afterwards in the ...
2
votes
4answers
204 views

getting right click location from popmenu action event

I have a java program that opens a popup menu when right clicked in a JPanel. When any of the popup menu items are clicked, I want to print the location of the right click that triggered the popupmenu ...
0
votes
0answers
91 views

java.awt.IllegalComponentStateException while show JPopMenu

the following exception occurs while i want to show an jpopmenu: Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: component must be showing on the screen to determine ...
0
votes
0answers
172 views

PopupMenu and JTable

I try to create a popup menu that contains a JTable and that can show other popup menu. The JTable has mouse listener so that when a menu item has other item to show a new JPopupMenu is created with ...
1
vote
1answer
246 views

Update SystemTray dynamically in java

Is it possible to add an item to a PopUpMenu in the SystemTray in java? I have tried to add the item to the menu, but that dosen't work. Neither does adding it and call the ...
1
vote
2answers
168 views

MouseListener is giving problems with show() method

I want to display a small context menu when a user right clicks a table row in my application. My plan was to use a custom made MouseListener for this that calls the show() method. Here is my code: ...
0
votes
1answer
245 views

add panel to combobox popup menu

i have jFrame = frame it have jcombobox = combo then i have jpanel = panel i have many component inside this panel i try to add this panel into combobox popupmenu so if combobox clicked, panel ...
3
votes
3answers
549 views

How can i make a JPopupMenu transparent?

I'd like to customize the look of JPopupMenu so i made a custom class extending the JPopupMenu class on i overrode the paintComponent method as i would do for any component i need to customize. ...
9
votes
3answers
582 views

Adding JPopupMenu to the TrayIcon

I want to add JPopupMenu to the task bar as a TrayIcon (i.e systemTray.add(trayIcon)) but I haven't found a way to do so.From the docs the constructor of TrayIcon looks like : public TrayIcon(Image ...
2
votes
4answers
301 views

Swing persistent popup

I need to display a swing popup with my custom component. The popup should stay visible, until I hide it myself, but shouldn't get focus. I have a code written by some other developer that does it in ...
2
votes
1answer
83 views

General help/advice with buttons and popups

Hi and thanks in advance! I've been working on a game project and no I'm looking into making a basic GUI. To put it short this is what I'm trying to achieve: The primary component is a ...
1
vote
1answer
228 views

JPopupMenu remove background and border

I need to remove the background and Border in JPopupMenu. JPopupMenu should be completely transparent. Overriding the paintComponent does not give a positive result. I also tried to find the ...
4
votes
2answers
182 views

How to get the component that invoked a JPopupMenu?

I have a JPopUpMenu that I added to multiple JTables and I would like to get the specific table that's right clicked so I can make changes to it. How can I get the component that triggers the ...
2
votes
0answers
131 views

JMenu consumes focuslost event in Windows7 LAF Java7

If a popup menu is still open when another component is clicked, then the component does not get the event, because it's probably consumed by the popup. This happens for all JPopupmenus in general. ...
2
votes
2answers
169 views

How to catch user choice of jradiobutton in jpopupmenu?

I have been able to show a popup menu in my frame and the menu items, a group of radio buttons may be navigated with the arrow keys. When the user presses Enter/Return the popup menu is no longer ...
0
votes
1answer
419 views

How to make my Popup menu works in Java?

I found a popup menu program and it works standalone. And then I made another program "Note", within which I hope to add the popup menu functionality into. The popup menu part now is below: package ...
0
votes
0answers
341 views

JPopupMenu in JFrame using AWTUtilities.setWindowOpaque(window, false) using synth L&F not appearing

This one has me quite puzzled. Basically I am developing a multi window application using transparent shaped windows using a custom Synth L&F. Parts of the application invoke JFrame/JDialog ...
0
votes
1answer
295 views

Java/Swing/Mac OSX: Converting JMenu to JPopupMenu using ScreenMenuBar

I have an application that has a main GUI with a menubar, and another fullscreen frame, which makes some parts of the main GUI appear in fullscreen exclusive mode. When I am in fullscreen mode, I ...
11
votes
3answers
1k views

Swing and Nimbus: Replace background of JPopupMenu (attached to JMenu)

Nimbus often looks great, but for certain color combinations the result is non-optimal. In my case, the background of a JPopupMenu does not fit, which is why I want to set it manually. I'm on Java 7 ...
2
votes
2answers
259 views

Popup on left click

I am trying to create a popup on a button through the action listener with Java. I have some code, but I can't get it to work, though I think I'm close! This code is from an example but for ...
1
vote
2answers
219 views

Handle JPopupMenu closed

I want to highlight some elements on screen, when one JMenuItem in PopupMenu ist selected(mouse over). So i use MouseListener on my JMenuItem with @Override public void ...
2
votes
4answers
2k views

Open popup(Menu) on task tray icon with left click using java

I am working on task tray Icon in java, I like to open a popup Menu using left click same popup Menu as I open on right click, and please help me with a quick response. Thanks in advance... here is ...
2
votes
1answer
249 views

Open JPopupMenu from opened JComboBox

I'd like to change OOTB behaviour of combobox, to freeze it after right mouse button click (detecting which button was clicked is easy, so that's not the point) and open JPopupMenu istead of choosing ...
3
votes
1answer
126 views

JPopupMenu in Java3d applet does not receive mouse or keyboard input

I have a a Java application that uses Java3D and JPopupMenus filled with JMenuItems. Everything works fine when it runs as a regular application-- the JPopupMenus and everything else behave as ...
0
votes
1answer
325 views

Java PopupMenu Checkbox System Tray

I'm making an application where I want a checkbox in my java popupmenu(shown below) for the option run at start-up. Heres the popupmenu: http://imgur.com/ZiF2Z How do i made the Run at start-up ...
1
vote
1answer
218 views

How do I make a JPopupMenu appear when any one of 3 JButtons is clicked, right-clicked, or dragged upon?

I am trying to make a set of navigation buttons for a file browser. I want it so that if the user clicks the dedicated history button, a JPopupMenu appears. However, I also want that exact same menu ...
1
vote
2answers
1k views

Adding JPopupMenu to JPanel

My code: class PanelGlowny extends JPanel implements ActionListener{} public class Formatka extends JFrame implements ActionListener{ private JMenuItem klienciMenuItem = new JMenuItem("Klienci"); ...

1 2 3