gpt4 book ai didi

java - SWT 中的自定义小部件形状

转载 作者:行者123 更新时间:2023-11-30 06:00:45 24 4
gpt4 key购买 nike

我正在尝试弄清楚如何使 SWT 小部件(例如标签、框架)成为矩形以外的某种形状。

我使用 setRegion() 方法制作了一个自定义形状的主窗口。现在我希望窗口中的小部件遵循相同的形状。我尝试在小部件本身上使用 setRegion() 方法(它们继承它),但没有任何反应。

如何使 SWT 小部件具有自定义形状?

最佳答案

我已经成功解决了。看来我的困难是由于对如何定义自定义区域的误解而产生的。 setBounds() 方法定义自定义区域的坐标系。我假设区域和 setBounds 使用相同的坐标系,结果根本不显示小部件。

如图所示效果。左侧的绿色标签像主窗口一样弯曲,而右下角的灰色框架则不然。

图像出现在预览中,但没有出现在发布的答案中,请尝试: http://img87.imageshack.us/my.php?image=curvecroppedwf8.png

执行此操作的代码片段:

Display display = Display.getDefault();
Shell shell new Shell(display, SWT.NO_TRIM | SWT.ON_TOP);

// make the region for the main window
// circle is a method that returns a list of points defining a circle
Region region = new Region();
region.add(350, 0, 981, 51);
region.add(circle(380,51,30));
region.add(circle(951,51,30));
region.add(380, 51, 571, 30);
shell.setRegion(region);
Rectangle rsize = region.getBounds();
shell.setSize(rsize.width, rsize.height);

Composite main = new Composite(shell, SWT.NULL);

// make the label
cpyLbl = new Label(main, SWT.NONE);
cpyLbl.setText("Copy");

cpyLbl.setBackground(SWTResourceManager.getColor(38,255,23));

Region cpyRegion = new Region();
cpyRegion.add(0, 0, 161, 51);
cpyRegion.add(circle(28,51,28));
cpyRegion.add(28, 51, 133, 28);
cpyLbl.setRegion(cpyRegion);

// the top left of the bounds is the 0,0 of the region coordinates
// bounds are in screen coordinates (maybe shell coordinates?)
cpyLbl.setBounds(352, 0, 161, 79);
cpyLbl.setVisible(true);

关于java - SWT 中的自定义小部件形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/505599/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com