JLabel label = new JLabel("Cube Rotation:");
label.setFont(Utilities.createFontLabel());
label.setPreferredSize(this.configLabelDim);
cubeRotationPanel.add(label);
CubeRotationConfigListener listener = new CubeRotationConfigListener(this.cubeModel);
ButtonGroup group = new ButtonGroup();
for (CubeRotation cubeRotation : CubeRotation.values()) {
JCheckBox checkBox = new JCheckBox(cubeRotation.getSelectionText());
checkBox.setFont(Utilities.createFontLabel());