Java JPopupMenu addPopup(final Component c, final JPopupMenu m)

Here you can find the source of addPopup(final Component c, final JPopupMenu m)

Description

add Popup

License

Open Source License

Declaration

public static final void addPopup(final Component c, final JPopupMenu m) 

Method Source Code

//package com.java2s;
/*/*  w  w w .ja  v  a  2s  .  c  o  m*/
 * Copyright (C) 2006-2011 by Olivier Chafik (http://ochafik.com)
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

import java.awt.Component;

import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;

import javax.swing.JPopupMenu;

public class Main {
    public static final void addPopup(final Component c, final JPopupMenu m) {
        c.addMouseListener(new MouseAdapter() {
            public void mousePressed(MouseEvent e) {
                if (e.isPopupTrigger())
                    m.show(c, e.getX(), e.getY());
            }
        });
    }
}

Related

  1. addMenuItem(JPopupMenu menu, Action action)
  2. addMenuItems(JPopupMenu menu, JComponent... items)
  3. addOption(JPopupMenu popupMenu, String text, String key, ActionListener actionListener)
  4. addPopup(Component component, final JPopupMenu popup)
  5. addPopup(Component component, final JPopupMenu popup)
  6. addSeparatorIfNecessary(JPopupMenu popup)
  7. addSeparatorIfNecessary(JPopupMenu popup)
  8. addSeparatorIfNeeded(JPopupMenu popupMenu)
  9. applyDefaultProperties(final JPopupMenu comp)