JPanel btns = new JPanel(new FlowLayout(FlowLayout.CENTER));
btns.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
btns.add(new SideButton(new OKAction()));
btns.add(new SideButton(new CancelAction()));
btns.add(new SideButton(new ContextSensitiveHelpAction(HelpUtil.ht("/Action/Preferences"))));
pnl.add(expert, GBC.std().insets(5,0,0,0));
pnl.add(btns, GBC.std().fill(GBC.HORIZONTAL));
return pnl;
}