}
private void addBrowserActions() {
ComboFrame frame = getComboFrame();
AbstractImageBrowser browser = frame.getBrowser();
ImageBrowserActions actions = browser.getActions();
add(actions.getLeftAction());
add(actions.getRightAction());
addRatingMenu();
addSeparator();
add(actions.getSelectLatestAction());
add(actions.getSelectAllAction());
add(actions.getSelectNoneAction());
addSeparator();
add(actions.getEditAction());
add(actions.getShowFileInFolderAction());
add(actions.getRenameAction());
add(actions.getTrashAction());
addSeparator();
add(actions.getCopyAction());
add(actions.getPasteAction());
addTemplatesMenu();
addSeparator();
add(new BrowserExportMenuItem(frame));
add(new BrowserPrintMenuItem(frame));
addSeparator();
add(actions.getRefreshAction());
add(new RescanMenuItem(frame));
addSeparator();
add(actions.getShowHideTypesAction());
}