| 280 | } |
| 281 | |
| 282 | bool Win32ControlUnitMgr::click(int x, int y) |
| 283 | { |
| 284 | if (!mouse_) { |
| 285 | LogError << "mouse_ is null"; |
| 286 | return false; |
| 287 | } |
| 288 | |
| 289 | return mouse_->click(x, y); |
| 290 | } |
| 291 | |
| 292 | bool Win32ControlUnitMgr::swipe(int x1, int y1, int x2, int y2, int duration) |
| 293 | { |