我在StyledText
中有一个ScrolledComposite
窗口小部件(SWT),它应该显示日志文件的内容。不幸的是,日志文件中有数千行,所以我到达了小部件在~2200行之后切断文本的点。
我发现this post引用this report表示窗口中的窗口小部件存在高度限制,我的理论是我已达到该限制。
我的问题是如何处理这个问题。显示包含许多行的文本的解决方法是什么?
编辑:
我发现只有在StyledText
内使用ScrolledComposite
时才会发生这种情况。如果我使用普通StyledText
则没有问题。
这里是重现的代码:
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.ScrolledComposite;
import org.eclipse.swt.custom.StyledText;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class StyledTextLimit {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
ScrolledComposite scrollComp = new ScrolledComposite(shell,
SWT.H_SCROLL | SWT.V_SCROLL);
StyledText text = new StyledText(scrollComp, SWT.NONE);
text.setSize(100, 500);
scrollComp.setContent(text);
scrollComp.setExpandHorizontal(true);
scrollComp.setExpandVertical(true);
StringBuilder builder = new StringBuilder();
for (int i = 0; i < 5000; i++) {
builder.append(i);
builder.append(" ");
for (int j = 'a'; j < 'a' + 200; j++) {
builder.append((char) j);
}
builder.append("\n");
}
text.setText(builder.toString().trim());
scrollComp.setMinSize(text.computeSize(SWT.DEFAULT, SWT.DEFAULT));
// shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
答案 0 :(得分:0)
我认为不需要将StyledText
打包成ScrolledComposite
。 {} 1}在必要时自行显示滚动条。
我建议使用StyledText
而不使用StyledText
。
ScrolledComposite
当然也限制了它能够容纳的文本。但是,此限制应远高于2200行。如果StyledText
仍然溢出,那么您将不得不截断要显示的日志。
答案 1 :(得分:0)
虽然@RüdigerHerrmann帮助我解决了我的问题,但我仍然觉得我应该帮助那些可能遇到同样问题的人,而不必摆脱ScrolledComposite
。
因此,我想关联处理ScrolledComposite
问题的this post。