container_ = new SimplePanel();
int maxHeight = Window.getClientHeight() - 150;
int height = Math.min(500, maxHeight);
container_.getElement().getStyle().setHeight(height, Unit.PX);
output_ = new CompileOutputBuffer();
container_.setWidget(output_);
return container_;
}