listComponent.setRolloverFont(font);
}
});
}
});
controlsColumn.addButton("Increase Width (15 px)", new ActionListener() {
public void actionPerformed(ActionEvent e) {
final Extent width = listBox1.getWidth() == null ? new Extent(75) : listBox1.getWidth();
apply(new Applicator() {
public void apply(AbstractListComponent listComponent) {
listComponent.setWidth(Extent.add(width, new Extent(15)));