Java Code Examples for javax.swing.JMenu#getHeight()
The following examples show how to use
javax.swing.JMenu#getHeight() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: bug8071705.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }
Example 2
Source File: bug8071705.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }
Example 3
Source File: bug8071705.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }
Example 4
Source File: bug8071705.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }
Example 5
Source File: bug8071705.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }
Example 6
Source File: bug8071705.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }
Example 7
Source File: bug8071705.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }
Example 8
Source File: bug8071705.java From hottub with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }
Example 9
Source File: bug8071705.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }
Example 10
Source File: MenuUI.java From rapidminer-studio with GNU Affero General Public License v3.0 | 5 votes |
@Override protected void paintBackground(Graphics g, JMenuItem menuItem, Color bgColor) { JMenu menu = (JMenu) menuItem; ButtonModel buttonmodel = menu.getModel(); int w = menu.getWidth(); int h = menu.getHeight(); Color oldColor = g.getColor(); if (!menu.isContentAreaFilled() || !menu.isOpaque()) { // do nothing } else { if (menu.isTopLevelMenu()) { if (buttonmodel.isSelected()) { CachedPainter.drawMenuBackground(menuItem, g, 0, 0, w, h); } else if (buttonmodel.isRollover() && buttonmodel.isEnabled()) { g.setColor(Colors.MENUBAR_BACKGROUND_HIGHLIGHT); g.fillRect(0, 0, w, h); } else { if (menuItem.getParent() instanceof JMenuBar) { ((MenuBarUI) ((JMenuBar) menuItem.getParent()).getUI()).update(g, menuItem); } } } else { if (!menuItem.getModel().isSelected()) { RapidLookTools.drawMenuItemFading(menuItem, g); } else { RapidLookTools.drawMenuItemBackground(g, menuItem); } } } g.setColor(oldColor); }
Example 11
Source File: bug8071705.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }
Example 12
Source File: bug8071705.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
private static void runActualTest(GraphicsDevice device, CountDownLatch latch, JFrame frame, boolean [] result) { Rectangle screenBounds = setLocation(frame, device); JMenu menu = frame.getJMenuBar().getMenu(0); menu.doClick(); Point location = menu.getLocationOnScreen(); JPopupMenu pm = menu.getPopupMenu(); Dimension pmSize = pm.getSize(); int yOffset = UIManager.getInt("Menu.submenuPopupOffsetY"); int height = location.y + yOffset + pmSize.height + menu.getHeight(); int available = screenBounds.y + screenBounds.height - height; if (available > 0) { Point origin = pm.getLocationOnScreen(); if (origin.y < location.y) { // growing upward, wrong! result[0] = false; } else { // growing downward, ok! result[0] = true; } } else { // there is no space, growing upward would be ok, so we pass result[0] = true; } }