如何使用SWT获取光标的当前位置?
我需要:
Display
)Control
答案 0 :(得分:4)
这使得光标位置相对于当前显示:
import org.eclipse.swt.widgets.Display;
[...]
Point cursorLocation = Display.getCurrent().getCursorLocation();
要获得相对于焦点控制的位置,您必须翻译它:
import org.eclipse.swt.widgets.Display;
[...]
Point cursorLocation = Display.getCurrent().getCursorLocation();
Point relativeCursorLocation = Display.getCurrent().getFocusControl().toControl(cursorLocation);