Warning: session_start(): open(/var/lib/php/sessions/sess_tjqm1nv27olfd87d8nl8k0tj45, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static Component componentAtScreenLocation(final int x, final int y) {
ret swing(func -> Component {
Point p = new(x, y);
Window window = locationToWindow(p);
if (window == null) null;
SwingUtilities.convertPointFromScreen(p, window);
ret SwingUtilities.getDeepestComponentAt(window, p.x, p.y);
});
}
static Component componentAtScreenLocation(MouseEvent e) {
Point p = e.getLocationOnScreen();
ret componentAtScreenLocation(p., p.y);
}