myMonitorOutput = new StyledText(fTop, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL);
theGriddata = new GridData(SWT.FILL, SWT.FILL, true, true);
theGriddata.horizontalSpan = 7;
myMonitorOutput.setLayoutData(theGriddata);
myMonitorOutput.setEditable(false);
IThemeManager themeManager = PlatformUI.getWorkbench().getThemeManager();
ITheme currentTheme = themeManager.getCurrentTheme();
FontRegistry fontRegistry = currentTheme.getFontRegistry();
myMonitorOutput.setFont(fontRegistry.get("it.baeyens.serial.fontDefinition"));
myMonitorOutput.setText("Currently there are no serial ports registered - please use the + button to add a port to the monitor.");
myparent.getShell().setDefaultButton(mySendButton);