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 me please ? I've try google but found nothing.

link|improve this question
feedback

4 Answers

up vote 6 down vote accepted

This is way harder in Swing than it needs to be. So instead of pointing you to tutorials I've created a fully working example.

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;

public class ToolbarDemo {

    public static void main(String[] args) {
        final JFrame frame = new JFrame();
        frame.setPreferredSize(new Dimension(600, 400));
        final JToolBar toolBar = new JToolBar();

        //Create the popup menu.
        final JPopupMenu popup = new JPopupMenu();
        popup.add(new JMenuItem(new AbstractAction("Option 1") {
            public void actionPerformed(ActionEvent e) {
                JOptionPane.showMessageDialog(frame, "Option 1 selected");
            }
        }));
        popup.add(new JMenuItem(new AbstractAction("Option 2") {
            public void actionPerformed(ActionEvent e) {
                JOptionPane.showMessageDialog(frame, "Option 2 selected");
            }
        }));

        final JButton button = new JButton("Options");
        button.addMouseListener(new MouseAdapter() {
            public void mousePressed(MouseEvent e) {
                popup.show(e.getComponent(), e.getX(), e.getY());
            }
        });
        toolBar.add(button);

        frame.getContentPane().add(toolBar, BorderLayout.NORTH);
        frame.pack();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }
}
link|improve this answer
I have been doing something like this, but without the JToolBar. Does your solution have the behavior where if you click the button again with the menu up, it pops up the menu again, instead of dismissing it? – Adam Goode Nov 7 '09 at 15:08
1  
I also did something slightly differently: popup.show(c, 0, c.getHeight()); – Adam Goode Nov 7 '09 at 15:09
Thank you. This is the easiest to understand solution that I've found, so I'll use it although it's not exactly a Dropdown JButton.The other solutions are too complicated for me to understand. I've list some of them below. <netbeans.dzone.com/news/drop-down-buttons-swing-new-al pushing-pixels.org/?p=199 – Dikei Nov 7 '09 at 16:15
1  
As far I know, there is no dropdown JButton. You have to craft your own, perhaps by adding an appropriate icon to the JButton. – Steve McLeod Nov 8 '09 at 10:11
feedback

I think it's the same as in AWT.

You should put an ActionCommand on that button and when it's executed show the pop-up menu according to the mouse coordinates.

link|improve this answer
feedback

I'm not sure I understand you correctly but if you want to know how to make toolbars in Swing check this

Java Tutorials: How to Use Tool Bars and this

Java Tutorials: How to Use Actions

link|improve this answer
feedback

See the section Bringing Up a Popup Menu, in How to Use Menus.

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.