configuration.saveLookAndFeel( currentLookAndFeel );
}
// Event listener for look and feel change
public void changeLookAndFeel( SelectionChangedEvent ev ) {
BRadioButtonMenuItem button = ( BRadioButtonMenuItem ) ev.getSource();
currentLookAndFeel = button.getText();
WindowUtils.setLookAndFeel( currentLookAndFeel, application );
// Save new look and feel
configuration.saveLookAndFeel( currentLookAndFeel );
application.pack();
configuration.restoreWindowPosition( application );