我想在Java SWT中为StyledText设置工具提示。这个想法是显示鼠标点击文本的信息。到目前为止,我只能在工具提示中显示文本,但我希望整个工具提示是一个图像,使用SWT中的绘图方法绘制,以显示信息中的某些结构。似乎Tooltip无法解决这个问题,所以有人可以建议我如何做到这一点,或者我可以用哪个小部件来实现它?
编辑:如何设置createToolTipContentArea
返回的合成的大小?
protected Composite createToolTipContentArea(Event event, Composite parent) {
Composite composite = new Composite(parent, SWT.NONE);
composite.addPaintListener(new SPPaintListener());
composite.setSize(680, 600);
return composite;
}
private class SPPaintListener implements PaintListener {
public void paintControl(PaintEvent e) {
drawLyrics(e);
e.gc.dispose();
}
}
private void drawLyrics(PaintEvent e) {
e.gc.setAntialias(SWT.ON);
Font font = new Font(e.display, "Purisa", 10, SWT.NORMAL);
Color color = new Color(e.display, 25, 25, 25);
e.gc.setForeground(color);
e.gc.setFont(font);
e.gc.drawText("em so transitory", 20, 30);
e.gc.drawText("em so transitory", 180, 30);
e.gc.drawText("Theermanent one", 20, 60);
e.gc.drawText("Theermanent one", 180, 60);
e.gc.drawLine(10, 30, 15, 30);
font.dispose();
}
如上所述,我需要在复合材料上画一些画作,但它们不会完全显示出来。
答案 0 :(得分:2)
您可以使用从org.eclipse.jface.window.ToolTip
派生的类在工具提示中绘制您喜欢的任何内容。
public class MyToolTip extends ToolTip
{
public MyToolTip(Control control)
{
super(control, NO_RECREATE, false);
}
@Override
protected Composite createToolTipContentArea(final Event event, final Composite parent)
{
// TODO add your controls here
}
}
使用:
new MyToolTip(control);
其中control
是应该有工具提示的控件。
我已经展示了最简单的形式,其中工具提示区域对于整个控件是相同的。您还可以覆盖getToolTipArea
方法,根据控件中的位置更改工具提示。
对于图像,createToolTopArea可能如下所示:
@Override
protected Composite createToolTipContentArea(final Event event, final Composite parent)
{
Composite body = new Composite(parent, SWT.NONE);
body.setLayout(new GridLayout());
Label label = new Label(body, SWT.LEAD);
Image image = ... your image
label.setImage(image);
return body;
}