| 120 | } |
| 121 | |
| 122 | void Clicker::leftRandomClick() |
| 123 | { |
| 124 | POINT mouse_pos; |
| 125 | |
| 126 | while (_run) { |
| 127 | GetCursorPos(&mouse_pos); |
| 128 | mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, mouse_pos.x, mouse_pos.y, 0, 0); |
| 129 | msleep(QRandomGenerator::global()->bounded(0, _max_random_interval)); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | void Clicker::rightRandomClick() |
| 134 | { |
nothing calls this directly
no outgoing calls
no test coverage detected