public KongaTitlePanel(String title, int height) {
titleLabel = new JLabel(title);
titleLabel.setFont(titleLabel.getFont());
userDefinedHeight = height;
setBorder(new BorderBuilder().line(new Color(110, 110, 110)).empty(5));
setBackground(UiLook.getTitlePanelBackground(false));
titleLabel.setForeground(UiLook.getTitlePanelForeground(false));
BoxBuilder.horizontal(this).add(titleLabel).glue();
FocusUtils.makeComponentMouseFocusable(this);
}