/** Move back one item in the window history, if possible and open the view. */
  private void onBack() {

    View view = history.goBack();
    if (view != null) oParent.addViewToDesktop(view, view.getLabel());

    enableHistoryButtons();
  }