Java JComponent Properties getVisibleBoundsOnScreen(JComponent component)

Here you can find the source of getVisibleBoundsOnScreen(JComponent component)

Description

Returns the specified component's visible bounds within the screen.

License

Open Source License

Return

the component's visible bounds as a Rectangle

Declaration

public static Rectangle getVisibleBoundsOnScreen(JComponent component) 

Method Source Code

//package com.java2s;
/*/*from w  w w.  j av  a  2 s.c  o m*/
 * DataViewerUtilities.java  2/6/13 1:04 PM
 *
 * Copyright (C) 2012-2013 Nick Ma
 *
 * This program 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 any later version.
 * This program 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.
 */

import java.awt.*;

import javax.swing.*;

public class Main {
    /**
     * Returns the specified component's visible bounds within the screen.
     *
     * @return the component's visible bounds as a <code>Rectangle</code>
     */
    public static Rectangle getVisibleBoundsOnScreen(JComponent component) {
        Rectangle visibleRect = component.getVisibleRect();
        Point onScreen = visibleRect.getLocation();
        SwingUtilities.convertPointToScreen(onScreen, component);
        visibleRect.setLocation(onScreen);
        return visibleRect;
    }
}

Related

  1. disposeParentWindow(JComponent component)
  2. doDisable(JComponent component)
  3. getProperties(JComponent component)
  4. getProperties(JComponent component)
  5. getProperties(JComponent component)
  6. invert(JComponent c)
  7. isActive(JComponent c)
  8. isComponentShowing(final JComponent component)
  9. isHorizontallyVisible(JComponent c, int from, int to)