vsp.setSplitPosition("75%");
HorizontalPanel buttons = new HorizontalPanel();
final SimpleToggleButton hideLeftButton = new SimpleToggleButton("Hide Left");
hideLeftButton.getDownFace().setText("Show Left");
hideLeftButton.addChangeHandler(new ChangeHandler() {
public void onChange(ChangeEvent event) {
hsp.setLeftWidgetVisible(!hideLeftButton.isDown());
}
});
buttons.add(hideLeftButton);