/** This method is called from within the constructor to initialize the form. */
  private void initComponents() {
    setLayout(new BorderLayout());
    theSheetSelectionPanel = new CharacterSheetSelectionPanel(theParent);
    add(theSheetSelectionPanel, BorderLayout.NORTH);

    eqSets = new ButtonGroup();
    final FlippingSplitPane splitPane1 = new FlippingSplitPane();
    eqSetPanel = new JPanel();
    modifiersPanel = new JPanel();

    splitPane1.setOrientation(JSplitPane.VERTICAL_SPLIT);
    splitPane1.setResizeWeight(0.5);
    eqSetPanel.setLayout(new BoxLayout(eqSetPanel, BoxLayout.Y_AXIS));

    splitPane1.setLeftComponent(eqSetPanel);

    modifiersPanel.setLayout(new BoxLayout(modifiersPanel, BoxLayout.Y_AXIS));

    splitPane1.setRightComponent(modifiersPanel);

    add(splitPane1, BorderLayout.CENTER);
  }