Java Graphics Draw fillVisible(final Graphics g, final JComponent c)

Here you can find the source of fillVisible(final Graphics g, final JComponent c)

Description

Fills either clipped or visible rect

License

Open Source License

Declaration


public static void fillVisible(final Graphics g, final JComponent c) 

Method Source Code

//package com.java2s;
/*/*from   w  w w.j  ava  2s .c om*/
 * This file is part of WebLookAndFeel library.
 *
 * WebLookAndFeel library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * WebLookAndFeel library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with WebLookAndFeel library.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.awt.Graphics;

import java.awt.Rectangle;
import java.awt.Shape;

import javax.swing.JComponent;

public class Main {
    /**
     * Fills either clipped or visible rect
     */

    public static void fillVisible(final Graphics g, final JComponent c) {
        final Shape clip = g.getClip();
        final Rectangle rect = clip != null ? clip.getBounds() : c.getVisibleRect();
        g.fillRect(rect.x, rect.y, rect.width, rect.height);
    }
}

Related

  1. drawTransparent(Graphics g, int x, int y, int width, int height)
  2. drawUp(Graphics g, int x, int y, int w, int h)
  3. drawWeightBox(Graphics2D g2d, int ycentre, int xcentre, int width)
  4. drawWinUpperLeft(Graphics g, int which, Color fill, int x, int y, int fmWidth, int fmHeight)
  5. drawXMajorScaleTick(Graphics g, int x, int y)
  6. fitToWidthAndHeight(Graphics2D g2, JComponent component, int width, int height)
  7. getGraphicsDevice(Component comp)
  8. getTranslatedGraphics(Graphics g, PageFormat pf, int pageIndex, Component component)
  9. getUsableScreenBounds(GraphicsConfiguration gconf)