如何限制Eclipse e4窗口的最小大小

时间:2013-04-09 06:02:49

标签: eclipse window size minimum e4

我正在制作一个基于Eclipse e4框架的应用程序。我想知道如何控制应用程序窗口的最小尺寸。似乎没有可以在e4xmi文件中为此目的定义属性。

有谁知道怎么做?

我在Eclipse社区论坛(http://www.eclipse.org/forums/index.php/t/244875/)中找到了一个帖子,说它可以通过创建我自己的渲染器来实现。我怎么能这样做呢?

非常感谢:)

2 个答案:

答案 0 :(得分:2)

假设您正在使用内置的SWT渲染器,您还可以侦听E4 MWindow元素的创建并获得对底层SWT Shell的访问权限。在此示例中,侦听器在AddOn中注册,您可以将其添加到e4xmi。

import javax.annotation.PostConstruct;

import org.eclipse.e4.core.services.events.IEventBroker;
import org.eclipse.e4.ui.model.application.ui.basic.MWindow;
import org.eclipse.e4.ui.workbench.UIEvents;
import org.eclipse.swt.widgets.Shell;
import org.osgi.service.event.Event;
import org.osgi.service.event.EventHandler;

public class MinSizeAddon {
    @PostConstruct
    public void init(final IEventBroker eventBroker) {
        EventHandler handler = new EventHandler() {
            @Override
            public void handleEvent(Event event) {
                if (!UIEvents.isSET(event))
                    return;

                Object objElement = event.getProperty(UIEvents.EventTags.ELEMENT);
                if (!(objElement instanceof MWindow))
                    return;

                MWindow windowModel = (MWindow)objElement;
                Shell theShell = (Shell)windowModel.getWidget();
                if (theShell == null)
                    return;

                theShell.setMinimumSize(400, 300);
            }
        };
        eventBroker.subscribe(UIEvents.UIElement.TOPIC_WIDGET, handler);
    }
}

请注意,这将在您的应用程序中的任何MWindow上执行,并且可以有更多这些(即当MPart从MPartStack分离到单独的窗口时)。如果要将执行限制为特定的MWindows,我建议在e4xmi中向窗口添加标记,并在设置最小大小之前检查此标记。

答案 1 :(得分:0)

如果有人仍然希望在e4应用程序中执行此操作,并且不想滚动自己的渲染器,则只需在零件类的后构造中执行以下操作:

@PostConstruct
public void postConstruct(Composite parent) {
  parent.getShell().setMinimumSize(300, 300);
  //...
}

框架传递的父级Composite使您可以访问Shell,从而可以设置最小大小。这样可以阻止将应用程序调整为小于指定的最小大小(以像素为单位)。