public static void setCursor(Component c) {
if (!(c instanceof HChild)) {
return;
}
HChild hc = (HChild) c;
Bounds b = hc.getCBounds();
hc.setCNodesBG(CNodeState.FOCUSED);
cNode = hc;
Cursor.prompt.setHeight(b.getHeight());
// Cursor.prompt.relocate(b.getMinX() + b.getWidth(), b.getMinY());
Cursor.prompt.setVisible(true);
hc.addCursor();
}