3

我有一个带有单个视图的eclipse 插件(如 eclipse helloworld-view-plugin-project)。在视图文件中,当我想更新视图时会收到一个事件

在这个视图中,我在一个具有多个标签的组中有一个 GridData。我有几个注册到程序的服务,它们的状态应该显示在这个 GridData 中。

编辑:为了更好地展示我的问题,我更新了这篇文章并添加了整个代码:


创建零件控制():

public void createPartControl(Composite _parent) {
  parent = _parent;
  createContents();
  addBindings();
  makeActions();
  contributeToActionBars();
}

创建内容():

protected void createContents() {

  // fixed
  checkIcon = //...
  errorIcon = //...
  smallFont = SWTResourceManager.getFont("Segoe UI", 7, SWT.NORMAL);

  // content
  gl_shell = new GridLayout(1, false);
  //margins, etc. for gl_shell
  parent.setLayout(gl_shell);

  final Label lblGreeting = new Label(parent, SWT.NONE);
  lblGreeting.setLayoutData(new GridData(SWT.FILL, SWT.TOP, false, false, 1, 1));
  lblGreeting.setText("Hi " + Preferences.getPreName());

  // -- GROUP YOUR STATS (show all services)
  createStatusGroupBox();
}

创建状态组框():

private Group grpYourStatus = null; // outside the method for access in listener (below)

private void createStatusGroupBox() {
  grpYourStatus = new Group(parent, SWT.NONE);
  grpYourStatus.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false, 1, 1));
  grpYourStatus.setText("Your upload status");
  grpYourStatus.setLayout(new GridLayout(3, false));

  // add message if no service is registered
  if ( r.getServiceList().size() == 0 ) {
     Label status = new Label(grpYourStatus, SWT.NONE);
     status.setText("No service registered.");
     new Label(grpYourStatus, SWT.NONE); //empty
     new Label(grpYourStatus, SWT.NONE); //empty
  }

  // add labels (status, message, name) for each registered service
  for ( IRecorderObject service : r.getServiceList() ) {
     Label name = new Label(grpYourStatus, SWT.NONE);
     Label status = new Label(grpYourStatus, SWT.NONE);
     Label message = new Label(grpYourStatus, SWT.NONE);
     message.setFont(smallFont);
     message.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, true, false, 1, 1));

     service.getServiceViewItem().setLabelsAndIcons(name, status, message, checkIcon, errorIcon); //this also sets the values of the labels (label.setText(...) via data binding)
}

不幸的是,我不知道更新/重置它的正确方法是什么。我尝试了以下方法:

监听器(应该更新视图/服务列表):

r.addPropertyChangeListener(BindingNames.SERVICE_ADDED, new PropertyChangeListener() {
  public void propertyChange(final PropertyChangeEvent evt) {   
    Display.getDefault().asyncExec(new Runnable() {
      public void run() {
        // This "redraws" the view, but just places the whole content (generated in createStatusGroupBox()) above the other parts.
        //Display.getCurrent().update();
        //createStatusGroupBox();
        //parent.layout(true);
        //parent.redraw();

        // disposes grpYourStatus-Group but doesn't show anything then
        grpYourStatus.dispose();
        createStatusGroupBox();
        grpYourStatus.layout();
        grpYourStatus.redraw(); 
      }
    });
  }
});

我还尝试了以下语句(单独);都没有成功:

parent.redraw();
parent.update();
parent.layout();
parent.layout(true);
parent.refresh();

在这篇文章中,我阅读了以下内容:

createPartControls 是视图生命周期的那个时间,其中包含的小部件被创建(当视图最初变得可见时)。此代码仅在视图生命周期中执行一次,因此您不能直接在此处添加任何内容来刷新视图。

Eclipse 部件通常会更新其内容作为对工作台内更改选择的反应(例如,用户可能会单击调试视图中的另一个堆栈框架)。

不幸的是,我不知道我还能尝试什么,而且我没有发现任何对搜索有帮助的东西……感谢您的帮助和建议

4

2 回答 2

3

我终于找到了答案(在 AndreiC 的帮助下!):

我的听众现在看起来像这样:

r.addPropertyChangeListener(BindingNames.SERVICE_ADDED, new PropertyChangeListener() {
  public void propertyChange(final PropertyChangeEvent evt) {   
    Display.getDefault().asyncExec(new Runnable() {
      public void run() {
         // remove grpYourStatus from parent
         grpYourStatus.dispose();

         // add grpYourStatus (with updated values) to parent
         createStatusGroupBox();

         // refresh view
         parent.pack();
         parent.layout(true);
      }
    });
  }
});

其余的与上面的代码相同。

于 2012-11-27T06:07:55.463 回答
1

我不知道 API,但你试过parent.update()吗?

于 2012-11-05T14:42:57.163 回答