private JRibbonBand getViewBand() {
JRibbonBand viewBand = new JRibbonBand(
I18n.COMMON.getString("AppView.ViewBand"),
new EmptyResizableIcon(22));
JCommandToggleButton cbtnStatusBar = new JCommandToggleButton(
I18n.COMMON.getString("Action.StatusBar"),
ViewHelpers.createResizableIcon(new ImageIcon(getClass().getResource(
ViewHelpers.ICONS22 + "statusbar.png"))));
cbtnStatusBar.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
onToogleStatusBar();
}
});
cbtnStatusBar.setActionKeyTip("S");
cbtnStatusBar.getActionModel().setSelected(true);
viewBand.addCommandButton(cbtnStatusBar, RibbonElementPriority.TOP);
JCommandButton cbtnLookAndFeel = new JCommandButton(
I18n.COMMON.getString("Action.LookAndFeel"),
ViewHelpers.createResizableIcon(new ImageIcon(getClass().getResource(