org.openide.awt.JMenuPlus Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.openide.awt;
import javax.swing.*;
/** A subclass of JMenu which provides workaround for pre-JDK 1.2.2 JMenu positioning problem.
* It assures, that the popup menu gets placed inside visible screen area.
* It also improves placement of popups in the case the subclass lazily changes
* the content from getPopupMenu().
* @deprecated doesn't do anything special anymore - since org.openide.awt 6.5
*/
@Deprecated
public class JMenuPlus extends JMenu {
private static final long serialVersionUID = -7700146216422707913L;
// private static final boolean NO_POPUP_PLACEMENT_HACK = Boolean.getBoolean("netbeans.popup.no_hack"); // NOI18N
public JMenuPlus() {
this(""); // NOI18N
}
public JMenuPlus(String label) {
super(label);
enableInputMethods(false);
getAccessibleContext().setAccessibleDescription(label);
}
// /** Overriden to provide better strategy for placing the JMenu on the screen.
// * @param b a boolean value -- true to make the menu visible, false to hide it
// */
// public void setPopupMenuVisible(boolean b) {
// boolean isVisible = isPopupMenuVisible();
//
// if (b != isVisible) {
// if ((b == true) && isShowing()) {
//// // The order of calls is a provision for subclassers that
//// // change the content of the menu during getPopupMenu()
//// // We compute the origin later with properly filled popup
// JPopupMenu popup = getPopupMenu();
////
//// // HACK[pnejedly]: Notify all the items in the menu we're going to show
//// JInlineMenu.prepareItemsInContainer(popup);
////
//// // End of HACK
//// // HACK[mkleint]: Notify all the items in the menu we're going to show
//// // #40824 - when the text changes, it's too late to update in popup.show() (which triggers the updateState() in the MenuBridge.
//// Actions.prepareMenuBridgeItemsInContainer(popup);
//
// // End of HACK
//// if (NO_POPUP_PLACEMENT_HACK) {
// Point p = super.getPopupMenuOrigin();
// popup.show(this, p.x, p.y);
//// } else {
//// Point p = getPopupMenuOrigin(popup);
//// popup.show(this, p.x, p.y);
//// }
// } else {
// getPopupMenu().setVisible(false);
// }
// }
// }
// /** Overriden to provide better strategy for placing the JMenu on the screen.
// *
// * @return a Point in the coordinate space of the menu instance
// * which should be used as the origin of the JMenu's popup menu.
// */
// protected Point getPopupMenuOrigin(JPopupMenu pm) {
// int x = 0;
// int y = 0;
// Rectangle screenRect = JPopupMenuUtils.getScreenRect();
// Dimension s = getSize();
// Dimension pmSize = pm.getSize();
// int screenRight = screenRect.x + screenRect.width;
// int screenBottom = screenRect.y + screenRect.height;
//
// // For the first time the menu is popped up,
// // the size has not yet been initiated
// if (pmSize.width == 0) {
// pmSize = pm.getPreferredSize();
// }
//
// Point position = getLocationOnScreen();
//
// Container parent = getParent();
//
// if (parent instanceof JPopupMenu) {
// // We are a submenu (pull-right)
// // First determine x:
// if ((position.x + s.width + pmSize.width) < screenRight) {
// x = s.width; // Prefer placement to the right
// } else {
// x = 0 - pmSize.width; // Otherwise place to the left
// }
//
// // Then the y:
// if ((position.y + pmSize.height) < screenBottom) {
// y = 0; // Prefer dropping down
// } else {
// y = s.height - pmSize.height; // Otherwise drop 'up'
// }
// } else {
// // We are a toplevel menu (pull-down)
// // First determine the x:
// if ((position.x + pmSize.width) < screenRight) {
// x = 0; // Prefer extending to right
// } else {
// x = s.width - pmSize.width; // Otherwise extend to left
// }
//
// // Then the y:
// if ((position.y + s.height + pmSize.height) < screenBottom) {
// y = s.height; // Prefer dropping down
// } else {
// y = 0 - pmSize.height; // Otherwise drop 'up'
// }
// }
//
// if (y < -position.y) {
// y = -position.y;
// }
//
// if (x < -position.x) {
// x = -position.x;
// }
//
// return new Point(x, y);
// }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy