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 have the row info available. How can I notify the main window about the event so it can display the dialog box/popup box?

link|improve this question
1  
Hi Ayelet. It is very difficult to help if you don't post the code in question. Can you edit your question and add the code you are having problems with? – Oded May 7 '10 at 14:21
1  
Why are you asking new questions without first accepting answers you receive in your other questions? That is not a good way to encourage help in the future. – camickr May 7 '10 at 14:59
I edited your code in your previous post; it might guide you to posting readably. – trashgod May 7 '10 at 17:48
feedback

3 Answers

Just call a method on the main window to perform the action

link|improve this answer
feedback

There are several ways to handle this:

1) You can have the custom table class have a custom listener on it (Observer Pattern) which it then calls whenever the click occurs

2) You can have the table call a method on the main window - i.e. pass in the main window as part of the construction of the table

3) You can have the main Window register as a listener to the table (i.e. a mouse listener) and have it handle the events instead.

There are others, I am sure. These are the ones I have seen most often used. Depending on the size, scope and intent of the software being written, each has it's merits and detriments. Is this a project for school, a toy being written to learn about Swing, or is it designed to be a longer term, larger project? If it is the latter, I would recommend looking up Model View Controller (MVC) architecture discussions, as it can make, long term, the maintenance of the code much easier, in my experience.

Good luck.

link|improve this answer
Thank you very much for your hints. I used the second idea, though I couldn't send the window in the table constructor (it doesn't allow it in static functions such as main). I sent instead the class that handles all the data uploading and editing which is a member of my main window. And it works... – Ayelet May 7 '10 at 16:09
@Ayelet: just as a point of note: it is considered good etiquette on the site to select as answered if someone answered your question. Glad I could help with your problem. – aperkins May 7 '10 at 16:28
feedback

You can do it like this:

myTable.addMouseListener(new MouseAdapter() {
        public void mouseReleased(MouseEvent e) {
            if(SwingUtilities.isRightMouseButton(e)) {
                int index = myTable.rowAtPoint(e.getPoint());
                JPopupMenu popup = new JPopupMenu();
                popup.add(myMenuAction);
                popup.show(e.getComponent(), e.getX(), e.getY());
            }
        }
});

And then implement an Action myMenuAction where you use the index from your table.

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.