JButton button = new JButton(text, imageManager.getImageIcon(iconPath));
button.setForeground(WidgetUtils.BG_COLOR_BRIGHTEST);
button.setFocusPainted(false);
if (popupDescription != null) {
DCPopupBubble popupBubble = new DCPopupBubble(_glassPane, popupDescription, 0, 0, iconPath);
popupBubble.attachTo(button);
}
return button;
}
/**