(int x, int y)
| 2023 | |
| 2024 | /// {@inheritDoc} |
| 2025 | @Override |
| 2026 | public void pointerPressed(int x, int y) { |
| 2027 | super.pointerPressed(x, y); |
| 2028 | pressedOutOfBounds = !getTitleComponent().containsOrOwns(x, y) && |
| 2029 | !getContentPane().containsOrOwns(x, y) && |
| 2030 | !getMenuBar().containsOrOwns(x, y); |
| 2031 | } |
| 2032 | |
| 2033 | /// Returns true if a dialog that was disposed did it because of a pointer out of bounds |
| 2034 | /// |