3

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

我需要:

  1. 绝对位置(仅相对于当前位置Display
  2. 对于当前活动的位置Control
4

1 回答 1

6

这将获取相对于当前 Display的光标位置:

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);
于 2013-08-21T11:44:12.127 回答