持久的SWT shell窗口位置

问题描述 投票:0回答:2

我的代码类似于下面的示例,它允许我在不同的位置打开一个shell。我需要做的是跟踪窗口位置,如果它被移动并保存那些位置,以便下次打开窗口。有什么建议?

 public StartupSplashShell(Display display)
 {
     shell = new Shell(display, SWT.NO_TRIM);
     setupShell();  // place components in the main avoCADo shell
     shell.setText("avoCADo");
     shell.setBackgroundImage(ImageUtils.getIcon("./avoCADo-Splash.jpg", 
     360, 298));
     shell.setSize(360, 298);   //TODO: set intial size to last known size
     Rectangle b = display.getBounds();
     int xPos = Math.max(0, (b.width-360)/2);
     int yPos = Math.max(0, (b.height-298)/2);
     shell.setLocation(xPos, yPos);
     shell.setImage(ImageUtils.getIcon("./avoCADo.png", 32, 32));
     shell.open();
}
eclipse shell swt
2个回答
3
投票

如果您正在使用Eclipse插件,请在退出应用程序处理程序中注入IEclipsePreferences并在eclipse首选项中保存边界。

@Inject
@Preference
private IEclipsePreferences preferences;

如果您的应用程序是独立的SWT应用程序,那么您可以使用文件(例如属性)或数据库来保持shell的边界

mainShell.getBounds() // serialize it in String
preferences.put("SHELL_BOUNDS", boundStr);

在应用程序启动时再次注入首选项并从首选项中检索边界

bounds = preferences.get("SHELL_BOUNDS", "");

然后你可以设置shell的位置和大小

mainShell.setLocation(xAxis, yAxis);
mainShell.setSize(width, height);

2
投票

假设这是一个普通的SWT应用程序,您可以在每次shell移动时使用SWT.Move监听器:

shell.addListener(SWT.Move, event ->
  { 
    Point location = shell.getLocation();
    ....
  });

或者你可以使用SWT.Close监听器来监听shell关闭:

shell.addListener(SWT.Close, event ->
  { 
    Point location = shell.getLocation();
    ....
  });

如果要在应用程序的运行之间保存位置,则必须将位置保存为类似Properties文件的位置。

© www.soinside.com 2019 - 2024. All rights reserved.