private JCommandButtonStrip getStrip2(double hgapScaleFactor,
double vgapScaleFactor) {
JCommandButtonStrip buttonStrip2 = new JCommandButtonStrip();
buttonStrip2.setHGapScaleFactor(hgapScaleFactor);
buttonStrip2.setVGapScaleFactor(vgapScaleFactor);
buttonStrip2.add(new JCommandButton("", new format_text_bold()));
buttonStrip2.add(new JCommandButton("", new format_text_italic()));
buttonStrip2.add(new JCommandButton("", new format_text_underline()));
JCommandButton strike = new JCommandButton("",
new format_text_strikethrough());
strike
.setCommandButtonKind(CommandButtonKind.ACTION_AND_POPUP_MAIN_ACTION);
strike.setPopupCallback(new PopupPanelCallback() {
@Override
public JPopupPanel getPopupPanel(JCommandButton commandButton) {
return new SamplePopupMenu(commandButton
.getComponentOrientation());
}