Composite jidSettingsComposite = new Composite(rightColumn, SWT.NONE);
jidSettingsComposite.setLayoutData(new GridData(SWT.FILL, SWT.CENTER,
true, true));
jidSettingsComposite.setLayout(LayoutUtils.createGridLayout(0, 5));
this.jid = new SummaryItemComposite(jidSettingsComposite, SWT.BOLD);
this.jid.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
/*
* separator
*/
new Label(rightColumn, SWT.SEPARATOR | SWT.HORIZONTAL)
.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
/*
* network settings
*/
Composite networkSettingsComposite = new Composite(rightColumn,
SWT.NONE);
networkSettingsComposite.setLayoutData(new GridData(SWT.FILL,
SWT.CENTER, true, true));
networkSettingsComposite.setLayout(LayoutUtils.createGridLayout(0, 5));
this.autoConnection = new SummaryItemComposite(
networkSettingsComposite, SWT.NONE);
this.autoConnection.setLayoutData(new GridData(SWT.FILL, SWT.CENTER,
true, false));
this.uPnPOption = new SummaryItemComposite(networkSettingsComposite,
SWT.NONE);
this.uPnPOption.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true,
false));
this.skypeUsername = new SummaryItemComposite(networkSettingsComposite,
SWT.NONE);
this.skypeUsername.setLayoutData(new GridData(SWT.FILL, SWT.CENTER,
true, false));
/*
* separator
*/
new Label(rightColumn, SWT.SEPARATOR | SWT.HORIZONTAL)
.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
/*
* statistic settings
*/
Composite statisticSettingsComposite = new Composite(rightColumn,
SWT.NONE);
statisticSettingsComposite.setLayoutData(new GridData(SWT.FILL,
SWT.CENTER, true, true));
statisticSettingsComposite
.setLayout(LayoutUtils.createGridLayout(0, 5));
this.statisticSubmission = new SummaryItemComposite(
statisticSettingsComposite, SWT.NONE);
this.statisticSubmission.setLayoutData(new GridData(SWT.FILL,
SWT.CENTER, true, false));
this.errorLogSubmission = new SummaryItemComposite(
statisticSettingsComposite, SWT.NONE);
this.errorLogSubmission.setLayoutData(new GridData(SWT.FILL,
SWT.CENTER, true, false));
return rightColumn;