| 117 | constexpr int32_t kDropdownItemUndefined = -1; |
| 118 | |
| 119 | void initMouse() |
| 120 | { |
| 121 | _pressedWindowType = Ui::WindowType::undefined; |
| 122 | |
| 123 | Ui::ToolTip::setNotShownTicks(0xFFFFU); |
| 124 | _hoverWindowType = Ui::WindowType::undefined; |
| 125 | _focusedWindowType = Ui::WindowType::undefined; |
| 126 | |
| 127 | _mousePosX = 0; |
| 128 | _mousePosY = 0; |
| 129 | |
| 130 | World::resetMapSelectionFlags(); |
| 131 | } |
| 132 | |
| 133 | void moveMouse(int32_t x, int32_t y, int32_t relX, int32_t relY) |
| 134 | { |
no test coverage detected