/* Location */
Label locationLabel = new Label(container, SWT.None);
locationLabel.setLayoutData(new GridData(SWT.END, SWT.CENTER, false, false));
locationLabel.setText(Messages.SearchMarkPropertyPage_LOCATION);
fFolderChooser = new FolderChooser(container, mark.getParent(), SWT.BORDER, true);
fFolderChooser.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, false));
fFolderChooser.setLayout(LayoutUtils.createGridLayout(1, 0, 0, 2, 5, false));
fFolderChooser.setBackground(container.getDisplay().getSystemColor(SWT.COLOR_LIST_BACKGROUND));
Composite topControlsContainer = new Composite(container, SWT.None);