Icon pressedIcon = new ImageIcon(
DImageButton.class.getResource("/com/explodingpixels/macwidgets/icons/scroller_pressed.png"));
Icon mask = new ImageIcon(
DImageButton.class.getResource("/com/explodingpixels/macwidgets/icons/scroller_mask.png"));
ImageButton button = new ImageButton(icon, mask);
button.setPressedIcon(pressedIcon);
JFrame frame = new JFrame();
frame.add(button, BorderLayout.CENTER);
frame.setSize(150, 100);
frame.setLocationRelativeTo(null);