Action action = sourceTree.getLoadSourceDataAction();
return (action == null) ? null : new KongaButton(action);
}
private JComponent createToolbar(JButton... buttons) {
BoxBuilder toolbar = BoxBuilder.horizontal().setOpaque(false);
toolbar.addAllWithSpace(5, buttons);
Border border = new RoundedBorder(6, 6, Color.GRAY);
toolbar.setBorder(border);
return toolbar.container();
}