Searched defs:paintAll (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollPanePeer.java399 * @param paintAll paint the whole scrollbar if true, just the thumb if false
401 void paintHorScrollbar(Graphics g, Color colors[], boolean paintAll) { argument
418 hsb.paint(ng, colors, paintAll);
435 * @param paintAll paint the whole scrollbar if true, just the thumb if false
437 void paintVerScrollbar(Graphics g, Color colors[], boolean paintAll) { argument
454 vsb.paint(ng, colors, paintAll);
H A DXScrollbar.java164 * @param paintAll paint the whole scrollbar if true, just the thumb is false
166 void paint(Graphics g, Color colors[], boolean paintAll) { argument
206 if (paintAll) {
234 if (paintAll) {
H A DXListPeer.java1900 void paintScrollBar(XScrollbar scr, Graphics g, int x, int y, int width, int height, boolean paintAll) { argument
1902 width + " height " + height + ", paintAll " + paintAll);
1904 scr.paint(g, getSystemColors(), paintAll);
1913 * @param paintAll paint the whole scrollbar if true, just the thumb if false
1915 void paintHorScrollbar(Graphics g, boolean paintAll) { argument
1917 paintScrollBar(hsb, g, 0, height - (SCROLLBAR_WIDTH), w, SCROLLBAR_WIDTH, paintAll);
1925 * @param paintAll paint the whole scrollbar if true, just the thumb if false
1927 void paintVerScrollbar(Graphics g, boolean paintAll) { argument
1929 paintScrollBar(vsb, g, width - SCROLLBAR_WIDTH, 0, SCROLLBAR_WIDTH - 2, h, paintAll);
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java3241 public void paintAll(Graphics g) { method in class:Component
3255 * @see #paintAll

Completed in 62 milliseconds