SnapshotPanel p = new SnapshotPanel(device);
return makeCollapsiblePane("Workspace snapshots", p);
}
private CollapsiblePane makeCollapsiblePane(String title, JComponent content) {
CollapsiblePane cp = new CollapsiblePane(title) {
public Color getBackground() {
return UIColors.getDefaultBG();
}
public Color getForeground() {
return UIColors.getDefaultFG();
}
};
cp.setContentPane(content);
cp.setBorder(new FuzzyLineBorder(UIColors.getTableBorder(), UIColors.getTableBorderWidth(), true, true));
return cp;
}