gpt4 book ai didi

java - 我应该将 ScrolledComposite 内容设置两次吗?如何正确使用ScrolledComposite?

转载 作者:行者123 更新时间:2023-12-01 13:35:49 27 4
gpt4 key购买 nike

如何正确使用ScrolledComposite?

以下内容略有修改Snipped166:

 import org.eclipse.swt.*;
import org.eclipse.swt.custom.*;
import org.eclipse.swt.events.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.layout.*;
import org.eclipse.swt.widgets.*;

public class Snippet166 {

public static void main(String[] args) {
Display display = new Display();
Image image1 = display.getSystemImage(SWT.ICON_WORKING);
Image image2 = display.getSystemImage(SWT.ICON_QUESTION);
Image image3 = display.getSystemImage(SWT.ICON_ERROR);

Shell shell = new Shell(display);
shell.setLayout(new FillLayout());

final ScrolledComposite scrollComposite = new ScrolledComposite(shell, SWT.H_SCROLL | SWT.BORDER);

final Composite parent = new Composite(scrollComposite, SWT.NONE);
for(int i = 0; i <= 50; i++) {
Label label = new Label(parent, SWT.NONE);
if (i % 3 == 0) label.setImage(image1);
if (i % 3 == 1) label.setImage(image2);
if (i % 3 == 2) label.setImage(image3);
}
RowLayout layout = new RowLayout(SWT.HORIZONTAL);
layout.wrap = false;
parent.setLayout(layout);

scrollComposite.setContent(parent);
scrollComposite.setExpandVertical(true);
scrollComposite.setExpandHorizontal(true);
scrollComposite.addControlListener(new ControlAdapter() {
@Override
public void controlResized(ControlEvent e) {
Rectangle r = scrollComposite.getClientArea();
scrollComposite.setMinSize(parent.computeSize(r.width, SWT.DEFAULT));
}
});

shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
}

我希望它显示带有水平滚动条的长水平行标志。

不幸的是它不绘制滚动条。

我也不明白,为什么这个例子要这么复杂?为什么我不能将一些大的东西放在 ScrolledComposite 上并滚动?

此外,我不明白 setContent() 方法的必要性,因为内容始终在 SWT 的构造函数中设置。

更新

我发现,我可以手动设置大小,然后就会出现滚动条。

public class Snippet166_mod01 {

public static void main(String[] args) {
Display display = new Display();
Image image1 = display.getSystemImage(SWT.ICON_WORKING);
Image image2 = display.getSystemImage(SWT.ICON_QUESTION);
Image image3 = display.getSystemImage(SWT.ICON_ERROR);

Shell shell = new Shell(display);
shell.setLayout(new FillLayout());

final ScrolledComposite scrollComposite = new ScrolledComposite(shell, SWT.H_SCROLL | SWT.BORDER);

final Composite parent = new Composite(scrollComposite, SWT.NONE);
for(int i = 0; i <= 50; i++) {
Label label = new Label(parent, SWT.NONE);
if (i % 3 == 0) label.setImage(image1);
if (i % 3 == 1) label.setImage(image2);
if (i % 3 == 2) label.setImage(image3);
}
RowLayout layout = new RowLayout(SWT.HORIZONTAL);
layout.wrap = false;
parent.setLayout(layout);

// how to calculate actual size?
parent.setSize(1000, 100);


// what this is for?
scrollComposite.setContent(parent);

shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
}

所以我想知道如何自动设置大小?是否可以将控件的大小设置为内部51个图像的宽度?

最佳答案

您还必须告诉 ScrolledComposite 它的最小大小:

scrolled.setMinSize(group.computeSize(SWT.DEFAULT, SWT.DEFAULT));
scrolled.setExpandHorizontal(true);
scrolled.setExpandVertical(true);

将所有 child 添加到群组后执行此操作。

关于java - 我应该将 ScrolledComposite 内容设置两次吗?如何正确使用ScrolledComposite?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21285760/

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