|
Lines 183-189
Link Here
|
| 183 |
cvsResourceTree.setContentProvider(new RemoteContentProvider()); |
183 |
cvsResourceTree.setContentProvider(new RemoteContentProvider()); |
| 184 |
cvsResourceTree.setLabelProvider(new WorkbenchLabelProvider()); |
184 |
cvsResourceTree.setLabelProvider(new WorkbenchLabelProvider()); |
| 185 |
data = new GridData (GridData.FILL_BOTH); |
185 |
data = new GridData (GridData.FILL_BOTH); |
| 186 |
data.heightHint = 150; |
|
|
| 187 |
data.horizontalSpan = 1; |
186 |
data.horizontalSpan = 1; |
| 188 |
cvsResourceTree.getTree().setLayoutData(data); |
187 |
cvsResourceTree.getTree().setLayoutData(data); |
| 189 |
if(roots.length==1) { |
188 |
if(roots.length==1) { |
|
Lines 216-222
Link Here
|
| 216 |
|
215 |
|
| 217 |
final Table table = new Table(comp, SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER | SWT.MULTI | SWT.FULL_SELECTION | SWT.CHECK); |
216 |
final Table table = new Table(comp, SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER | SWT.MULTI | SWT.FULL_SELECTION | SWT.CHECK); |
| 218 |
data = new GridData(GridData.FILL_BOTH); |
217 |
data = new GridData(GridData.FILL_BOTH); |
| 219 |
data.heightHint = 150; |
|
|
| 220 |
data.horizontalSpan = 1; |
218 |
data.horizontalSpan = 1; |
| 221 |
table.setLayoutData(data); |
219 |
table.setLayoutData(data); |
| 222 |
TableLayout layout = new TableLayout(); |
220 |
TableLayout layout = new TableLayout(); |
|
Lines 295-301
Link Here
|
| 295 |
cvsDefinedTagsTree.setContentProvider(new WorkbenchContentProvider()); |
293 |
cvsDefinedTagsTree.setContentProvider(new WorkbenchContentProvider()); |
| 296 |
cvsDefinedTagsTree.setLabelProvider(new WorkbenchLabelProvider()); |
294 |
cvsDefinedTagsTree.setLabelProvider(new WorkbenchLabelProvider()); |
| 297 |
data = new GridData (GridData.FILL_BOTH); |
295 |
data = new GridData (GridData.FILL_BOTH); |
| 298 |
data.heightHint = 100; |
|
|
| 299 |
data.horizontalAlignment = GridData.FILL; |
296 |
data.horizontalAlignment = GridData.FILL; |
| 300 |
data.grabExcessHorizontalSpace = true; |
297 |
data.grabExcessHorizontalSpace = true; |
| 301 |
cvsDefinedTagsTree.getTree().setLayoutData(data); |
298 |
cvsDefinedTagsTree.getTree().setLayoutData(data); |
|
Lines 357-363
Link Here
|
| 357 |
explanation.setText(Policy.bind("TagConfigurationDialog.11")); //$NON-NLS-1$ |
354 |
explanation.setText(Policy.bind("TagConfigurationDialog.11")); //$NON-NLS-1$ |
| 358 |
data = new GridData (); |
355 |
data = new GridData (); |
| 359 |
data.horizontalSpan = 2; |
356 |
data.horizontalSpan = 2; |
| 360 |
data.widthHint = 300; |
|
|
| 361 |
explanation.setLayoutData(data); |
357 |
explanation.setLayoutData(data); |
| 362 |
|
358 |
|
| 363 |
autoRefreshFileList = new org.eclipse.swt.widgets.List(rememberedTags, SWT.BORDER | SWT.MULTI); |
359 |
autoRefreshFileList = new org.eclipse.swt.widgets.List(rememberedTags, SWT.BORDER | SWT.MULTI); |
|
Lines 419-425
Link Here
|
| 419 |
} |
415 |
} |
| 420 |
|
416 |
|
| 421 |
Label seperator = new Label(shell, SWT.SEPARATOR | SWT.HORIZONTAL); |
417 |
Label seperator = new Label(shell, SWT.SEPARATOR | SWT.HORIZONTAL); |
| 422 |
data = new GridData (GridData.FILL_BOTH); |
418 |
data = new GridData (GridData.FILL_HORIZONTAL); |
| 423 |
data.horizontalSpan = 2; |
419 |
data.horizontalSpan = 2; |
| 424 |
seperator.setLayoutData(data); |
420 |
seperator.setLayoutData(data); |
| 425 |
|
421 |
|