dirLabel.setLayoutData(BorderLayoutData.NORTH);
final UITextArea historyArea = new UITextArea();
historyArea.setStyledText(true);
historyArea.setAlignment(Alignment.BOTTOM_LEFT);
historyArea.setEditable(false);
final UIScrollPanel scrollArea = new UIScrollPanel(historyArea);
scrollArea.setLayoutData(BorderLayoutData.CENTER);
final UITextField chatField = new UITextField();
chatField.setLayoutData(BorderLayoutData.CENTER);
final UIButton chatButton = new UIButton("SAY");
chatButton.setLayoutData(BorderLayoutData.EAST);