| 131 | } |
| 132 | |
| 133 | void Clicker::rightRandomClick() |
| 134 | { |
| 135 | POINT mouse_pos; |
| 136 | |
| 137 | while (_run) { |
| 138 | GetCursorPos(&mouse_pos); |
| 139 | mouse_event(MOUSEEVENTF_RIGHTDOWN | MOUSEEVENTF_RIGHTUP, mouse_pos.x, mouse_pos.y, 0, 0); |
| 140 | msleep(QRandomGenerator::global()->bounded(0, _max_random_interval)); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | void Clicker::middleRandomClick() |
| 145 | { |
nothing calls this directly
no outgoing calls
no test coverage detected