}
private void centerVideoPanel() {
Point controlLocation = getLocation();
int xPos = (WIDTH - videoPanel.getSize().width) / 2;
controlLocation.translate(xPos, - 5 - videoPanel.getSize().height);
videoPanel.setLocation(controlLocation);
}
public void controllerUpdate(ControllerEvent ce) {
if (ce instanceof RealizeCompleteEvent) {