Set the window that accepts keyboard input
| 394 | |
| 395 | //! Set the window that accepts keyboard input |
| 396 | inline void SetFocus(const WindowPlacement &focus) |
| 397 | { |
| 398 | if (auto p = Get()) |
| 399 | p->DoSetFocus(focus); |
| 400 | } |
| 401 | |
| 402 | //! Whether using a right-to-left language layout |
| 403 | inline bool IsUsingRtlLayout() |
no test coverage detected