All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jidesoft.plaf.windows.WindowsJidePopupMenuUI Maven / Gradle / Ivy

There is a newer version: 3.7.0
Show newest version
/*
 * @(#)WindowsJidePopupMenuUI.java 12/13/2006
 *
 * Copyright 2002 - 2006 JIDE Software Inc. All rights reserved.
 */

package com.jidesoft.plaf.windows;

import com.jidesoft.swing.SimpleScrollPane;
import com.sun.java.swing.plaf.windows.WindowsPopupMenuUI;

import javax.swing.*;
import javax.swing.plaf.ComponentUI;

public class WindowsJidePopupMenuUI extends WindowsPopupMenuUI {
    public WindowsJidePopupMenuUI() {
    }

    public static ComponentUI createUI(JComponent c) {
        return new WindowsJidePopupMenuUI();
    }

    @Override
    public Popup getPopup(JPopupMenu popupMenu, int x, int y) {
        PopupFactory popupFactory = PopupFactory.getSharedInstance();
        SimpleScrollPane contents = new SimpleScrollPane(popupMenu, SimpleScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, SimpleScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
        contents.getScrollUpButton().setOpaque(true);
        contents.getScrollDownButton().setOpaque(true);
        contents.setBorder(BorderFactory.createEmptyBorder());
        return popupFactory.getPopup(popupMenu.getInvoker(), contents, x, y);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy