⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 basicpopupmenuui.java

📁 gcc的组建
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* BasicPopupMenuUI.java   Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package javax.swing.plaf.basic;import java.awt.AWTEvent;import java.awt.Component;import java.awt.Container;import java.awt.Cursor;import java.awt.Dimension;import java.awt.Point;import java.awt.event.ComponentEvent;import java.awt.event.ComponentListener;import java.awt.event.MouseEvent;import javax.swing.BoxLayout;import javax.swing.JComponent;import javax.swing.JLayeredPane;import javax.swing.JMenu;import javax.swing.JMenuItem;import javax.swing.JPopupMenu;import javax.swing.LookAndFeel;import javax.swing.MenuElement;import javax.swing.MenuSelectionManager;import javax.swing.RootPaneContainer;import javax.swing.SwingUtilities;import javax.swing.event.MouseInputListener;import javax.swing.event.PopupMenuEvent;import javax.swing.event.PopupMenuListener;import javax.swing.plaf.ComponentUI;import javax.swing.plaf.PopupMenuUI;/** * UI Delegate for JPopupMenu */public class BasicPopupMenuUI extends PopupMenuUI{  /* popupMenu for which this UI delegate is for*/  protected JPopupMenu popupMenu;  /* MouseInputListener listens to mouse events. Package private for inner classes. */  static transient MouseInputListener mouseInputListener;  /* PopupMenuListener listens to popup menu events fired by JPopupMenu*/  private transient PopupMenuListener popupMenuListener;  /* ComponentListener listening to popupMenu's invoker.   * This is package-private to avoid an accessor method.  */  TopWindowListener topWindowListener;  /**   * Creates a new BasicPopupMenuUI object.   */  public BasicPopupMenuUI()  {    popupMenuListener = new PopupMenuHandler();    topWindowListener = new TopWindowListener();  }  /**   * Factory method to create a BasicPopupMenuUI for the given {@link   * JComponent}, which should be a {@link JMenuItem}.   *   * @param x The {@link JComponent} a UI is being created for.   *   * @return A BasicPopupMenuUI for the {@link JComponent}.   */  public static ComponentUI createUI(JComponent x)  {    return new BasicPopupMenuUI();  }  /**   * Installs and initializes all fields for this UI delegate. Any properties   * of the UI that need to be initialized and/or set to defaults will be   * done now. It will also install any listeners necessary.   *   * @param c The {@link JComponent} that is having this UI installed.   */  public void installUI(JComponent c)  {    super.installUI(c);    popupMenu = (JPopupMenu) c;    popupMenu.setLayout(new DefaultMenuLayout(popupMenu, BoxLayout.Y_AXIS));    popupMenu.setBorderPainted(true);    JPopupMenu.setDefaultLightWeightPopupEnabled(true);    installDefaults();    installListeners();  }  /**   * This method installs the defaults that are defined in  the Basic look   * and feel for this {@link JPopupMenu}.   */  public void installDefaults()  {    LookAndFeel.installColorsAndFont(popupMenu, "PopupMenu.background",                                     "PopupMenu.foreground", "PopupMenu.font");    LookAndFeel.installBorder(popupMenu, "PopupMenu.border");    popupMenu.setOpaque(true);  }  /**   * This method installs the listeners for the {@link JMenuItem}.   */  protected void installListeners()  {    popupMenu.addPopupMenuListener(popupMenuListener);  }  /**   * This method installs the keyboard actions for this {@link JPopupMenu}.   */  protected void installKeyboardActions()  {    // FIXME: Need to implement  }  /**   * Performs the opposite of installUI. Any properties or resources that need   * to be cleaned up will be done now. It will also uninstall any listeners   * it has. In addition, any properties of this UI will be nulled.   *   * @param c The {@link JComponent} that is having this UI uninstalled.   */  public void uninstallUI(JComponent c)  {    uninstallListeners();    uninstallDefaults();    popupMenu = null;  }  /**   * This method uninstalls the defaults and sets any objects created during   * install to null   */  protected void uninstallDefaults()  {    popupMenu.setBackground(null);    popupMenu.setBorder(null);    popupMenu.setFont(null);    popupMenu.setForeground(null);  }  /**   * Unregisters all the listeners that this UI delegate was using.   */  protected void uninstallListeners()  {    popupMenu.removePopupMenuListener(popupMenuListener);  }  /**   * Uninstalls any keyboard actions.   */  protected void uninstallKeyboardActions()  {    // FIXME: Need to implement  }  /**   * This method returns the minimum size of the JPopupMenu.   *   * @param c The JComponent to find a size for.   *   * @return The minimum size.   */  public Dimension getMinimumSize(JComponent c)  {    return null;  }  /**   * This method returns the preferred size of the JPopupMenu.   *   * @param c The JComponent to find a size for.   *   * @return The preferred size.   */  public Dimension getPreferredSize(JComponent c)  {    return null;  }  /**   * This method returns the minimum size of the JPopupMenu.   *   * @param c The JComponent to find a size for.   *   * @return The minimum size.   */  public Dimension getMaximumSize(JComponent c)  {    return null;  }  /**   * Return true if given mouse event is a platform popup trigger, and false   * otherwise   *   * @param e MouseEvent that is to be checked for popup trigger event   *   * @return true if given mouse event is a platform popup trigger, and false   *         otherwise   */  public boolean isPopupTrigger(MouseEvent e)  {    return false;  }  /**   * This listener handles PopupMenuEvents fired by JPopupMenu   */  private class PopupMenuHandler implements PopupMenuListener  {    /**     * This method is invoked when JPopupMenu is cancelled.     *     * @param event the PopupMenuEvent     */    public void popupMenuCanceled(PopupMenuEvent event)    {      MenuSelectionManager manager = MenuSelectionManager.defaultManager();      manager.clearSelectedPath();    }    /**     * This method is invoked when JPopupMenu becomes invisible     *     * @param event the PopupMenuEvent     */    public void popupMenuWillBecomeInvisible(PopupMenuEvent event)    {      // remove listener that listens to component events fired       // by the top - level window that this popup belongs to.      Component invoker = popupMenu.getInvoker();      RootPaneContainer rootContainer = (RootPaneContainer) SwingUtilities                                        .getRoot(invoker);      if (rootContainer != null)        {          ((Container) rootContainer).removeComponentListener(topWindowListener);          // If this popup menu is the last popup menu visible on the screen,          // then          // stop interrupting mouse events in the glass pane before hiding this          // last popup menu.          boolean topLevelMenu = (popupMenu.getInvoker() instanceof JMenu)                                 && ((JMenu) popupMenu.getInvoker()).isTopLevelMenu();          if (topLevelMenu || !(popupMenu.getInvoker() instanceof MenuElement))            {              // set glass pane not to interrupt mouse events and remove              // mouseInputListener              Container glassPane = (Container) rootContainer.getGlassPane();              glassPane.setVisible(false);              glassPane.removeMouseListener(mouseInputListener);              mouseInputListener = null;            }        }    }    /**     * This method is invoked when JPopupMenu becomes visible     *     * @param event the PopupMenuEvent     */    public void popupMenuWillBecomeVisible(PopupMenuEvent event)    {      // Adds topWindowListener to top-level window to listener to       // ComponentEvents fired by it. We need to cancel this popup menu      // if topWindow to which this popup belongs was resized or moved.      Component invoker = popupMenu.getInvoker();      RootPaneContainer rootContainer = (RootPaneContainer) SwingUtilities                                        .getRoot(invoker);      ((Container) rootContainer).addComponentListener(topWindowListener);      // Set the glass pane to interrupt all mouse events originating in root       // container      if (mouseInputListener == null)        {	  Container glassPane = (Container) rootContainer.getGlassPane();	  glassPane.setVisible(true);	  mouseInputListener = new MouseInputHandler(rootContainer);	  glassPane.addMouseListener(mouseInputListener);	  glassPane.addMouseMotionListener(mouseInputListener);        }      // if this popup menu is a free floating popup menu,      // then by default its first element should be always selected when      // this popup menu becomes visible.       MenuSelectionManager manager = MenuSelectionManager.defaultManager();      if (manager.getSelectedPath().length == 0)        {	  // Set selected path to point to the first item in the popup menu	  MenuElement[] path = new MenuElement[2];	  path[0] = popupMenu;	  Component[] comps = popupMenu.getComponents();	  if (comps.length != 0 && comps[0] instanceof MenuElement)	    {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -