static Pt convertPointToScreen(Pt p, Component c) { if (c == null) ret p; Point p2 = toPoint(p); SwingUtilities.convertPointToScreen(p2, c); ret toPt(p2); }