Searched defs:menuWidth (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaMenuUI.java64 public void paintBackground(final Graphics g, final JComponent c, final int menuWidth, final int menuHeight) { argument
71 AquaMenuPainter.instance().paintSelectedMenuTitleBackground(g, menuWidth, menuHeight);
73 AquaMenuPainter.instance().paintSelectedMenuItemBackground(g, menuWidth, menuHeight);
77 AquaMenuPainter.instance().paintMenuBarBackground(g, menuWidth, menuHeight, c);
80 g.fillRect(0, 0, menuWidth, menuHeight);
H A DAquaMenuItemUI.java122 public void paintBackground(final Graphics g, final JComponent c, final int menuWidth, final int menuHeight) { argument
127 g.fillRect(0, 0, menuWidth, menuHeight);
130 AquaMenuPainter.instance().paintSelectedMenuItemBackground(g, menuWidth, menuHeight);
132 //getTheme().drawMenuItem(c, g, 0, 0, menuWidth, menuHeight);
138 g.fillRect(0, 0, menuWidth, menuHeight);
142 g.fillRect(0, 0, menuWidth, menuHeight);
143 //super.paintBackground(g,c,menuWidth, menuHeight); //getTheme().drawMenuBackground((Component)c, g, (short)1, 0, 0, menuWidth, menuHeight);
H A DAquaMenuPainter.java80 public void paintBackground(Graphics g, JComponent c, int menuWidth, int menuHeight); argument
161 final int menuWidth = b.getWidth();
165 Rectangle viewRect = new Rectangle(0, 0, menuWidth, menuHeight);
182 client.paintBackground(g, c, menuWidth, menuHeight);

Completed in 33 milliseconds