Java Code Examples for javax.swing.JComponent#inside()
The following examples show how to use
javax.swing.JComponent#inside() .
These examples are extracted from open source projects.
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 Project: jdk1.8-source-analysis File: ComponentUI.java License: Apache License 2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 2
Source Project: dragonwell8_jdk File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 3
Source Project: TencentKona-8 File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 4
Source Project: jdk8u60 File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 5
Source Project: JDKSourceCode1.8 File: ComponentUI.java License: MIT License | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 6
Source Project: openjdk-jdk8u File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 7
Source Project: openjdk-jdk8u-backup File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 8
Source Project: Bytecoder File: ComponentUI.java License: Apache License 2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * @return {@code true} if the specified {@code x,y} location is contained * within the look and feel's defined shape for the given component * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 9
Source Project: openjdk-jdk9 File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * @return {@code true} if the specified {@code x,y} location is contained * within the look and feel's defined shape for the given component * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 10
Source Project: jdk8u-jdk File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 11
Source Project: Java8CN File: ComponentUI.java License: Apache License 2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 12
Source Project: hottub File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 13
Source Project: openjdk-8-source File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 14
Source Project: openjdk-8 File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 15
Source Project: jdk8u_jdk File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 16
Source Project: jdk8u-jdk File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }
Example 17
Source Project: jdk8u-dev-jdk File: ComponentUI.java License: GNU General Public License v2.0 | 2 votes |
/** * Returns <code>true</code> if the specified <i>x,y</i> location is * contained within the look and feel's defined shape of the specified * component. <code>x</code> and <code>y</code> are defined to be relative * to the coordinate system of the specified component. Although * a component's <code>bounds</code> is constrained to a rectangle, * this method provides the means for defining a non-rectangular * shape within those bounds for the purpose of hit detection. * * @param c the component where the <i>x,y</i> location is being queried; * this argument is often ignored, * but might be used if the UI object is stateless * and shared by multiple components * @param x the <i>x</i> coordinate of the point * @param y the <i>y</i> coordinate of the point * * @see javax.swing.JComponent#contains * @see java.awt.Component#contains */ @SuppressWarnings("deprecation") public boolean contains(JComponent c, int x, int y) { return c.inside(x, y); }