FocusedWindow returns the Window that has the keyboard input focus.
()
| 1946 | |
| 1947 | // FocusedWindow returns the Window that has the keyboard input focus. |
| 1948 | func FocusedWindow() Window { |
| 1949 | return windowFromHandle(win.GetFocus()) |
| 1950 | } |
| 1951 | |
| 1952 | // Focused returns whether the Window has the keyboard input focus. |
| 1953 | func (wb *WindowBase) Focused() bool { |
nothing calls this directly
no test coverage detected
searching dependent graphs…