如何获得相对和绝对光标位置?

时间:2013-08-21 11:44:12

标签: java cursor position swt

如何使用SWT获取光标的当前位置?

我需要:

  1. 绝对位置(仅相对于当前Display
  2. 位置相对到当前有效的Control

1 个答案:

答案 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);