chatName = new JLabel();
chatName.setFont(FontUtils.emSize(chatName.getFont(), 2));
topPanel.add(chatName, BorderLayout.CENTER);
this.add(topPanel, BorderLayout.NORTH);
chatComponent = new ChatComponent();
this.add(chatComponent, BorderLayout.CENTER);
this.setVisible(true);
}