private final UiProvider panel;
public Section(String text, Icon icon, UiProvider panel) {
this.panel = panel;
MnemonicString mnemonic = UiResourceBundle.MNEMONIC_FACTORY.fromString(text);
button = new JToggleButton(mnemonic.getText(), icon);
ButtonUtils.applyMnemonics(button, mnemonic);
button.setHorizontalAlignment(SwingConstants.LEADING);
updateButtonFont();
button.addActionListener(this);
}