Warning: session_start(): open(/var/lib/php/sessions/sess_psmt4bpjd2mk6kgb1v9hipjrui, 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 componentAtScreenLocationInWindow(Window window, int x, int y) {
if (window == null) null;
ret swing(func -> Component {
Point p = new(x, y);
SwingUtilities.convertPointFromScreen(p, window);
ret SwingUtilities.getDeepestComponentAt(window, p.x, p.y);
});
}
static Component componentAtScreenLocationInWindow(Window window, MouseEvent e) {
Point p = e.getLocationOnScreen();
ret componentAtScreenLocationInWindow(window, p.x, p.y);
}