out.writeInt(mRepetitionTimeSelect);
}
protected static ActionMenu getButtonAction() {
ButtonAction action = new ButtonAction();
action.setActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
getInstance().openSearchDialog("");
}
});
action.setBigIcon(TVBrowserIcons.search(TVBrowserIcons.SIZE_LARGE));
action.setSmallIcon(TVBrowserIcons.search(TVBrowserIcons.SIZE_SMALL));
action.setShortDescription(mLocalizer.msg("description",
"Allows searching programs containing a certain text."));
action.setText(mLocalizer.ellipsisMsg("searchPrograms", "Search programs"));
action.putValue(InternalPluginProxyIf.KEYBOARD_ACCELERATOR, KeyStroke
.getKeyStroke(KeyEvent.VK_F, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()));
return new ActionMenu(action);
}