toolBar.add(DCLabel.dark("Included libraries: "));
toolBar.add(librariesComboBox);
toolBar.add(visitProjectButton);
final JScrollPane licenseLabelScroll = WidgetUtils.scrolleable(licenseLabel);
licenseLabelScroll.setBorder(new CompoundBorder(new EmptyBorder(10, 0, 10, 0), WidgetUtils.BORDER_THIN));
final DCPanel headerPanel = new DCPanel();
headerPanel.setLayout(new VerticalLayout());
headerPanel.add(toolBar);
headerPanel.add(Box.createVerticalStrut(20));
headerPanel.add(licenseHeader);
final DCPanel panel = new DCPanel(WidgetUtils.BG_COLOR_BRIGHT, WidgetUtils.BG_COLOR_BRIGHTEST);
panel.setBorder(new EmptyBorder(4, 4, 4, 4));
panel.setLayout(new BorderLayout());
panel.add(headerPanel, BorderLayout.NORTH);
panel.add(licenseLabelScroll, BorderLayout.CENTER);
return panel;