当用户将鼠标置于SWT文本框上时,我们尝试显示一个悬停框。用户可以从悬停框复制内容。这是必需的。
请提供一个实现示例的示例来帮助我。或者,请深入了解如何在编辑器中实现eclipse。
我们正在使用Eclipse Oxide IDE,并且所说明的功能适用于独立的Eclipse RCP应用程序
预先感谢!
答案 0 :(得分:3)
请通过此tutorial浏览SWT Text
上的悬停文本。
下面的代码是该教程的代码的修改版本
package test;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
public class Example {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
GridLayout gridLayout = new GridLayout(2, true);
shell.setLayout(gridLayout);
Label label1 = new Label(shell, SWT.NONE);
label1.setText("First Name");
Text text1 = new Text(shell, SWT.BORDER);
Label label2 = new Label(shell, SWT.NONE);
label2.setText("Last Name");
Text text2 = new Text(shell, SWT.BORDER);
shell.pack();
final HoverShell hShell = new HoverShell(shell);
text1.addListener(SWT.MouseHover, new Listener() {
@Override
public void handleEvent(Event event) {
hShell.text.setText("Enter First Name");
hShell.hoverShell.pack();
hShell.hoverShell.open();
}
});
text1.addListener(SWT.MouseExit, new Listener() {
@Override
public void handleEvent(Event event) {
hShell.hoverShell.setVisible(false);
}
});
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
class HoverShell {
Shell hoverShell;
Text text;
public HoverShell(Shell shell) {
hoverShell = new Shell(shell, SWT.ON_TOP | SWT.TOOL);
hoverShell.setLayout(new FillLayout());
text = new Text(hoverShell, SWT.NONE);
text.setBackground(hoverShell.getBackground());
text.setEditable(false);
}
}
输出
答案 1 :(得分:0)
我知道现在有点晚了,但是我有另一个解决方案。您可以使用内置函数setToolTipText和getToolTipText。要进行复制,我将插入一个按钮,该按钮使用Java剪贴板操作(如here之类的方法来调用getToolTipText函数。