我在 Git repo 页面中添加了一个过滤器并修改了类RepositoryView
。我刚刚提到了这一点,以便您可以在需要时在线找到此代码。我的问题更像是一个通用的对齐问题。
在我添加了这个新过滤器之后,这就是 git repo 视图在此更改后加载时的样子
最大化视图后,它看起来像这样。这里对齐出错了。过滤器工具栏位于中心。
之后,如果我将其最小化,过滤器工具栏就会从视图中消失。
代码已更改
public void createPartControl(Composite aParent) {
Composite displayArea = new Composite(aParent, SWT.NONE);
displayArea.setLayout(new GridLayout());
displayArea.setLayoutData(new GridData(SWT.FILL,6));
final Composite temp = new Composite(displayArea, SWT.FILL);//XXX
layout = new StackLayout();
temp.setLayout(layout);
createEmptyArea(temp);
super.createPartControl(temp);
IWorkbenchWindow w = PlatformUI.getWorkbench()
.getActiveWorkbenchWindow();
ICommandService csrv = (ICommandService) w
.getService(ICommandService.class);
Command command = csrv
.getCommand("org.eclipse.egit.ui.RepositoriesLinkWithSelection"); //$NON-NLS-1$
reactOnSelection = (Boolean) command.getState(
RegistryToggleState.STATE_ID).getValue();
GridDataFactory.fillDefaults().grab(true, true).applyTo(temp);//XXX
// GridDataFactory.fillDefaults().grab(true, true).applyTo(displayArea);//XXX
filterToolbar = new FilterToolbar(this, displayArea);
IWorkbenchSiteProgressService service = (IWorkbenchSiteProgressService) getSite()
.getService(IWorkbenchSiteProgressService.class);
if (service != null) {
service.showBusyForFamily(JobFamilies.REPO_VIEW_REFRESH);
service.showBusyForFamily(JobFamilies.CLONE);
}
}