Java Code Examples for javax.swing.JComponent#inside()
The following examples show how to use
javax.swing.JComponent#inside() .
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 File: ComponentUI.java From openjdk-jdk9 with 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 2
Source File: ComponentUI.java From jdk8u-dev-jdk with 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 File: ComponentUI.java From jdk8u-jdk with 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 File: ComponentUI.java From jdk8u_jdk with 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 File: ComponentUI.java From openjdk-8 with 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 6
Source File: ComponentUI.java From openjdk-8-source with 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 File: ComponentUI.java From hottub with 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 File: ComponentUI.java From Java8CN with 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 9
Source File: ComponentUI.java From jdk8u-jdk with 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 10
Source File: ComponentUI.java From jdk1.8-source-analysis with 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 11
Source File: ComponentUI.java From Bytecoder with 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 12
Source File: ComponentUI.java From openjdk-jdk8u-backup with 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 File: ComponentUI.java From openjdk-jdk8u with 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 File: ComponentUI.java From JDKSourceCode1.8 with 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 15
Source File: ComponentUI.java From jdk8u60 with 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 File: ComponentUI.java From TencentKona-8 with 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 File: ComponentUI.java From dragonwell8_jdk with 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); }