如何使用 SWT获取光标的当前位置?
我需要:
- 绝对位置(仅相对于当前位置
Display
) - 相对于当前活动的位置
Control
这将获取相对于当前 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);