Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Xenos2015-04-25 04:22:01 +0000
committerStefan Xenos2015-04-25 04:22:01 +0000
commit1607d4214ca0e6ca882f251b3bbdb7fa33d0d2a4 (patch)
treea6e8db9c51a96d422e4f0bf057ba77568fa32695 /bundles
parent77359c916106b323ab80d56d6231cc1987551713 (diff)
downloadrt.equinox.p2-1607d4214ca0e6ca882f251b3bbdb7fa33d0d2a4.tar.gz
rt.equinox.p2-1607d4214ca0e6ca882f251b3bbdb7fa33d0d2a4.tar.xz
rt.equinox.p2-1607d4214ca0e6ca882f251b3bbdb7fa33d0d2a4.zip
Bug 465468 - Fix the layout on the Available Software Sites preference page
such that it resizes correctly on all platforms. - Use GridLayoutFactory to safely assign grid data to controls in the the top-level layout. - Remove the redundant assignment of GridData to the top-level control. Change-Id: I9813b9577c7dc8d2827265fc2f14dac4580f4a25 Signed-off-by: Stefan Xenos <sxenos@google.com>
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/RepositoryManipulationPage.java32
1 files changed, 10 insertions, 22 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/RepositoryManipulationPage.java b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/RepositoryManipulationPage.java
index 6d0391c86..c0f2ca1f6 100644
--- a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/RepositoryManipulationPage.java
+++ b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/p2/ui/RepositoryManipulationPage.java
@@ -27,6 +27,7 @@ import org.eclipse.equinox.p2.operations.ProvisioningSession;
import org.eclipse.equinox.p2.operations.RepositoryTracker;
import org.eclipse.jface.dialogs.*;
import org.eclipse.jface.dialogs.Dialog;
+import org.eclipse.jface.layout.*;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.preference.PreferencePage;
import org.eclipse.jface.viewers.*;
@@ -206,16 +207,6 @@ public class RepositoryManipulationPage extends PreferencePage implements IWorkb
PlatformUI.getWorkbench().getHelpSystem().setHelp(parent.getShell(), IProvHelpContextIds.REPOSITORY_MANIPULATION_DIALOG);
Composite composite = new Composite(parent, SWT.NONE);
- GridData gd = new GridData(SWT.FILL, SWT.FILL, true, true);
- composite.setLayoutData(gd);
-
- GridLayout layout = new GridLayout();
- layout.numColumns = policy.getRepositoriesVisible() ? 2 : 1;
- layout.marginWidth = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_MARGIN);
- layout.marginHeight = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_MARGIN);
- layout.horizontalSpacing = convertHorizontalDLUsToPixels(IDialogConstants.HORIZONTAL_SPACING);
- layout.verticalSpacing = convertVerticalDLUsToPixels(IDialogConstants.VERTICAL_SPACING);
- composite.setLayout(layout);
// Filter box
pattern = new Text(composite, SWT.SINGLE | SWT.BORDER | SWT.SEARCH | SWT.CANCEL);
@@ -257,8 +248,6 @@ public class RepositoryManipulationPage extends PreferencePage implements IWorkb
});
}
});
- gd = new GridData(SWT.FILL, SWT.FILL, true, false);
- pattern.setLayoutData(gd);
// spacer to fill other column
if (policy.getRepositoriesVisible())
@@ -358,11 +347,6 @@ public class RepositoryManipulationPage extends PreferencePage implements IWorkb
// Input last
repositoryViewer.setInput(getInput());
- GridData data = new GridData(SWT.FILL, SWT.FILL, true, true);
- data.widthHint = convertWidthInCharsToPixels(ILayoutConstants.DEFAULT_TABLE_WIDTH);
- data.heightHint = convertHeightInCharsToPixels(ILayoutConstants.DEFAULT_TABLE_HEIGHT);
- table.setLayoutData(data);
-
// Drop targets and vertical buttons only if repository manipulation is provided.
if (policy.getRepositoriesVisible()) {
DropTarget target = new DropTarget(table, DND.DROP_MOVE | DND.DROP_COPY | DND.DROP_LINK);
@@ -371,10 +355,7 @@ public class RepositoryManipulationPage extends PreferencePage implements IWorkb
// Vertical buttons
Composite verticalButtonBar = createVerticalButtonBar(composite);
- data = new GridData(SWT.FILL, SWT.FILL, false, false);
- data.verticalAlignment = SWT.TOP;
- data.verticalIndent = 0;
- verticalButtonBar.setLayoutData(data);
+ GridDataFactory.fillDefaults().align(SWT.FILL, SWT.TOP).applyTo(verticalButtonBar);
listener = getViewerProvisioningListener();
ProvUI.getProvisioningEventBus(ui.getSession()).addListener(listener);
@@ -389,11 +370,18 @@ public class RepositoryManipulationPage extends PreferencePage implements IWorkb
// Details area
details = new Text(composite, SWT.READ_ONLY | SWT.WRAP);
- data = new GridData(SWT.FILL, SWT.FILL, true, false);
+ GridData data = new GridData(SWT.FILL, SWT.FILL, true, false);
data.heightHint = convertHeightInCharsToPixels(ILayoutConstants.DEFAULT_SITEDETAILS_HEIGHT);
+ data.widthHint = 1;
details.setLayoutData(data);
+ GridLayoutFactory.fillDefaults()
+ .numColumns(policy.getRepositoriesVisible() ? 2 : 1)
+ .margins(LayoutConstants.getMargins())
+ .spacing(LayoutConstants.getSpacing())
+ .generateLayout(composite);
+
Dialog.applyDialogFont(composite);
return composite;
}

Back to the top