consoleGroup.setLayoutData( new GridData( SWT.FILL, SWT.NONE, true, false ) );
// Debug
Label debugLabel = new Label( consoleGroup, SWT.NONE );
debugLabel.setText( Messages.getString( "ColorsAndFontsPage.Debug" ) ); //$NON-NLS-1$
debugColorButton = new ColorSelector( consoleGroup );
debugColorButton.getButton().setLayoutData( new GridData( SWT.RIGHT, SWT.NONE, true, false ) );
debugBoldCheckbox = new Button( consoleGroup, SWT.CHECK );
debugBoldCheckbox.setText( Messages.getString( "ColorsAndFontsPage.Bold" ) ); //$NON-NLS-1$
debugItalicCheckbox = new Button( consoleGroup, SWT.CHECK );
debugItalicCheckbox.setText( Messages.getString( "ColorsAndFontsPage.Italic" ) ); //$NON-NLS-1$
// Info
Label infoLabel = new Label( consoleGroup, SWT.NONE );
infoLabel.setText( Messages.getString( "ColorsAndFontsPage.Info" ) ); //$NON-NLS-1$
infoColorButton = new ColorSelector( consoleGroup );
infoColorButton.getButton().setLayoutData( new GridData( SWT.RIGHT, SWT.NONE, true, false ) );
infoBoldCheckbox = new Button( consoleGroup, SWT.CHECK );
infoBoldCheckbox.setText( Messages.getString( "ColorsAndFontsPage.Bold" ) ); //$NON-NLS-1$
infoItalicCheckbox = new Button( consoleGroup, SWT.CHECK );
infoItalicCheckbox.setText( Messages.getString( "ColorsAndFontsPage.Italic" ) ); //$NON-NLS-1$
// Warn
Label warnLabel = new Label( consoleGroup, SWT.NONE );
warnLabel.setText( Messages.getString( "ColorsAndFontsPage.Warn" ) ); //$NON-NLS-1$
warnColorButton = new ColorSelector( consoleGroup );
warnColorButton.getButton().setLayoutData( new GridData( SWT.RIGHT, SWT.NONE, true, false ) );
warnBoldCheckbox = new Button( consoleGroup, SWT.CHECK );
warnBoldCheckbox.setText( Messages.getString( "ColorsAndFontsPage.Bold" ) ); //$NON-NLS-1$
warnItalicCheckbox = new Button( consoleGroup, SWT.CHECK );
warnItalicCheckbox.setText( Messages.getString( "ColorsAndFontsPage.Italic" ) ); //$NON-NLS-1$
// Error
Label errorLabel = new Label( consoleGroup, SWT.NONE );
errorLabel.setText( Messages.getString( "ColorsAndFontsPage.Error" ) ); //$NON-NLS-1$
errorColorButton = new ColorSelector( consoleGroup );
errorColorButton.getButton().setLayoutData( new GridData( SWT.RIGHT, SWT.NONE, true, false ) );
errorBoldCheckbox = new Button( consoleGroup, SWT.CHECK );
errorBoldCheckbox.setText( Messages.getString( "ColorsAndFontsPage.Bold" ) ); //$NON-NLS-1$
errorItalicCheckbox = new Button( consoleGroup, SWT.CHECK );
errorItalicCheckbox.setText( Messages.getString( "ColorsAndFontsPage.Italic" ) ); //$NON-NLS-1$
// Fatal
Label fatalLabel = new Label( consoleGroup, SWT.NONE );
fatalLabel.setText( Messages.getString( "ColorsAndFontsPage.Fatal" ) ); //$NON-NLS-1$
fatalColorButton = new ColorSelector( consoleGroup );
fatalColorButton.getButton().setLayoutData( new GridData( SWT.RIGHT, SWT.NONE, true, false ) );
fatalBoldCheckbox = new Button( consoleGroup, SWT.CHECK );
fatalBoldCheckbox.setText( Messages.getString( "ColorsAndFontsPage.Bold" ) ); //$NON-NLS-1$
fatalItalicCheckbox = new Button( consoleGroup, SWT.CHECK );
fatalItalicCheckbox.setText( Messages.getString( "ColorsAndFontsPage.Italic" ) ); //$NON-NLS-1$